/* ===================================================
   JEAN CONSTRUCTION — Brand Color System (Logo-matched)
   Palette:
     #cadbe3  — Ice Blue (light accent / highlights)
     #3f4d5d  — Deep Slate (primary brand / dark accent)
     #8fa6b9  — Steel Blue (secondary / mid-tone)
     #b1b1b1  — Silver Grey (muted text / borders)
     #040404  — Near Black (backgrounds / type)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Brand palette */
  --ice:        #cadbe3;
  --clr-gold:       #c9a84c;
  --clr-gold-dim:   rgba(201,168,76,0.12);
  --slate:      #3f4d5d;
  --steel:      #8fa6b9;
  --silver:     #b1b1b1;
  --near-black: #040404;

  /* Semantic tokens */
  --clr-bg:         #07080a;          /* nearly #040404 but just a touch lighter */
  --clr-surface:    #0f1318;          /* deep dark surface */
  --clr-surface-2:  #161d24;          /* card surface */
  --clr-surface-3:  #1d2733;          /* elevated card */

  /* Accent = ice blue #cadbe3 for CTAs / highlights */
  --clr-accent:       #cadbe3;
  --clr-accent-hover: #b0ccd8;
  --clr-accent-dim:   rgba(202,219,227,0.12);
  --clr-accent-glow:  rgba(202,219,227,0.18);

  /* Brand blue = #3f4d5d for dark fills */
  --clr-brand:        #3f4d5d;
  --clr-brand-light:  #4e617a;

  /* Mid = #8fa6b9 for labels, section tags */
  --clr-mid:   #8fa6b9;

  /* Text */
  --clr-text:        #e8eef2;
  --clr-text-muted:  #8fa6b9;   /* matches --steel */
  --clr-text-dim:    #6a7f90;

  /* Borders */
  --clr-border:    rgba(143,166,185,0.18);
  --clr-border-hv: rgba(202,219,227,0.35);

  /* Nav */
  --nav-h: 88px;

  /* Shape */
  --radius:    16px;
  --radius-sm:  8px;

  /* Shadows */
  --shadow-accent: 0 0 40px rgba(202,219,227,0.10);
  --shadow-card:   0 4px 28px rgba(4,4,4,0.5);

  /* Transition */
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.65;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-brand); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-mid); }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(7,8,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 32px rgba(4,4,4,0.6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 68px;
  width: 68px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 1px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ice);
}
.nav-logo-text .brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);      /* #b1b1b1 */
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-gold);    /* #cadbe3 */
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--clr-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 2rem;
  padding: 0.55rem 1.4rem;
  background: transparent;
  border: 1px solid var(--clr-accent);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--clr-accent);
  color: var(--near-black);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--silver);
  border-radius: 99px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ice); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ice); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,8,10,0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem clamp(1.5rem,5vw,4rem) 2rem;
  border-bottom: 1px solid var(--clr-border);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.nav-mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(143,166,185,0.08);
  color: var(--silver);
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--clr-gold); padding-left: 10px; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #07080a 0%, #0d1318 40%, #111c24 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(63,77,93,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(202,219,227,0.04) 0%, transparent 60%);
}

/* Particle dots */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 9s infinite;
}
@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(100vh) translateX(0); }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-20px) translateX(20px); }
}

