/* =========================================================
   VANTAGE & RAO ASSOCIATES — LAW FIRM DEMO
   Developed by OMPREM INFOTECH PVT. LTD.
   ========================================================= */

:root{
  --navy-950:#0a1220;
  --navy-900:#0d1a2b;
  --navy-800:#122238;
  --navy-700:#1a3049;
  --navy-600:#274763;

  --off-white:#faf7f1;
  --white:#ffffff;
  --paper:#f3efe6;

  --gold-500:#c9a45c;
  --gold-400:#dcbd7e;
  --gold-600:#a8823f;
  --gold-300:#ecdcb4;

  --ink:#1a2230;
  --ink-soft:#4c5566;
  --ink-faint:#8a92a3;

  --border-soft: rgba(20,30,45,0.08);
  --border-gold: rgba(201,164,92,0.35);

  --shadow-sm: 0 2px 10px rgba(10,18,32,0.06);
  --shadow-md: 0 12px 32px rgba(10,18,32,0.10);
  --shadow-lg: 0 24px 60px rgba(10,18,32,0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --topbar-h: 38px;
  --nav-h: 78px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--off-white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy-900);
  line-height:1.15;
  margin:0 0 0.5em;
  font-weight:600;
}

h1{ font-size:clamp(2.4rem, 5vw, 4rem); font-weight:600; letter-spacing:-0.01em; }
h2{ font-size:clamp(1.9rem, 3.4vw, 2.75rem); }
h3{ font-size:1.35rem; }

p{ margin:0 0 1em; color:var(--ink-soft); }

.text-gold{ color:var(--gold-500); font-style:italic; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--gold-600);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:28px; height:1px;
  background:var(--gold-500);
  display:inline-block;
}
.section-head.light .eyebrow{ color:var(--gold-400); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 30px;
  border-radius:2px;
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.03em;
  border:1px solid transparent;
  transition:all 0.3s ease;
  white-space:nowrap;
}
.btn-sm{ padding:11px 20px; font-size:0.82rem; }
.btn-block{ width:100%; }

.btn-gold{
  background:linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color:var(--navy-950);
  box-shadow:0 8px 20px rgba(201,164,92,0.35);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(201,164,92,0.45); }

.btn-navy{
  background:var(--navy-900);
  color:var(--off-white);
}
.btn-navy:hover{ background:var(--navy-700); transform:translateY(-2px); }

.btn-outline-light{
  border-color:rgba(250,247,241,0.5);
  color:var(--off-white);
  background:transparent;
}
.btn-outline-light:hover{ background:rgba(250,247,241,0.12); border-color:var(--off-white); }

.btn-outline-navy{
  border-color:var(--navy-700);
  color:var(--navy-900);
  background:transparent;
}
.btn-outline-navy:hover{ background:var(--navy-900); color:var(--off-white); }

.btn-whatsapp{
  background:#25D366;
  color:#08240f;
}
.btn-whatsapp:hover{ background:#1fbd5a; transform:translateY(-2px); }

/* ============ TOPBAR ============ */
.topbar{
  background:var(--navy-950);
  color:rgba(250,247,241,0.75);
  font-size:0.8rem;
  height:var(--topbar-h);
}
.topbar-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.topbar-left{ display:flex; gap:22px; }
.topbar a{ color:inherit; transition:color 0.2s; }
.topbar a:hover{ color:var(--gold-400); }
.topbar .icon{ margin-right:5px; color:var(--gold-400); }
.topbar-right{ display:flex; align-items:center; }
.topbar-right .icon{ margin-right:6px; color:var(--gold-400); }

@media (max-width:720px){
  .topbar-left a:nth-child(2){ display:none; }
  .topbar-right{ display:none; }
}

/* ============ NAVBAR ============ */
.navbar{
  position:sticky;
  top:0;
  z-index:900;
  background:rgba(10,18,32,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,164,92,0.15);
  transition:box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled{ box-shadow:0 8px 24px rgba(0,0,0,0.25); }

.navbar-inner{
  height:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--gold-500);
  border-radius:50%;
  font-family:var(--font-display);
  color:var(--gold-400);
  font-weight:600;
  font-size:0.95rem;
  flex-shrink:0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-text strong{
  font-family:var(--font-display);
  color:var(--off-white);
  font-size:1.15rem;
  font-weight:600;
}
.brand-text small{ color:var(--gold-400); font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase; }

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  margin:0 auto;
}
.nav-link{
  position:relative;
  color:rgba(250,247,241,0.82);
  font-size:0.9rem;
  font-weight:500;
  padding:8px 0;
  transition:color 0.25s;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--gold-500);
  transition:width 0.3s ease;
}
.nav-link:hover, .nav-link.active{ color:var(--gold-400); }
.nav-link:hover::after, .nav-link.active::after{ width:100%; }

