/* ============================================================
   NOVA V8 - STYLES OPTIMISÉS
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --color-bg: #0A0A0F;
  --color-bg-alt: #0F0F1A;
  --color-bg-footer: #06060B;
  --color-text: #F5F0EB;
  --color-text-muted: rgba(245, 240, 235, 0.7);
  --color-text-light: rgba(255, 255, 255, 0.5);
  --color-primary: #FF2D78;
  --color-secondary: #7B2FBE;
  --color-accent: #00F0FF;
  --gradient-primary: linear-gradient(135deg, #FF2D78, #7B2FBE);
  --gradient-gold: linear-gradient(135deg, #FF2D78, #7B2FBE, #00F0FF);
  --radius: 0.5rem;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
}

/* ---- RESET & BASE ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

section { width: 100%; }

::selection {
  background: var(--color-primary);
  color: #fff;
}

/* ---- TYPOGRAPHIE ---- */
h1, h2, h3 { font-weight: 600; }

h1 {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  line-height: 0.95;
  margin-top: 135px;
}

h2 { font-size: 45px;}

p { color: var(--color-text-muted); }

.gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ---- UTILITAIRES ---- */
.container { width: 60%; margin: auto; }

.section-team-circles .container {
  width: 60%;
  margin-left: 10%;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 1.8rem auto;
  border-radius: 4px;
}

.divider-left {
  width: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 1.8rem 0;
  border-radius: 4px;
}

.label {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2{
  margin-bottom: -15px;
}
/* ---- BOUTONS ---- */
.btn-gold {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.9rem 2.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 30px rgba(255, 45, 120, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 45, 120, 0.5);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: var(--transition);
}

.btn-gold-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.btn-reserve {
  background: var(--gradient-primary);
  border: none;
  padding: 0.5rem 1.8rem;
  border-radius: 50px;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
  transition: var(--transition);
}

.btn-reserve:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 45, 120, 0.5);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.7rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.brand::after { content: '·'; color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--color-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-top: 0.5rem;
  gap: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: rgba(255, 45, 120, 0.08);
  color: var(--color-primary);
}

/* ---- HERO SPLIT SCREEN ---- */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.99), rgba(0, 0, 0, 0.7)), url("../img/index.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 200px;
}

.hero-split-left {
  flex: 1;
  padding: 0 4rem;
  z-index: 2;
}

.hero-split-right {
  flex: 1;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(var(--color-primary), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(var(--color-secondary), transparent);
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}
.shape-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(var(--color-accent), transparent);
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}
.shape-4 {
  width: 80px;
  height: 80px;
  background: radial-gradient(var(--color-primary), transparent);
  bottom: 30%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.badge {
  margin-bottom: 35px;
  display: inline-block;
  border: 1px solid rgba(255, 45, 120, 0.3);
  padding: 0.3rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(255, 45, 120, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ---- STATS DIAGONALES ---- */
.section-stats-diagonal {
  padding: 3rem 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.section-stats-diagonal::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.03), rgba(123, 47, 190, 0.03));
  transform: rotate(15deg);
}

.stats-diagonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:first-child { border-left: none; }

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

/* ---- SERVICES ---- */
.section-services-grid {
  background: var(--color-bg);
  padding: 5rem 0;
}

.services-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-col {
  background: rgba(255, 255, 255, 0.02);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 45, 120, 0.15);
}

.service-col-icon {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.service-col h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.service-col-subtitle {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.service-col p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
}

.service-col-details {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1rem 0 0.8rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.detail-item i {
  margin-right: 0.3rem;
  color: var(--color-primary);
  width: 1rem;
}

.service-col-features {
  list-style: none;
  margin: 0.8rem 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.service-col-features li {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-col-relation {
  font-size: 0.85rem;
  color: var(--color-accent);
  background: rgba(0, 240, 255, 0.06);
  padding: 0.2rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0, 240, 255, 0.06);
}

.service-col-relation i {
  margin-right: 0.4rem;
  color: var(--color-accent);
}

.service-col-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 0.5rem auto 0;
  border-radius: 2px;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.service-col:hover .service-col-line { opacity: 1; }

/* ---- WORKS MASONRY ---- */
.section-works-masonry {
  background: var(--color-bg-alt);
  padding: 5rem 0;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.masonry-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  min-height: 220px;
}

.masonry-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 120, 0.15);
  box-shadow: var(--shadow-hover);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-tall {
  grid-row: span 2;
  min-height: 420px;
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, 0.75) 20%,  rgba(10, 10, 15, 0.75) 40%, rgba(10, 10, 15, 0.75) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.work-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}

.masonry-overlay h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 0.2rem;
}