.hero-img-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.5) contrast(1.05);
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--clr-bg) 0%, rgba(7,8,10,0.5) 50%, transparent 100%);
  z-index: 1;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--clr-bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 2.5rem) clamp(1.5rem, 8vw, 8rem) 5rem;
  max-width: 700px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);        /* #8fa6b9 */
  border: 1px solid rgba(143,166,185,0.3);
  border-radius: 99px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.75rem;
  animation: fade-up 0.8s ease both;
}
.hero-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--clr-gold);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s 0.1s ease both;
  color: #e8eef2;
}
.hero-title span {
  color: var(--clr-gold);          /* #cadbe3 */
  font-style: italic;
}
.hero-desc {
  font-size: clamp(0.93rem, 1.8vw, 1.06rem);
  color: var(--silver);       /* #b1b1b1 */
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s 0.2s ease both;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fade-up 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fade-up 0.8s 0.4s ease both;
}
.hero-stat .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--clr-gold);          /* #cadbe3 */
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Stat divider line */
.hero-stats .hero-stat:not(:last-child) {
  padding-right: 3rem;
  border-right: 1px solid rgba(143,166,185,0.15);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2.1rem;
  background: var(--clr-accent);       /* #cadbe3 */
  color: var(--near-black);            /* #040404 */
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { background: var(--clr-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(202,219,227,0.25); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2.1rem;
  background: transparent;
  color: var(--silver);               /* #b1b1b1 */
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(177,177,177,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(202,219,227,0.08);
}

/* ===================================================
   SECTION UTILITIES
   =================================================== */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
}
.section-alt { background: var(--clr-surface); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);        /* #8fa6b9 */
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--steel);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #e8eef2;
}
.section-title span {
  color: var(--clr-gold);          /* #cadbe3 */
  font-style: italic;
}
.section-desc {
  font-size: 1rem;
  color: var(--silver);       /* #b1b1b1 */
  max-width: 580px;
  line-height: 1.8;
}
.section-header { margin-bottom: 3.5rem; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }

/* ===================================================
   DIVIDER
   =================================================== */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: 1.5rem 0;
}
.gold-divider.center {
  margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

/* ===================================================
   GRIDS
   =================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }

/* ===================================================
   SERVICE CARD
   =================================================== */
.service-card {
  position: relative;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--clr-gold);      /* #cadbe3 accent bar */
  transition: height 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63,77,93,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hv);
  box-shadow: var(--shadow-card), 0 0 30px rgba(202,219,227,0.06);
}
.service-card:hover::before { height: 100%; }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(63,77,93,0.3);     /* brand slate fill */
  border: 1px solid rgba(143,166,185,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(202,219,227,0.12);
  border-color: rgba(202,219,227,0.3);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #e8eef2;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.75;
}

/* ===================================================
   GALLERY GRID
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
  filter: saturate(0.75) brightness(0.9);
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1) brightness(1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,4,4,0.82) 0%, rgba(63,77,93,0.15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-gold);           /* #cadbe3 */
  text-transform: uppercase;
}

/* ===================================================
   FEATURE ROW
   =================================================== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.feature-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(143,166,185,0.15);
  border-radius: inherit;
  pointer-events: none;
}

.feature-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--slate);      /* #3f4d5d */
  color: var(--clr-gold);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(202,219,227,0.2);
}
.feature-badge .big { font-size: 2rem; font-weight: 900; line-height: 1; color: var(--clr-gold); }
.feature-badge .small { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; color: var(--silver); }

.check-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--silver);
}
.check-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\f00c';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(202,219,227,0.1);
  border: 1px solid rgba(202,219,227,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--clr-gold);
  font-weight: 700;
  margin-top: 2px;
}

/* ===================================================
   TEAM CARD
   =================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.team-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(202,219,227,0.3);
  box-shadow: var(--shadow-card);
}
.team-avatar {
  width: 80px; height: 80px;
  background: rgba(63,77,93,0.4);
  border: 2px solid rgba(143,166,185,0.25);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; color: #e8eef2; }
.team-card .role { font-size: 0.75rem; color: var(--clr-gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-card .phone { font-size: 0.9rem; color: var(--silver); }

/* ===================================================
   VALUE CARD (About page)
   =================================================== */