.navbar-cta{ flex-shrink:0; }

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px; height:38px;
  background:transparent;
  border:1px solid rgba(201,164,92,0.4);
  border-radius:6px;
  padding:0;
}
.hamburger span{
  display:block;
  width:18px; height:2px;
  margin:0 auto;
  background:var(--gold-400);
  transition:all 0.3s ease;
}
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:1000px){
  .nav-links{
    position:fixed;
    top:calc(var(--nav-h) + var(--topbar-h));
    left:0; right:0;
    background:var(--navy-950);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px 24px 24px;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    border-bottom:1px solid rgba(201,164,92,0.15);
  }
  .nav-links.open{ max-height:520px; }
  .nav-link{ width:100%; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.06); }
  .nav-link::after{ display:none; }
  .navbar-cta{ display:none; }
  .hamburger{ display:flex; }
}

/* ============ PRELOADER ============ */
#preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--navy-950);
  display:flex; align-items:center; justify-content:center;
  transition:opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide{ opacity:0; visibility:hidden; }
.preloader-mark{
  width:64px; height:64px;
  border:1.5px solid var(--gold-500);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  animation:pulseRing 1.4s ease-in-out infinite;
}
.preloader-scale{ font-size:1.7rem; color:var(--gold-400); }
@keyframes pulseRing{
  0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(201,164,92,0.35); }
  50%{ transform:scale(1.06); box-shadow:0 0 0 14px rgba(201,164,92,0); }
}

/* ============ SCROLL REVEAL ============ */
[data-aos]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
[data-aos].aos-in{ opacity:1; transform:translateY(0); }

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  color:var(--off-white);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 25%; }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(8,14,26,0.94) 20%, rgba(8,14,26,0.72) 55%, rgba(8,14,26,0.55) 100%);
}
.hero-content{ position:relative; z-index:1; padding-top:60px; padding-bottom:60px; }
.hero .eyebrow{ color:var(--gold-400); }
.hero .eyebrow::before{ background:var(--gold-400); }
.hero h1{ color:var(--off-white); max-width:820px; }
.hero-sub{ max-width:620px; color:rgba(250,247,241,0.82); font-size:1.08rem; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin:30px 0 50px; }

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,auto);
  gap:40px;
  padding-top:30px;
  border-top:1px solid rgba(250,247,241,0.18);
  max-width:720px;
}
.stat strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.8rem;
  color:var(--gold-400);
}
.stat span{ font-size:0.78rem; color:rgba(250,247,241,0.7); text-transform:uppercase; letter-spacing:0.06em; }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  z-index:1;
  width:26px; height:42px;
  border:1.5px solid rgba(250,247,241,0.5);
  border-radius:16px;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; border-radius:2px;
  background:var(--gold-400);
  animation:scrollDown 1.8s infinite;
}
@keyframes scrollDown{
  0%{ top:8px; opacity:1; }
  70%{ top:22px; opacity:0; }
  100%{ top:22px; opacity:0; }
}

@media (max-width:720px){
  .hero{ min-height:auto; padding-top:60px; padding-bottom:20px; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); gap:24px 20px; }
  .hero-actions .btn{ width:100%; }
  .hero-actions{ flex-direction:column; }
}

/* ============ SECTIONS ============ */
.section{ padding:100px 0; }
.section-tint{ background:var(--paper); }
.section-navy{
  background:linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color:var(--off-white);
}
.section-navy h2, .section-navy h3{ color:var(--off-white); }
.section-navy p{ color:rgba(250,247,241,0.75); }

.section-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
.section-head h2{ margin-bottom:14px; }
.section-desc{ font-size:1.02rem; }

