
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #D4AF37;
  --gold-light:  #F0D472;
  --gold-dim:    #9A7D20;
  --gold-faint:  rgba(212,175,55,0.08);
  --gold-border: rgba(212,175,55,0.22);
  --gold-glow:   rgba(212,175,55,0.35);
  --black:       #050505;
  --dark:        #0D0D0D;
  --dark2:       #111111;
  --dark3:       #181818;
  --dark4:       #1E1E1E;
  --white:       #FFFFFF;
  --gray:        #C8C8C8;
  --gray-dim:    #888888;
  --green-wa:    #25D366;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --shadow-gold: 0 0 40px rgba(212,175,55,0.18);
  --transition:  all 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}


::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::selection { background: var(--gold); color: var(--black); }


.container { max-width: 1220px; margin: 0 auto; padding: 0 5%; }
.section    { padding: 100px 0; position: relative; }
.text-gold  { color: var(--gold); }
.text-center{ text-align: center; }

.section-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray-dim);
  line-height: 1.9;
  max-width: 560px;
}

.gold-rule {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0 44px;
}

.gold-rule.centered { margin: 22px auto 44px; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 28px var(--gold-glow);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 48px rgba(212,175,55,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-faint);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 0 28px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: #20c45c;
  box-shadow: 0 0 48px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}


.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.72s ease, transform 0.72s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }
.d6 { transition-delay: 0.60s; }

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: #0a0a0a; /* Deep black to match the logo tones */
  border-bottom: 1px solid #c5a059; /* Optional gold accent line */
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 60px; /* Adjust height based on your navbar thickness */
  width: auto;
  margin-right: 15px;
  /* If you can't remove the background, 
     this subtle shadow helps it blend: */
  filter: drop-shadow(0px 0px 5px rgba(197, 160, 89, 0.2));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #c5a059; /* Use the gold from the logo */
  letter-spacing: 2px;
}

#navbar.scrolled {
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-border);
  padding: 10px 5%;
  box-shadow: 0 4px 50px rgba(0,0,0,0.7);
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: filter 0.3s ease; /* Smooth transition for the glow */
}

.nav-logo:hover img { 
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.6)); 
}

.nav-logo-text { 
    display: flex; 
    flex-direction: column; 
    line-height: 1.1; 
    margin-left: 12px; /* Space between shield and text */
}

.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
}

.nav-logo-sub {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  letter-spacing: 1.2px !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }


.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 290px;
  background: var(--dark2);
  border-left: 1px solid var(--gold-border);
  z-index: 99998;
  padding: 90px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--gold-border);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.mobile-drawer a:hover { color: var(--gold); }


#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 5% 90px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 68% 48%, rgba(212,175,55,0.07) 0%, transparent 65%),
    url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=1900&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(5,5,5,0.97) 0%,
    rgba(5,5,5,0.86) 46%,
    rgba(5,5,5,0.50) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}


.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.32);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.75)} }


.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.8vw, 70px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-h1 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.8vw, 20px);
  font-style: italic;
  color: var(--gray);
  border-left: 2.5px solid var(--gold);
  padding-left: 18px;
  margin: 18px 0 24px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 15px;
  color: var(--gray-dim);
  line-height: 1.95;
  margin-bottom: 38px;
  max-width: 490px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }


.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.t-badge {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; color: var(--gray-dim);
}
.t-badge-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(212,175,55,0.11);
  border: 1px solid rgba(212,175,55,0.26);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* --- Hero Logo: Positioned High & Bouncing --- */

/* 1. Position the container higher up */
#hero .nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Aligns to the top */
  margin: 0 auto;             /* Removes the 40px top margin */
  padding-top: 20px;          /* Fine-tune how high it sits */
  text-decoration: none;
  z-index: 10;
}

/* 2. Increased Size & Faster Bounce Animation */
#hero .nav-logo img {
  height: 320px; /* Even bigger impact */
  width: auto;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
  
  /* Bouncing effect: 2 seconds makes it more energetic */
  animation: heroBounce 2s ease-in-out infinite;
  transition: all 0.4s ease;
}