.value-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.85rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(202,219,227,0.3); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: #e8eef2; }
.value-card p { font-size: 0.86rem; color: var(--silver); line-height: 1.7; }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0c1218 0%, #131e28 50%, #0a0d10 100%);
  border: 1px solid rgba(63,77,93,0.6);
  border-radius: var(--radius);
  padding: 4.5rem clamp(2rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(63,77,93,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(202,219,227,0.04) 0%, transparent 60%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0.4;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.contact-info-item:hover { border-color: rgba(202,219,227,0.3); box-shadow: var(--shadow-card); }
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(63,77,93,0.35);
  border: 1px solid rgba(143,166,185,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);           /* #cadbe3 */
  margin-bottom: 0.35rem;
}
.contact-info-item p,
.contact-info-item a { font-size: 0.88rem; color: var(--silver); line-height: 1.65; transition: color 0.3s; }
.contact-info-item a:hover { color: var(--clr-gold); }
.contact-info-item a,
.contact-info-item p {
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-form {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);         /* #8fa6b9 */
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--clr-surface);
  border: 1px solid rgba(143,166,185,0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-text-dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(202,219,227,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--clr-surface-2); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 260px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(0.85) hue-rotate(180deg) saturate(0.6); }

/* ===================================================
   PROCESS STEPS
   =================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(63,77,93,0.25);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  background: var(--clr-surface-2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step:hover { background: rgba(63,77,93,0.2); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--clr-gold);           /* #cadbe3 */
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: #e8eef2; }
.process-step p { font-size: 0.83rem; color: var(--silver); line-height: 1.65; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 8vw, 8rem) 5rem;
  background: linear-gradient(135deg, #07080a 0%, #0d1520 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(7,8,10,0.88) 0%, rgba(13,21,32,0.75) 50%, rgba(7,8,10,0.65) 100%),
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(63,77,93,0.25) 0%, transparent 65%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(0deg, var(--clr-bg) 0%, transparent 100%);
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--silver);
  margin-bottom: 1.5rem;
  position: relative;
}
.breadcrumb a { color: var(--steel); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb span { opacity: 0.4; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid rgba(63,77,93,0.35);
  padding: 4.5rem clamp(1.5rem, 8vw, 8rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-brand .logo-wrap img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.footer-brand p {
  font-size: 0.87rem;
  color: var(--silver);
  line-height: 1.8;
  max-width: 290px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);           /* #cadbe3 */
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--silver);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--clr-gold); }
.footer-bottom {
  border-top: 1px solid rgba(143,166,185,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--clr-text-dim); }

.social-links { display: flex; gap: 0.65rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(143,166,185,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--silver);
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(202,219,227,0.06);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,4,4,0.93);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(4,4,4,0.9);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(177,177,177,0.25);
  border-radius: 50%;
  background: rgba(63,77,93,0.4);
  color: var(--silver);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: var(--near-black); }

/* ===================================================
   WHATSAPP FLOAT
   =================================================== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ===================================================
   SUCCESS MESSAGE
   =================================================== */
.success-msg {
  display: none;
  background: rgba(202,219,227,0.08);
  border: 1px solid rgba(202,219,227,0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--clr-gold);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.success-msg.show { display: block; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 220px; }
  .feature-row { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-cta { display: none; }

  /* ---- Global overflow fix ---- */
  .section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* ---- Contact page ---- */
  .contact-hero-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .contact-info-item { flex-wrap: nowrap; gap: 0.85rem; }
  .contact-info-item h4 { font-size: 0.68rem; }
  .contact-form { padding: 1.5rem; }
  .map-wrap { height: 200px; }

  /* ---- Cards ---- */
  .grid-3 { grid-template-columns: 1fr; }
  .service-card, .value-card { padding: 1.5rem; }

  /* ---- Feature row ---- */
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .feature-img-wrap { aspect-ratio: 16/9; }
  .feature-badge { bottom: -10px; right: -5px; padding: 0.85rem 1rem; }
  .feature-badge .big { font-size: 1.5rem; }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 2.5rem 1.25rem; }

  /* ---- Section titles ---- */
  .section-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .nav-burger { display: flex; }

  /* ---- Logo: mobile ---- */
  .nav-logo img {
    height: 44px;
    width: 44px;
    border-radius: 8px;
    padding: 4px;
  }
  .nav-logo { gap: 10px; }
  .nav-logo-text .brand-name { font-size: 1rem; }
  .nav-logo-text .brand-sub { font-size: 0.55rem; letter-spacing: 0.22em; }

  /* ---- Footer logo: mobile ---- */
  .footer-brand .logo-wrap img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
  }

  .hero-img-wrap { width: 100%; opacity: 0.12; }
  .hero-img-wrap::before { background: linear-gradient(180deg, var(--clr-bg) 0%, transparent 40%, var(--clr-bg) 100%); }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
    margin-top: 2.5rem;
  }
  .hero-stats .hero-stat:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
  .hero-stat .label { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-content { padding-top: calc(var(--nav-h) + 1.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}