@media (max-width:720px){
  .section{ padding:64px 0; }
  .section-head{ margin-bottom:36px; }
}

/* ============ ABOUT ============ */
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:70px;
  align-items:center;
}
.about-media{ position:relative; }
.about-media img{
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.about-media-badge{
  position:absolute;
  bottom:-24px; right:-24px;
  background:var(--navy-950);
  color:var(--off-white);
  border:1px solid var(--gold-500);
  border-radius:var(--radius-md);
  padding:20px 24px;
  text-align:center;
  box-shadow:var(--shadow-md);
}
.about-media-badge strong{ display:block; font-family:var(--font-display); color:var(--gold-400); font-size:1.7rem; }
.about-media-badge span{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.05em; color:rgba(250,247,241,0.75); }

.about-points{ margin:26px 0; display:flex; flex-direction:column; gap:18px; }
.about-points li{ display:flex; gap:16px; align-items:flex-start; }
.point-icon{
  flex-shrink:0;
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper);
  border:1px solid var(--border-gold);
  border-radius:50%;
  color:var(--gold-600);
}
.about-points strong{ display:block; color:var(--navy-900); font-family:var(--font-display); font-size:1.02rem; margin-bottom:2px; }
.about-points p{ margin:0; font-size:0.92rem; }

@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; gap:60px 0; }
  .about-media{ max-width:420px; margin:0 auto 40px; }
  .about-media-badge{ right:12px; bottom:-20px; }
}

/* ============ SERVICE CARDS ============ */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-md);
  padding:34px 26px;
  transition:transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity:0; transform:translateY(20px);
}
.service-card.aos-in{ opacity:1; transform:translateY(0); }
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:var(--border-gold);
}
.service-icon{
  width:56px; height:56px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color:var(--gold-400);
  font-size:1.5rem;
  margin-bottom:20px;
  transition:transform 0.3s ease;
}
.service-card:hover .service-icon{ transform:rotate(-6deg) scale(1.05); }
.service-card h3{ font-size:1.15rem; margin-bottom:10px; }
.service-card p{ font-size:0.9rem; margin-bottom:20px; }
.service-link{
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.84rem; font-weight:600;
  color:var(--gold-600);
  background:none; border:none; padding:0;
  border-bottom:1px solid transparent;
  transition:border-color 0.25s, gap 0.25s;
}
.service-link:hover{ border-color:var(--gold-600); gap:10px; }

@media (max-width:1100px){ .services-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:760px){ .services-grid{ grid-template-columns:repeat(2,1fr); gap:18px; } .service-card{ padding:26px 18px; } }
@media (max-width:480px){ .services-grid{ grid-template-columns:1fr; } }

/* ============ PROCESS ============ */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.process-card{
  position:relative;
  padding:34px 26px 26px;
  border:1px solid var(--border-soft);
  border-radius:var(--radius-md);
  background:var(--white);
  transition:box-shadow 0.3s, transform 0.3s;
}
.process-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-6px); }
.process-num{
  font-family:var(--font-display);
  font-size:2.3rem;
  color:var(--gold-300);
  -webkit-text-stroke:1px var(--gold-500);
  display:block;
  margin-bottom:12px;
}
.process-card h3{ font-size:1.08rem; }
.process-card p{ font-size:0.9rem; margin:0; }

@media (max-width:900px){ .process-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .process-grid{ grid-template-columns:1fr; } }

/* ============ CONSULTATION INTRO ============ */
.consultation-intro{
  position:relative;
  padding:0;
  color:var(--off-white);
}
.consultation-intro-media{ position:absolute; inset:0; }
.consultation-intro-media img{ width:100%; height:100%; object-fit:cover; }
.consultation-intro-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(10,18,32,0.93) 30%, rgba(10,18,32,0.55) 100%);
}
.consultation-intro .container{ position:relative; padding:110px 24px; }
.consultation-intro-box{ max-width:640px; }
.consultation-intro-box .eyebrow{ color:var(--gold-400); }
.consultation-intro-box .eyebrow::before{ background:var(--gold-400); }
.consultation-intro-box h2{ color:var(--off-white); }
.consultation-intro-box p{ color:rgba(250,247,241,0.8); }

@media (max-width:720px){ .consultation-intro .container{ padding:80px 24px; } }

