/* ===========================================================
   Shivanya Talent Connect Private Limited — Stylesheet
   Palette: Navy Blue / Royal Blue + Gold, on clean white
   =========================================================== */

:root{
  --navy-950:#050c1f;
  --navy-900:#0a1f44;
  --navy-800:#0f2c5c;
  --navy-700:#153a75;
  --royal-600:#1c4fa0;
  --royal-500:#2563c9;
  --gold-600:#a9812f;
  --gold-500:#c9a24b;
  --gold-400:#e0bd6e;
  --gold-100:#f7ecd4;
  --white:#ffffff;
  --off-white:#f7f9fc;
  --gray-100:#eef1f6;
  --gray-200:#dfe4ec;
  --gray-400:#9aa5b6;
  --gray-600:#5b6779;
  --gray-800:#2b3546;
  --ink:#0d1526;

  --shadow-sm: 0 2px 8px rgba(10,31,68,0.06);
  --shadow-md: 0 8px 24px rgba(10,31,68,0.10);
  --shadow-lg: 0 20px 48px rgba(10,31,68,0.16);
  --shadow-gold: 0 10px 30px rgba(201,162,75,0.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1240px;
  --nav-h: 84px;

  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height:1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--ff-heading); color: var(--navy-900); margin:0 0 .5em; font-weight:700; line-height:1.2; }