.work-description {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0.3rem 0;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.work-tags span {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.section-works-masonry .btn-gold-outline {
  margin: 50px auto;
  display: block;
  width: 30%;
  text-align: center;
}

/* ---- FILTRES ---- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filters button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
}

.filters button:hover {
  border-color: rgba(255, 45, 120, 0.3);
  color: #fff;
}

.filters button.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
}

/* ---- TÉMOIGNAGES ---- */
.section-testimonials-scroll {
  background: var(--color-bg);
  padding: 5rem;
  overflow: hidden;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  padding: 2rem 4rem;
}

.scroll-track {
  display: flex;
  gap: 2rem;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.scroll-track:hover { animation-play-state: paused; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-scroll {
  min-width: 350px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.02);
  padding: 5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-scroll:hover {
  border-color: rgba(255, 45, 120, 0.10);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.05rem;
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* ---- CTA FULL ---- */
.section-cta-full {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.cta-bg-animated {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 45, 120, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(123, 47, 190, 0.08) 0%, transparent 50%);
  animation: pulseBg 8s ease-in-out infinite;
}

@keyframes pulseBg {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.section-cta-full .container {
  position: relative;
  z-index: 1;
}

.section-cta-full p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---- TEAM CERCLES ---- */
.section-team-circles {
  background: var(--color-bg-alt);
  padding: 5rem 0;
}

.team-circles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  width: 100%;
}

.team-circle {
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 5rem 4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.circle-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 45, 120, 0.15);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 40px !important;
}

.circle-avatar:hover {
  border-color: var(--color-primary);
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.circle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.circle-avatar:hover .circle-overlay { opacity: 1; }

.circle-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.circle-overlay p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.team-circle h3 {
  font-size: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.222);
  width: 100%;
}

/* ---- CONTACT ---- */
.section-contact-split {
  background: var(--color-bg);
  padding: 5rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form,
.contact-infos {
  background: rgba(255, 255, 255, 0.02);
  padding: 2.8rem 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.contact-infos {
  border: none;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
}

.contact-infos h2 { margin-bottom: 0.75rem; }

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  padding: 20px 5px;
  border-bottom: 1px #ffffff2d solid ;
  width: 100%;
}

.info-item i {
  font-size: 1.4rem;
  color: var(--color-primary);
  width: 0.2rem;
  display: none;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.info-item p { color: var(--color-text-light); }

.form-group {
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 45, 120, 0.06);
}

/* ---- PAGE HERO ---- */
.page-hero {
  height: 55vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 0px;
}

.page-hero p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 45px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
}

/* ---- PAGE ARTICLE ---- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-meta .category {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-hero .subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

.article-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 0;
}

.article-section {
  margin-bottom: 3rem;
}

.article-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.article-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  text-align: center;
}

.stat-block .stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-block .stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

.findings-list {
  list-style: none;
  padding: 0;
}

.findings-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.findings-list li::before {
  content: '▹';
  color: var(--color-primary);
  margin-right: 0.8rem;
}

.testimonial-block {
  background: rgba(255, 45, 120, 0.04);
  border-left: 4px solid var(--color-primary);
  border-radius: 0;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
}

.testimonial-block p {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.testimonial-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.tech-tags span {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-tags i {
  color: var(--color-primary);
  margin-right: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: rgba(255, 45, 120, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.article-nav {
  margin-top: 4rem;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.article-nav a{
  display: block;
  text-align: center;
  width: 90%;
}

.article-nav .btn-gold-outline{
  border-color: #ffffff82;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-bg-footer);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-brand {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand::after { content: '·'; color: var(--color-primary); }

.footer-meta { color: rgba(255, 255, 255, 0.2); font-size: 0.9rem; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin: 1.5rem 0;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.4rem;
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--color-primary); }

.footer-copy {
  color: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}

/* ---- ANIMATION ---- */
.view-animate {
  animation: fadeSlide 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-split-left {
    padding: 2rem 3rem;
  }

  .hero-split-right {
    padding: 0 2rem;
  }

  .divider-left {
    margin: 1.8rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .services-columns-2,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-team-circles .container {
  width: 100%;
  margin-left: 0%;
  }

  .team-circles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-diagonal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    padding: 0 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-split {
    padding: 100px 0;
  }

  .btn-gold,.btn-outline,.btn-reserve{
    width: 100%;
    text-align: center;
    display: block;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .masonry-tall,
  .masonry-wide {
    grid-row: span 1;
    min-height: auto;
  }

  .team-circles-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-infos {
    padding: 1.8rem;
  }

  .section-testimonials-scroll{
    padding: 5rem 0;
  }

  .stats-highlight {
    grid-template-columns: 1fr!important;
  }

  .stats-diagonal-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-block {
    display: block;
    width: 100%;
  }
  .hero-visual {
    height: 300px;
  }

  .testimonial-scroll {
    min-width: 280px;
  }

  .container {
    padding: 0 1rem;
    width: 100%;
  }

  .hero-split-left {
    padding: 0 1.5rem;
  }

  .hero-split-right {
    padding: 0 1rem;
  }

  .scroll-container {
    padding: 1rem;
  }

  .article-content {
    padding: 2rem 1rem;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav a{
    width: 95%;
    margin: 20px auto 0;
  }

  .stats-highlight {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-block .stat-number {
    font-size: 2rem;
  }

  .testimonial-block {
    padding: 1.5rem;
  }

  .testimonial-block p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .article-meta {
    gap: 0.8rem;
    font-size: 0.75rem;
  }

  .section-works-masonry .btn-gold-outline {
    width: 60%;
  }
}