/* ============ CONSULTATION FORM ============ */
.consultation-wrap{ max-width:820px; margin:0 auto; position:relative; }
.consultation-form{
  background:rgba(250,247,241,0.04);
  border:1px solid rgba(201,164,92,0.25);
  border-radius:var(--radius-lg);
  padding:44px;
  backdrop-filter:blur(6px);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ margin-bottom:20px; }
.form-group label{
  display:block;
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:0.02em;
  margin-bottom:8px;
  color:rgba(250,247,241,0.85);
}
.section-navy .form-group label{ color:rgba(250,247,241,0.85); }
.consultation-form input, .consultation-form select, .consultation-form textarea{
  width:100%;
  padding:13px 16px;
  border-radius:8px;
  border:1px solid rgba(250,247,241,0.2);
  background:rgba(10,18,32,0.4);
  color:var(--off-white);
  font-size:0.94rem;
  transition:border-color 0.25s, box-shadow 0.25s;
}
.consultation-form select option{ color:#111; }
.consultation-form input::placeholder, .consultation-form textarea::placeholder{ color:rgba(250,247,241,0.4); }
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus{
  outline:none;
  border-color:var(--gold-500);
  box-shadow:0 0 0 3px rgba(201,164,92,0.18);
}
.form-disclaimer{ font-size:0.76rem; color:rgba(250,247,241,0.5); text-align:center; margin:16px 0 0; }

.consultation-success{
  background:var(--navy-950);
  border:1px solid var(--gold-500);
  border-radius:var(--radius-lg);
  padding:56px 40px;
  text-align:center;
}
.success-icon{
  width:64px; height:64px;
  border-radius:50%;
  background:rgba(37,211,102,0.15);
  border:1px solid #25D366;
  color:#25D366;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  margin:0 auto 20px;
}
.consultation-success h3{ color:var(--off-white); }
.consultation-success p{ color:rgba(250,247,241,0.75); max-width:440px; margin:0 auto 24px; }
.consultation-success .btn{ margin:6px 8px 0; }

@media (max-width:640px){
  .consultation-form{ padding:28px 20px; }
  .form-row{ grid-template-columns:1fr; }
  .consultation-success{ padding:40px 22px; }
}

/* ============ WHY US ============ */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.why-card{
  padding:36px 28px;
  border-radius:var(--radius-md);
  background:var(--white);
  border:1px solid var(--border-soft);
  text-align:left;
  transition:transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--border-gold); }
.why-icon{
  width:52px; height:52px;
  border-radius:50%;
  background:var(--paper);
  border:1px solid var(--border-gold);
  color:var(--gold-600);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  margin-bottom:18px;
}
.why-card p{ font-size:0.92rem; margin:0; }

@media (max-width:900px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }

/* ============ LAWYER PROFILE ============ */
.lawyer-card{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:0;
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border-soft);
}
.lawyer-photo{ position:relative; min-height:100%; }
.lawyer-photo img{ width:100%; height:100%; object-fit:cover; min-height:420px; }
.lawyer-info{ padding:44px 44px 44px 40px; }
.lawyer-designation{ color:var(--gold-600); font-weight:600; font-size:0.92rem; margin-bottom:16px; }
.lawyer-bio{ font-size:0.95rem; }
.lawyer-meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px 20px;
  margin:22px 0 26px;
  padding:22px 0;
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
}
.lawyer-meta strong{ display:block; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--ink-faint); margin-bottom:4px; }
.lawyer-meta span{ font-family:var(--font-display); font-size:1.05rem; color:var(--navy-900); }
.lawyer-areas-label{ font-size:0.82rem; font-weight:600; color:var(--navy-900); margin-bottom:10px; }
.lawyer-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.lawyer-tags span{
  padding:6px 14px;
  border-radius:20px;
  background:var(--paper);
  border:1px solid var(--border-gold);
  font-size:0.8rem;
  color:var(--gold-600);
  font-weight:600;
}