p{ margin:0 0 1em; }
.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }
.section-pad{ padding: 96px 0; }
@media (max-width:768px){ .section-pad{ padding:64px 0; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold-600); font-weight:700; margin-bottom:14px;
}
.eyebrow::before{ content:''; width:28px; height:2px; background: var(--gold-500); display:inline-block; }
.section-head{ max-width:760px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-head p{ color: var(--gray-600); font-size:1.05rem; }
.section-head.left{ margin-left:0; text-align:left; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px; border-radius: 999px; font-weight:700; font-size:.95rem;
  border:2px solid transparent; transition: all .28s var(--ease); white-space:nowrap;
}
.btn-gold{ background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); box-shadow: var(--shadow-gold); }
.btn-gold:hover{ transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201,162,75,0.38); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,0.5); color:#fff; }
.btn-outline:hover{ background: rgba(255,255,255,0.12); border-color:#fff; transform: translateY(-3px); }
.btn-navy{ background: var(--navy-900); color:#fff; }
.btn-navy:hover{ background: var(--navy-800); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-navy-outline{ background:transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn-navy-outline:hover{ background: var(--navy-900); color:#fff; transform: translateY(-3px); }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; }

/* Reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }
.reveal-delay-4{ transition-delay:.32s; }

/* ---------- Top bar ---------- */
.topbar{
  background: var(--navy-950); color: var(--gray-200); font-size:.82rem;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding:8px 24px; flex-wrap:wrap; gap:6px; }
.topbar-item{ display:inline-flex; align-items:center; gap:6px; margin-right:18px; }
.topbar a{ color: var(--gray-200); transition:color .2s; }
.topbar a:hover{ color: var(--gold-400); }
.topbar-item svg{ width:14px; height:14px; color: var(--gold-500); flex-shrink:0; }
@media (max-width:640px){ .topbar-right{ display:none; } }

/* ---------- Navbar ---------- */
.navbar{
  position: sticky; top:0; z-index:1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--gray-200);
  transition: box-shadow .3s ease;
}
.navbar.scrolled{ box-shadow: var(--shadow-md); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; min-height: var(--nav-h); gap:14px; padding:10px 0; }
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo{ height:58px; width:auto; flex-shrink:0; display:block; }
.footer-brand .brand-logo{ height:74px; padding:6px 10px; background:#fff; border-radius:12px; }

.nav-links{ display:flex; align-items:center; gap:0; flex-shrink:1; }
.nav-links a{
  padding:9px 11px; font-size:.86rem; font-weight:600; color: var(--gray-800);
  border-radius:8px; transition: color .2s, background .2s; position:relative; white-space:nowrap;
}
.nav-links a:hover{ color: var(--navy-900); background: var(--gray-100); }
.nav-cta{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-cta .btn{ padding:11px 18px; font-size:.82rem; white-space:nowrap; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; }
.nav-toggle span{ width:26px; height:2.5px; background: var(--navy-900); border-radius:2px; transition: all .3s ease; }
.nav-toggle.active span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1360px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-navy-outline{ display:none; }
  .mobile-panel{
    position:fixed; inset: var(--nav-h) 0 0 0; background:#fff; z-index:999;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y:auto; padding:24px;
  }
  .mobile-panel.open{ transform:none; }
  .mobile-panel a{ display:block; padding:16px 8px; font-size:1.1rem; font-weight:600; color:var(--navy-900); border-bottom:1px solid var(--gray-100); }
  .mobile-panel .btn{ margin-top:20px; }
}
@media (min-width: 1361px){ .mobile-panel{ display:none; } }
@media (max-width: 480px){
  .nav-cta .btn-gold{ display:none; }
  .topbar-item span, .topbar .topbar-item:last-child{ font-size:.72rem; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 90% 70% at 85% 15%, rgba(37,99,201,0.35), transparent 55%),
    radial-gradient(ellipse 70% 60% at 10% 100%, rgba(201,162,75,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 55%, #030814 100%);
  color:#fff; padding: 100px 0 76px;
}
.hero-glow{ position:absolute; border-radius:50%; filter: blur(80px); pointer-events:none; z-index:0; }
.hero-glow-1{ width:520px; height:520px; background: radial-gradient(circle, rgba(37,99,201,0.35), transparent 70%); top:-180px; right:-120px; }
.hero-glow-2{ width:420px; height:420px; background: radial-gradient(circle, rgba(201,162,75,0.2), transparent 70%); bottom:-160px; left:-100px; }
.hero-grid{ display:grid; grid-template-columns: 48fr 52fr; gap:60px; align-items:center; position:relative; z-index:2; }

.hero-eyebrow{ color: var(--gold-400); }
.hero-eyebrow::before{ background: var(--gold-400); }
.hero h1{ color:#fff; font-size: clamp(2.1rem, 3.6vw, 3.1rem); margin-bottom:.32em; letter-spacing:-.01em; }
.hero h1 em{ font-style:normal; color: var(--gold-400); }
.hero-subhead{ color: rgba(255,255,255,0.92); font-weight:600; font-size:1.12rem; margin-bottom:16px; font-family: var(--ff-heading); }
.hero-sub{ color: rgba(255,255,255,0.72); font-size:1.02rem; max-width:520px; margin-bottom:30px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:22px; }

.hero-trustline{ display:flex; flex-wrap:wrap; gap:10px 24px; margin-bottom:38px; }
.hero-trustline li{ display:flex; align-items:center; gap:8px; font-size:.86rem; color: rgba(255,255,255,0.78); }
.hero-trustline svg{ width:16px; height:16px; color: var(--gold-400); flex-shrink:0; }

.hero-stats{ display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.stat-card{
  background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md); padding:16px 10px; text-align:center; backdrop-filter: blur(6px);
}
.stat-card .num{ font-family:var(--ff-heading); font-size:1.55rem; font-weight:700; color: var(--gold-400); display:block; }
.stat-card .lbl{ font-size:.72rem; color: rgba(255,255,255,0.78); margin-top:4px; line-height:1.3; }
.stat-card--icon .ic{ width:30px; height:30px; margin:0 auto; border-radius:50%; background: rgba(201,162,75,0.16); display:flex; align-items:center; justify-content:center; }
.stat-card--icon .ic svg{ width:15px; height:15px; color: var(--gold-400); }
.stat-card--icon .lbl{ margin-top:8px; }

.hero-visual{ position:relative; display:flex; flex-direction:column; align-items:center; gap:18px; }
.hero-visual .frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; width:100%;
  aspect-ratio: 16/10; padding:3px;
  background: linear-gradient(155deg, var(--gold-400), rgba(201,162,75,0.12) 30%, rgba(37,99,201,0.35) 70%, var(--gold-500));
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-visual .frame video{
  width:100%; height:100%; object-fit:cover; background:#050c1f; border-radius: calc(var(--radius-lg) - 3px); display:block;
  filter: saturate(1.1) contrast(1.05) brightness(0.96);
}
.frame-dark-overlay{
  position:absolute; inset:3px; border-radius: calc(var(--radius-lg) - 3px); pointer-events:none;
  background: linear-gradient(180deg, rgba(5,12,31,0.55) 0%, rgba(5,12,31,0.08) 32%, rgba(5,12,31,0.05) 60%, rgba(5,12,31,0.6) 100%);
}
.frame-shine{
  position:absolute; inset:3px; border-radius: calc(var(--radius-lg) - 3px); pointer-events:none;
  background: linear-gradient(200deg, rgba(255,255,255,0.12) 0%, transparent 28%);
  mix-blend-mode: screen;
}
.frame-caption{
  position:absolute; top:22px; left:26px; z-index:2; display:flex; flex-direction:column; gap:2px;
  color:#fff; font-family: var(--ff-heading); font-weight:700; font-size:1rem; letter-spacing:.06em; line-height:1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.frame-caption span:first-child::after{ content:''; display:block; width:36px; height:2px; background: var(--gold-400); margin-top:8px; }

.float-card{
  position:absolute; z-index:3; display:flex; align-items:center; gap:10px;
  background: rgba(255,255,255,0.97); color: var(--navy-900); border:1px solid rgba(201,162,75,0.5);
  border-radius: 999px; padding:10px 16px 10px 10px; box-shadow: 0 14px 30px rgba(5,12,31,0.28);
  font-size:.8rem; font-weight:700; white-space:nowrap; backdrop-filter: blur(6px);
}
.float-card .ic{ width:28px; height:28px; border-radius:50%; background: var(--gold-100); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.float-card .ic svg{ width:14px; height:14px; color: var(--gold-600); }
.float-card-1{ top:-16px; left:24px; }
.float-card-2{ bottom:-16px; right:24px; }

.hero-badge{
  background: rgba(255,255,255,0.97); color:var(--navy-900); align-self:flex-start;
  border-radius: var(--radius-md); padding:14px 18px; box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:12px; max-width:100%; backdrop-filter: blur(6px);
}
.hero-badge .ic{ width:40px; height:40px; border-radius:12px; background: var(--gold-100); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-badge .ic svg{ width:20px; height:20px; color: var(--gold-600); }
.hero-badge b{ display:block; font-size:.92rem; color:var(--navy-900); }
.hero-badge span{ font-size:.75rem; color: var(--gray-600); }

.gold-label-center{
  display:flex; align-items:center; gap:14px; color: var(--gold-400); font-size:.78rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; margin-top:4px;
}
.gold-label-center::before, .gold-label-center::after{ content:''; width:32px; height:1px; background: rgba(201,162,75,0.5); }

@media (max-width: 600px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:460px; margin:0 auto 12px; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .float-card{ font-size:.72rem; padding:8px 14px 8px 8px; }
  .float-card-1{ left:12px; }
  .float-card-2{ right:12px; }
}

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap:64px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width:100%; aspect-ratio:4/5; object-fit:cover; }
.about-media .years-badge{
  position:absolute; bottom:-24px; right:-24px; background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); border-radius: var(--radius-md); padding:20px 24px; text-align:center; box-shadow: var(--shadow-gold);
}
.about-media .years-badge .n{ font-family:var(--ff-heading); font-size:2.1rem; font-weight:800; line-height:1; display:block; }
.about-media .years-badge .t{ font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; font-weight:700; }
.about-copy p{ color: var(--gray-600); }
.commitment-card{
  margin-top:28px; background: var(--off-white); border:1px solid var(--gray-200); border-radius: var(--radius-md);
  padding:26px 28px;
}
.commitment-card h4{ margin-bottom:16px; font-size:1.15rem; }
.commitment-list{ display:grid; grid-template-columns: 1fr 1fr; gap:12px 20px; }
.commitment-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.94rem; color: var(--gray-800); }
.commitment-list svg{ width:19px; height:19px; color: var(--gold-600); flex-shrink:0; margin-top:2px; }
@media (max-width:900px){ .about-grid{ grid-template-columns:1fr; } .about-media{ max-width:420px; margin:0 auto; } .commitment-list{ grid-template-columns:1fr; } }

/* ---------- Mission / Vision ---------- */
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.mv-card{
  border-radius: var(--radius-lg); padding:42px 36px; color:#fff; position:relative; overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.mv-card.mission{ background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.mv-card.vision{ background: linear-gradient(135deg, var(--royal-600), var(--navy-900)); }
.mv-card .ic{ width:58px; height:58px; border-radius:16px; background: rgba(201,162,75,0.18); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.mv-card .ic svg{ width:28px; height:28px; color: var(--gold-400); }
.mv-card h3{ color:#fff; font-size:1.5rem; }
.mv-card p{ color: rgba(255,255,255,0.82); margin:0; }
@media (max-width:800px){ .mv-grid{ grid-template-columns:1fr; } }

/* ---------- Countries ---------- */
.countries-section{ background: var(--off-white); }
.country-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.country-card{
  background:#fff; border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm);
  border:1px solid var(--gray-200); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position:relative;
}
.country-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.country-card .img-wrap{ height:170px; overflow:hidden; position:relative; }
.country-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.country-card:hover .img-wrap img{ transform: scale(1.08); }
.country-card .img-wrap::after{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(10,31,68,0.55)); }
.country-card .flag{ position:absolute; bottom:12px; left:14px; font-size:1.8rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); z-index:2; }
.country-card .body{ padding:16px 18px 20px; display:flex; align-items:center; justify-content:space-between; }
.country-card h4{ margin:0; font-size:1.05rem; }
.country-card .arrow{ width:34px; height:34px; border-radius:50%; background: var(--gold-100); display:flex; align-items:center; justify-content:center; transition: background .3s; flex-shrink:0; }
.country-card .arrow svg{ width:16px; height:16px; color: var(--gold-600); }
.country-card:hover .arrow{ background: var(--gold-500); }
.country-card:hover .arrow svg{ color:#fff; }
@media (max-width:900px){ .country-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .country-grid{ grid-template-columns: 1fr; } }

/* ---------- Industries ---------- */
.industry-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:20px; }
.industry-card{
  background:#fff; border:1px solid var(--gray-200); border-radius: var(--radius-md); padding:28px 22px;
  text-align:center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.industry-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.industry-card .ic{
  width:58px; height:58px; margin:0 auto 16px; border-radius:16px; background: var(--navy-900);
  display:flex; align-items:center; justify-content:center; transition: background .3s;
}
.industry-card:hover .ic{ background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); }
.industry-card .ic svg{ width:26px; height:26px; color: var(--gold-400); transition: color .3s; }
.industry-card:hover .ic svg{ color: var(--navy-950); }
.industry-card h4{ font-size:1rem; margin-bottom:6px; }
.industry-card p{ font-size:.85rem; color: var(--gray-600); margin:0; }
@media (max-width:1080px){ .industry-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:640px){ .industry-grid{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Services ---------- */
.services-section{ background: var(--off-white); }
.services-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.service-card{
  background:#fff; border-radius: var(--radius-md); padding:32px 28px; box-shadow: var(--shadow-sm);
  border-top:3px solid var(--gold-500); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .ic{ width:52px; height:52px; border-radius:14px; background: var(--gold-100); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.service-card .ic svg{ width:26px; height:26px; color: var(--navy-800); }
.service-card h4{ font-size:1.1rem; }
.service-card p{ color: var(--gray-600); font-size:.94rem; margin:0; }
@media (max-width:980px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .services-grid{ grid-template-columns: 1fr; } }

/* ---------- Counselling ---------- */
.counsel-section{
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color:#fff; border-radius: var(--radius-lg); margin:0 24px; overflow:hidden;
}
.counsel-inner{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:center; padding:60px; }
.counsel-copy h2{ color:#fff; }
.counsel-copy .lead{ color: var(--gold-400); font-size:1.15rem; font-weight:600; }
.counsel-copy p{ color: rgba(255,255,255,0.78); }
.counsel-list{ display:grid; grid-template-columns: 1fr 1fr; gap:12px 20px; margin:24px 0 30px; }
.counsel-list li{ display:flex; gap:10px; align-items:center; font-size:.93rem; color:#fff; }
.counsel-list svg{ width:16px; height:16px; color: var(--gold-400); flex-shrink:0; }
.counsel-media img{ border-radius: var(--radius-md); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit:cover; width:100%; }
@media (max-width:900px){ .counsel-inner{ grid-template-columns:1fr; padding:40px 28px; } .counsel-media{ order:-1; } .counsel-list{ grid-template-columns:1fr; } }
@media (max-width:640px){ .counsel-section{ margin:0; border-radius:0; } }

/* ---------- Process Timeline ---------- */
.process-section{ overflow:hidden; }
.timeline{ display:grid; grid-template-columns: repeat(9,1fr); gap:14px; position:relative; }
.timeline::before{ content:''; position:absolute; top:26px; left:0; right:0; height:2px; background: var(--gray-200); z-index:0; }
.tl-step{ position:relative; z-index:1; text-align:center; }
.tl-step .dot{
  width:54px; height:54px; border-radius:50%; margin:0 auto 16px; background:#fff; border:2px solid var(--gold-500);
  display:flex; align-items:center; justify-content:center; font-family:var(--ff-heading); font-weight:800; color: var(--navy-900);
  box-shadow: var(--shadow-sm); transition: background .3s, color .3s;
}
.tl-step:hover .dot{ background: var(--gold-500); color:#fff; }
.tl-step h4{ font-size:.86rem; margin-bottom:4px; }
.tl-step p{ font-size:.76rem; color: var(--gray-600); margin:0; }

@media (max-width:1080px){
  .timeline{ grid-template-columns: 1fr; gap:0; }
  .timeline::before{ display:none; }
  .tl-step{ display:flex; align-items:flex-start; gap:18px; text-align:left; padding:0 0 34px 0; position:relative; }
  .tl-step::before{ content:''; position:absolute; left:26px; top:54px; bottom:0; width:2px; background: var(--gray-200); }
  .tl-step:last-child::before{ display:none; }
  .tl-step .dot{ margin:0; flex-shrink:0; }
}

/* ---------- No advance payment ---------- */
.trust-banner{
  background: linear-gradient(135deg, var(--gold-100), #fff 60%);
  border:1px solid var(--gold-400); border-radius: var(--radius-lg);
  padding:52px; display:grid; grid-template-columns: auto 1fr auto; gap:36px; align-items:center;
  box-shadow: var(--shadow-lg);
}
.trust-icon{
  width:96px; height:96px; border-radius:50%; background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow: var(--shadow-md);
}
.trust-icon svg{ width:46px; height:46px; color: var(--gold-400); }
.trust-copy h2{ margin-bottom:6px; }
.trust-copy .sub{ color: var(--gold-600); font-weight:700; font-size:1.1rem; margin-bottom:14px; display:block; }
.trust-copy p{ color: var(--gray-600); margin-bottom:0; max-width:640px; }
.trust-badge{
  background: var(--navy-950); color: var(--gold-400); font-weight:800; font-size:.85rem; letter-spacing:.03em;
  padding:16px 22px; border-radius: var(--radius-md); text-align:center; white-space:nowrap; box-shadow: var(--shadow-lg);
  border:1px solid rgba(201,162,75,0.4);
}
@media (max-width:900px){ .trust-banner{ grid-template-columns:1fr; text-align:center; padding:36px 26px; } .trust-icon{ margin:0 auto; } }

/* ---------- Why choose us ---------- */
.why-section{ background: var(--navy-950); color:#fff; }
.why-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:18px 32px; margin-top:10px; }
.why-item{ display:flex; gap:16px; align-items:flex-start; padding:18px; border-radius: var(--radius-md); transition: background .3s; }
.why-item:hover{ background: rgba(255,255,255,0.05); }
.why-item .ic{ width:44px; height:44px; border-radius:12px; background: rgba(201,162,75,0.16); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.why-item .ic svg{ width:22px; height:22px; color: var(--gold-400); }
.why-item h4{ color:#fff; font-size:1rem; margin-bottom:4px; }
.why-item p{ color: rgba(255,255,255,0.68); font-size:.86rem; margin:0; }
.why-section .section-head h2{ color:#fff; }
.why-section .section-head p{ color: rgba(255,255,255,0.68); }
@media (max-width:760px){ .why-grid{ grid-template-columns:1fr; } }

/* ---------- Promise ---------- */
.promise-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-bottom:44px; }
.promise-card{ flex: 1 1 210px; max-width:250px; text-align:center; padding:30px 18px; border-radius: var(--radius-md); background: var(--off-white); transition: transform .3s var(--ease); }
.promise-card:hover{ transform: translateY(-6px); }
.promise-card .ic{ width:56px; height:56px; margin:0 auto 14px; border-radius:50%; background:#fff; box-shadow: var(--shadow-sm); display:flex; align-items:center; justify-content:center; }
.promise-card .ic svg{ width:24px; height:24px; color: var(--gold-600); }
.promise-card h4{ font-size:.95rem; margin:0; }
.promise-highlight{
  text-align:center; background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); color:#fff;
  border-radius: var(--radius-lg); padding:44px; box-shadow: var(--shadow-lg);
}
.promise-highlight h3{ color: var(--gold-400); font-size:1.6rem; margin:0; }
@media (max-width:900px){ .promise-card{ flex-basis: 42%; } }
@media (max-width:560px){ .promise-card{ flex-basis: 100%; max-width:320px; } }

/* ---------- Testimonials ---------- */
.testimonial-section{ background: var(--off-white); }
.testi-wrap{ max-width:800px; margin:0 auto; position:relative; }
.testi-track{ overflow:hidden; }
.testi-slides{ display:flex; transition: transform .5s var(--ease); }
.testi-slide{ min-width:100%; padding:8px; }
.testi-card{
  background:#fff; border-radius: var(--radius-lg); padding:48px; text-align:center; box-shadow: var(--shadow-md);
  border:1px solid var(--gray-200);
}
.testi-card .quote-ic{ width:44px; height:44px; margin:0 auto 20px; color: var(--gold-500); }
.testi-card p{ font-size:1.2rem; color: var(--navy-900); font-family: var(--ff-heading); font-style:italic; margin-bottom:0; }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:28px; }
.testi-dots button{ width:10px; height:10px; border-radius:50%; background: var(--gray-200); border:none; padding:0; transition: background .3s, transform .3s; }
.testi-dots button.active{ background: var(--gold-500); transform: scale(1.3); }
.testi-arrow{
  position:absolute; top:50%; transform: translateY(-50%); width:46px; height:46px; border-radius:50%;
  background:#fff; border:1px solid var(--gray-200); box-shadow: var(--shadow-sm); display:flex; align-items:center; justify-content:center;
  transition: background .3s, color .3s;
}
.testi-arrow:hover{ background: var(--navy-900); color:#fff; }
.testi-arrow.prev{ left:-58px; } .testi-arrow.next{ right:-58px; }
.testi-arrow svg{ width:18px; height:18px; }
@media (max-width:880px){ .testi-arrow{ display:none; } .testi-card{ padding:34px 24px; } }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--royal-600) 100%);
  color:#fff; text-align:center; padding:90px 0; position:relative; overflow:hidden;
}
.cta-banner::before{
  content:''; position:absolute; width:600px; height:600px; border-radius:50%; background: rgba(201,162,75,0.12);
  top:-300px; right:-200px;
}
.cta-banner h2{ color:#fff; font-size: clamp(2rem, 4vw, 2.8rem); position:relative; }
.cta-banner p{ color: rgba(255,255,255,0.8); font-size:1.1rem; max-width:600px; margin:0 auto 34px; position:relative; }
.cta-actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; position:relative; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.15fr; gap:48px; align-items:start; }
.contact-info-card{ background: var(--navy-950); color:#fff; border-radius: var(--radius-lg); padding:40px 34px; }
.contact-info-card h3{ color:#fff; }
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contact-line .ic{ width:42px; height:42px; border-radius:12px; background: rgba(201,162,75,0.16); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-line .ic svg{ width:20px; height:20px; color: var(--gold-400); }
.contact-line b{ display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; color: var(--gold-400); margin-bottom:3px; }
.contact-line a, .contact-line span{ color: rgba(255,255,255,0.88); font-size:.94rem; }
.contact-quick{ display:flex; gap:10px; margin-top:26px; flex-wrap:wrap; }
.icon-btn{
  display:flex; align-items:center; gap:8px; padding:11px 16px; border-radius:999px; font-size:.84rem; font-weight:700;
  background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18); color:#fff; transition: background .3s;
}
.icon-btn:hover{ background: rgba(255,255,255,0.18); }
.icon-btn svg{ width:16px; height:16px; }
.icon-btn.whatsapp{ background:#25d366; border-color:#25d366; color:#06280f; }
.icon-btn.whatsapp:hover{ filter:brightness(1.08); }
.hours-box{ margin-top:26px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.14); }
.hours-box h4{ color: var(--gold-400); font-size:.9rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:12px; }
.hours-row{ display:flex; justify-content:space-between; font-size:.88rem; color: rgba(255,255,255,0.82); margin-bottom:6px; }

.contact-form-card{ background:#fff; border:1px solid var(--gray-200); border-radius: var(--radius-lg); padding:38px; box-shadow: var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.84rem; font-weight:700; color: var(--navy-900); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:10px; border:1.5px solid var(--gray-200); font-family:inherit; font-size:.95rem;
  color: var(--ink); background: var(--off-white); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,162,75,0.15); background:#fff; }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:.8rem; color: var(--gray-600); margin-top:12px; text-align:center; }
.form-success{ display:none; text-align:center; padding:40px 10px; }
.form-success.show{ display:block; }
.form-success .ic{ width:70px; height:70px; border-radius:50%; background: var(--gold-100); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.form-success .ic svg{ width:34px; height:34px; color: var(--gold-600); }

.map-wrap{ margin-top:28px; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); border:1px solid var(--gray-200); }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; }

@media (max-width:980px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ---------- Footer ---------- */
.footer{ background: var(--navy-950); color: rgba(255,255,255,0.7); padding:70px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand .brand{ margin-bottom:14px; }
.footer-brand .brand-text .name{ color:#fff; }
.footer-tag{ color: var(--gold-400); font-style:italic; font-family: var(--ff-heading); margin-bottom:16px; }
.footer p{ color: rgba(255,255,255,0.6); font-size:.9rem; }
.footer h5{ color:#fff; font-size:.9rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:20px; }
.footer ul li{ margin-bottom:12px; }
.footer ul a{ color: rgba(255,255,255,0.65); font-size:.92rem; transition: color .2s, padding-left .2s; }
.footer ul a:hover{ color: var(--gold-400); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:.9rem; margin-bottom:14px; }
.footer-contact svg{ width:17px; height:17px; color: var(--gold-500); flex-shrink:0; margin-top:2px; }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; transition: background .3s; }
.social-row a:hover{ background: var(--gold-500); }
.social-row svg{ width:17px; height:17px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; flex-wrap:wrap; gap:12px; font-size:.84rem; }
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom .legal-links a{ color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-bottom .legal-links a:hover{ color: var(--gold-400); }
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } .footer-bottom{ flex-direction:column; text-align:center; } }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed; bottom:26px; right:26px; width:50px; height:50px; border-radius:50%;
  background: var(--navy-900); color: var(--gold-400); display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); border:none; opacity:0; pointer-events:none; transition: opacity .3s, transform .3s; z-index:900;
}
.back-to-top.show{ opacity:1; pointer-events:auto; }
.back-to-top:hover{ transform: translateY(-4px); }
.back-to-top svg{ width:20px; height:20px; }

/* Divider accent */
.gold-divider{ width:64px; height:3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); border-radius:3px; margin: 0 auto 22px; }
.section-head.left .gold-divider{ margin-left:0; }