/* 3. The Bouncing Keyframes */
@keyframes heroBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    /* Larger travel distance for a clearer "bounce" */
    transform: translateY(-35px); 
  }
}

/* 4. Hover State: Extra Glow */
#hero .nav-logo:hover img {
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.9));
  transform: scale(1.05); /* Slight pop on hover */
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-logo-ring {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring::before {
  content: '';
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.16);
  animation: spin 22s linear infinite;
}
.hero-logo-ring::after {
  content: '';
  position: absolute; inset: -50px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.07);
  animation: spin 32s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }


.hero-logo-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 72%);
  pointer-events: none;
}

.hero-logo-img {
  width: 270px;
  height: auto;
  object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 36px rgba(212,175,55,0.32));
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }


.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  gap: 1px;
  overflow: hidden;
}
.h-stat {
  background: rgba(11,11,11,0.92);
  padding: 22px 14px;
  text-align: center;
}
.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.h-stat-lbl {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gray-dim);
}


#ticker {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--gray-dim); white-space: nowrap;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }


#why { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.why-card {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-7px); border-color: rgba(212,175,55,0.45); box-shadow: var(--shadow-gold); }
.why-card:hover::after { opacity: 1; }


.why-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.75) saturate(0.6);
  transition: filter 0.4s;
}
.why-card:hover .why-img { filter: brightness(0.88) saturate(0.8); }


.why-img-wrap {
  position: relative;
  overflow: hidden;
}
.why-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(0deg, var(--dark2), transparent);
}

.why-body { padding: 26px 24px 28px; }

.why-icon-box {
  width: 46px; height: 46px;
  background: var(--gold-faint);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon-box { background: rgba(212,175,55,0.16); border-color: rgba(212,175,55,0.5); }

.why-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17.5px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.why-body p { font-size: 13.5px; color: var(--gray-dim); line-height: 1.85; }

/* Wide last card (Lahore) spans full row */
.why-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.why-card-wide .why-img { height: 100%; min-height: 220px; }
.why-card-wide .why-body { display: flex; flex-direction: column; justify-content: center; padding: 40px; }


#counters {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.c-item {
  padding: 52px 20px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
  transition: background 0.3s;
}
.c-item:last-child { border-right: none; }
.c-item:hover { background: rgba(212,175,55,0.04); }
.c-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px;
}
.c-lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray-dim);
}

/* ════════════════════════════════
   SERVICES — WHAT WE OFFER
════════════════════════════════ */
#services { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 58px;
}
.services-header-right { text-align: right; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Service card */
.svc-card {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-7px); border-color: rgba(212,175,55,0.44); box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 0 40px rgba(212,175,55,0.07); }
.svc-card:hover::before { transform: scaleX(1); }

/* Card image */
.svc-img-wrap { position: relative; flex-shrink: 0; }
.svc-img {
  width: 100%; height: 185px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.5);
  transition: filter 0.45s;
}
.svc-card:hover .svc-img { filter: brightness(0.82) saturate(0.72); }
.svc-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--dark3) 0%, rgba(0,0,0,0.1) 55%);
}

/* Number badge */
.svc-num {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  width: 34px; height: 34px;
  background: rgba(5,5,5,0.82);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gold);
}

.svc-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }

.svc-icon { font-size: 26px; margin-bottom: 14px; }

.svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.svc-body p { font-size: 13.5px; color: var(--gray-dim); line-height: 1.85; margin-bottom: 18px; flex: 1; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-tag {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.16);
  padding: 3px 11px; border-radius: 50px;
}

/* ════════════════════════════════
   PROCESS
════════════════════════════════ */
#process {
  background: var(--black);
}

.process-inner { text-align: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.p-connector {
  position: absolute;
  top: 37px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), rgba(212,175,55,0.08));
  pointer-events: none;
}

.p-step { text-align: center; padding: 0 18px; }

.p-num-ring {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.p-num {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--gold);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.p-num::before {
  content: '';
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.22);
}
.p-step:hover .p-num { background: rgba(212,175,55,0.12); box-shadow: 0 0 38px rgba(212,175,55,0.25); }