@media (max-width:860px){
  .lawyer-card{ grid-template-columns:1fr; }
  .lawyer-photo img{ min-height:280px; }
  .lawyer-info{ padding:32px 24px; }
  .lawyer-meta{ grid-template-columns:1fr 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testimonial-slider{ max-width:760px; margin:0 auto; position:relative; }
.testimonial-track{ overflow:hidden; }
.testimonial-track{ display:flex; }
.testimonial-card{
  min-width:100%;
  background:var(--white);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-lg);
  padding:48px 44px;
  text-align:center;
  transition:transform 0.5s ease;
}
.testimonial-card .quote{
  font-family:var(--font-display);
  font-size:1.28rem;
  color:var(--navy-900);
  font-style:italic;
  line-height:1.5;
  margin-bottom:24px;
}
.testimonial-author strong{ display:block; color:var(--navy-900); font-family:var(--font-display); }
.testimonial-author span{ font-size:0.82rem; color:var(--gold-600); text-transform:uppercase; letter-spacing:0.04em; }

.testimonial-controls{ display:flex; align-items:center; justify-content:center; gap:20px; margin-top:28px; }
.testimonial-controls button{
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid var(--border-gold);
  background:var(--white);
  color:var(--navy-900);
  font-size:1.1rem;
  transition:background 0.25s, color 0.25s;
}
.testimonial-controls button:hover{ background:var(--navy-900); color:var(--off-white); }
.testimonial-dots{ display:flex; gap:8px; }
.testimonial-dots button{
  width:9px; height:9px; border-radius:50%;
  background:var(--border-soft);
  border:none;
}
.testimonial-dots button.active{ background:var(--gold-500); width:22px; border-radius:6px; }

@media (max-width:640px){ .testimonial-card{ padding:34px 22px; } .testimonial-card .quote{ font-size:1.08rem; } }

/* ============ FAQ ============ */
.faq-list{ max-width:800px; margin:0 auto; }
.faq-item{
  background:var(--white);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  margin-bottom:14px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  background:none;
  border:none;
  text-align:left;
  font-family:var(--font-display);
  font-size:1.02rem;
  color:var(--navy-900);
  font-weight:600;
}
.faq-question .plus{
  flex-shrink:0;
  width:28px; height:28px;
  border-radius:50%;
  border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-600);
  transition:transform 0.3s ease;
  font-size:1rem;
}
.faq-item.open .faq-question .plus{ transform:rotate(45deg); }
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}
.faq-answer p{ padding:0 24px 20px; margin:0; font-size:0.94rem; }
.faq-item.open .faq-answer{ max-height:260px; }

/* ============ CONTACT ============ */
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:50px;
  margin-bottom:50px;
}
.contact-info{
  background:var(--navy-950);
  border-radius:var(--radius-lg);
  padding:40px 34px;
  color:var(--off-white);
}
.contact-item{ display:flex; gap:16px; margin-bottom:24px; align-items:flex-start; }
.contact-icon{
  flex-shrink:0;
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(201,164,92,0.12);
  border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-400);
}
.contact-item strong{ display:block; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.05em; color:rgba(250,247,241,0.55); margin-bottom:4px; }
.contact-item a, .contact-item span{ color:var(--off-white); font-size:0.98rem; }
.contact-item a:hover{ color:var(--gold-400); }
.contact-info .btn{ margin-top:10px; }

.contact-form{
  background:var(--white);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow-sm);
}
.contact-form label{ display:block; font-size:0.82rem; font-weight:600; margin-bottom:8px; color:var(--navy-900); }
.contact-form input, .contact-form textarea{
  width:100%;
  padding:13px 16px;
  border-radius:8px;
  border:1px solid var(--border-soft);
  background:var(--off-white);
  font-size:0.94rem;
  transition:border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:none; border-color:var(--gold-500); box-shadow:0 0 0 3px rgba(201,164,92,0.15);
}
.form-note{ margin-top:14px; text-align:center; color:var(--gold-600); font-weight:600; font-size:0.9rem; }

.map-wrap{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border-soft);
  box-shadow:var(--shadow-sm);
}
.map-wrap iframe{ width:100%; height:360px; border:0; display:block; }

@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-form{ padding:28px 22px; }
}

/* ============ DISCLAIMER STRIP ============ */
.disclaimer-strip{
  background:var(--paper);
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
  padding:22px 0;
}
.disclaimer-strip p{
  margin:0;
  font-size:0.8rem;
  color:var(--ink-faint);
  text-align:center;
  max-width:960px;
  margin:0 auto;
  line-height:1.6;
}
.disclaimer-strip strong{ color:var(--ink-soft); }