.p-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.p-step p { font-size: 13.5px; color: var(--gray-dim); line-height: 1.85; }

/* ════════════════════════════════
   INDUSTRIES / CLIENTS
════════════════════════════════ */
#clients { background: var(--dark2); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.cl-card {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px 18px;
  text-align: center;
  transition: var(--transition);
}
.cl-card:hover { border-color: rgba(212,175,55,0.42); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.cl-icon { font-size: 34px; display: block; margin-bottom: 14px; }
.cl-card h4 { font-size: 13px; font-weight: 600; color: var(--white); }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
#testimonials { background: var(--dark); overflow: hidden; }

.testi-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 18px; margin-bottom: 0; }

.testi-controls { display: flex; gap: 12px; }
.t-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  cursor: pointer; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.t-btn:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); }

.testi-viewport { overflow: hidden; margin-top: 52px; }
.testi-track { display: flex; gap: 24px; transition: transform 0.52s ease; }

.t-card {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-width: 350px; flex: 0 0 350px;
  transition: border-color 0.3s;
}
.t-card.active { border-color: rgba(212,175,55,0.52); }

.t-q { font-family: 'Playfair Display', serif; font-size: 64px; color: var(--gold); opacity: 0.28; line-height: 0.6; margin-bottom: 20px; }
.t-text { font-size: 14px; color: var(--gray); line-height: 1.95; margin-bottom: 22px; font-style: italic; }
.t-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.32);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold);
}
.t-name { font-size: 13px; font-weight: 600; color: var(--white); }
.t-role { font-size: 11px; color: var(--gray-dim); margin-top: 2px; }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
#faq { background: var(--black); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 60px;
  align-items: start;
}

.faq-item { border-bottom: 1px solid var(--gold-border); padding-bottom: 22px; margin-bottom: 22px; }
.faq-q { display: flex; justify-content: space-between; gap: 16px; cursor: pointer; padding: 4px 0; }
.faq-q-text { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.5; }
.faq-toggle {
  width: 23px; height: 23px; min-width: 23px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gold);
  transition: var(--transition); margin-top: 2px;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-ans { font-size: 13.5px; color: var(--gray-dim); line-height: 1.95; max-height: 0; overflow: hidden; transition: max-height 0.42s ease, padding 0.3s; }
.faq-item.open .faq-ans { max-height: 220px; padding-top: 16px; }

.faq-sidebar {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: sticky; top: 100px;
  text-align: center;
}
.faq-sidebar h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin: 16px 0 10px; }
.faq-sidebar p { font-size: 13.5px; color: var(--gray-dim); line-height: 1.85; margin-bottom: 30px; }
.faq-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.faq-contact-info { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--gold-border); font-size: 12px; color: var(--gray-dim); line-height: 1.8; }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
#cta-band { padding: 0; }
.cta-inner {
  background:
    linear-gradient(130deg, rgba(212,175,55,0.09) 0%, rgba(0,0,0,0.82) 60%),
    url('https://images.unsplash.com/photo-1453728013993-6d66e9c9123a?auto=format&fit=crop&w=1700&q=80') center/cover no-repeat;
  padding: 110px 5%;
  position: relative; overflow: hidden;
}
.cta-inner::before { content: ''; position: absolute; inset: 0; background: rgba(5,5,5,0.84); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px,4vw,52px); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-content p { font-size: 16px; color: var(--gray-dim); margin-bottom: 42px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
#contact { background: var(--dark2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 66px;
  margin-top: 60px;
}

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.contact-info > p { font-size: 14px; color: var(--gray-dim); line-height: 1.95; margin-bottom: 38px; }

.c-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.c-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold-faint);
  border: 1px solid rgba(212,175,55,0.22);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.c-label { font-size: 9.5px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.c-val { font-size: 14px; color: var(--gray); }
.c-val a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.c-val a:hover { color: var(--gold); }

.confidentiality-box {
  margin-top: 34px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.16);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.confidentiality-box strong { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.confidentiality-box p { font-size: 13px; color: var(--gray-dim); line-height: 1.85; }

/* Form */
.contact-form-box {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-form-box h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.contact-form-box > p { font-size: 13.5px; color: var(--gray-dim); margin-bottom: 32px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-group { margin-bottom: 22px; }
.f-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-dim); margin-bottom: 8px; }
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 14px;
  outline: none; appearance: none;
  transition: border-color 0.3s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: rgba(212,175,55,0.55); }
.f-group textarea { resize: vertical; min-height: 108px; }
.f-group select option { background: var(--dark2); }

.f-check { display: flex; align-items: flex-start; gap: 11px; font-size: 12.5px; color: var(--gray-dim); margin-bottom: 26px; cursor: pointer; line-height: 1.6; }
.f-check input { width: auto; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 80px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 64px;
}

.footer-brand p { font-size: 13px; color: var(--gray-dim); line-height: 1.95; margin: 20px 0 26px; max-width: 310px; }


/* Footer logo */
.footer-logo-img { height: 20px; width: 20px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(212,175,55,0.2)); }

.socials { display: flex; gap: 11px; }
.s-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gold-faint);  
  border: 1px solid rgba(212,175,55,0.17);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--gray-dim);
  text-decoration: none; transition: var(--transition);
}
.s-btn:hover { background: rgba(212,175,55,0.16); border-color: var(--gold); color: var(--gold); }

.f-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14.5px; font-weight: 600; color: var(--white);
  margin-bottom: 20px; padding-bottom: 13px;
  border-bottom: 1px solid var(--gold-border);
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a {
  font-size: 13px; color: var(--gray-dim); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.f-col ul li a::before { content: '›'; color: var(--gold); font-size: 17px; }
.f-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 12px; color: var(--gray-dim); }

.footer-disclaimer {
  text-align: center;
  font-size: 11px; font-style: italic;
  color: rgba(136,136,136,0.5);
  margin-top: 14px;
}

/* ════════════════════════════════
   FLOATING: WhatsApp + Back-top
════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9998;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-tip {
  background: var(--dark2); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 8px 15px;
  font-size: 12px; font-weight: 500; color: var(--white);
  white-space: nowrap; opacity: 0; transform: translateX(10px);
  transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-wa);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(37,211,102,0.42);
  transition: var(--transition); position: relative;
}
.wa-btn::before {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  background: rgba(37,211,102,0.18);
  animation: waPulse 2.6s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.28);opacity:0} }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 48px rgba(37,211,102,0.62); }
.wa-btn svg { width: 29px; height: 29px; fill: #fff; position: relative; z-index: 1; }

#back-top {
  position: fixed; bottom: 28px; left: 28px;
  z-index: 9997;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.32);
  color: var(--gold); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { background: rgba(212,175,55,0.26); }

/* ════════════════════════════════
   POPUP
════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--dark2);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  max-width: 490px; width: 100%;
  position: relative;
  transform: scale(0.88) translateY(22px);
  transition: transform 0.4s;
}
.popup-overlay.show .popup-box { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--dark3); border: 1px solid var(--gold-border);
  color: var(--gray-dim); cursor: pointer; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.popup-close:hover { color: var(--gold); border-color: var(--gold); }
.popup-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.popup-box h3 { font-family: 'Playfair Display', serif; font-size: 27px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.popup-box p { font-size: 13.5px; color: var(--gray-dim); line-height: 1.88; margin-bottom: 30px; }
.popup-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.popup-note { font-size: 11px; color: var(--gray-dim); text-align: center; margin-top: 16px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-right      { display: none; }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-card-wide   { grid-column: span 2; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; }
  .services-header-right { text-align: left; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .faq-layout      { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .p-connector     { display: none; }
  .clients-grid    { grid-template-columns: repeat(3, 1fr); }
  .counters-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .mobile-drawer { display: block; }
  .section     { padding: 68px 0; }
  .why-grid    { grid-template-columns: 1fr; }
  .why-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .why-card-wide .why-img { height: 200px; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .f-row         { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  .hero-stats    { grid-template-columns: repeat(3, 1fr); }
  .t-card        { min-width: 288px; flex: 0 0 288px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