/* ============ FOOTER ============ */
.footer{ background:var(--navy-950); color:rgba(250,247,241,0.7); padding-top:70px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr 1fr;
  gap:40px;
  padding-bottom:50px;
}
.footer-brand p{ color:rgba(250,247,241,0.55); font-size:0.9rem; margin:18px 0 20px; max-width:320px; }
.footer .brand-text strong{ color:var(--off-white); }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid rgba(201,164,92,0.3);
  display:flex; align-items:center; justify-content:center;
  transition:background 0.25s, border-color 0.25s;
}
.footer-social a:hover{ background:var(--gold-500); border-color:var(--gold-500); }
.footer-col h4{ color:var(--off-white); font-family:var(--font-display); font-size:1.05rem; margin-bottom:20px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ color:rgba(250,247,241,0.6); font-size:0.9rem; transition:color 0.25s, padding-left 0.25s; }
.footer-col a:hover{ color:var(--gold-400); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:0.88rem; color:rgba(250,247,241,0.6); }
.footer-contact .icon{ color:var(--gold-400); flex-shrink:0; }

.footer-bottom{ border-top:1px solid rgba(250,247,241,0.08); padding:22px 0; }
.footer-bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:0.82rem; }
.footer-bottom-inner p{ margin:0; color:rgba(250,247,241,0.5); }
.footer-bottom-inner strong{ 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-inner{ flex-direction:column; text-align:center; }
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float{
  position:fixed;
  bottom:26px; right:26px;
  width:60px; height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem;
  box-shadow:0 10px 30px rgba(37,211,102,0.45);
  z-index:800;
  animation:floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover{ transform:scale(1.08); }
@keyframes floatPulse{
  0%,100%{ box-shadow:0 10px 30px rgba(37,211,102,0.45); }
  50%{ box-shadow:0 10px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ============ BACK TO TOP ============ */
.back-to-top{
  position:fixed;
  bottom:26px; left:26px;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--navy-950);
  border:1px solid var(--gold-500);
  color:var(--gold-400);
  font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index:800;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }

@media (max-width:600px){
  .whatsapp-float{ width:54px; height:54px; bottom:18px; right:18px; font-size:1.5rem; }
  .back-to-top{ width:42px; height:42px; bottom:18px; left:18px; }
}

/* ============ MODAL ============ */
.modal-overlay{
  position:fixed; inset:0; z-index:1000;
  background:rgba(8,14,26,0.7);
  backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition:opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.show{ opacity:1; visibility:visible; }
.modal-box{
  background:var(--white);
  border-radius:var(--radius-lg);
  max-width:560px;
  width:100%;
  max-height:86vh;
  overflow-y:auto;
  padding:44px 40px;
  position:relative;
  transform:translateY(30px) scale(0.97);
  transition:transform 0.35s cubic-bezier(.2,.8,.2,1);
  box-shadow:var(--shadow-lg);
}
.modal-overlay.show .modal-box{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px;
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid var(--border-soft);
  background:var(--off-white);
  font-size:1.3rem;
  color:var(--ink-soft);
  display:flex; align-items:center; justify-content:center;
  line-height:1;
}
.modal-close:hover{ background:var(--navy-900); color:var(--off-white); }
.modal-icon{
  width:58px; height:58px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color:var(--gold-400);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  margin-bottom:18px;
}
.modal-subhead{ font-weight:600; color:var(--navy-900); font-size:0.9rem; margin:20px 0 10px; }
.modal-list{ display:flex; flex-direction:column; gap:10px; margin-bottom:8px; }
.modal-list li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:0.92rem; color:var(--ink-soft);
}
.modal-list li::before{
  content:"\2713";
  color:var(--gold-600);
  font-weight:700;
  flex-shrink:0;
}
.modal-actions{ display:flex; gap:12px; margin-top:26px; flex-wrap:wrap; }
.modal-actions .btn{ flex:1; min-width:140px; }

@media (max-width:520px){
  .modal-box{ padding:32px 22px; }
}

/* Prevent body scroll when modal/menu open */
body.no-scroll{ overflow:hidden; }
