
:root{
  /* Brand palette (from logo) */
  --navy:        #122d4e;
  --navy-light:  #1d4571;
  --navy-pale:   #eef2f6;
  --red:         #c53629;
  --red-dark:    #9c2b21;
  --gray:        #7c8794;
  --gray-light:  #f4f5f7;

  /* Neutrals */
  --dark:        #1a1c1f;
  --text-body:   #5b6470;
  --white:       #ffffff;
  --cream:       #f6f5f2;
  --border:      #e7e6e1;

  /* Type */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Heading scale (unified across every section) */
  --h1-size: 58px;
  --h2-size: 40px;
  --h3-size: 19px;
  --h4-size: 15px;
  --eyebrow-size: 13.5px;

  /* Layout */
  --section-pad-y: 100px;
  --section-pad-y-sm: 60px;
  --container-w: 1400px;
  --radius: 10px;

  --shadow-soft: 0 20px 45px rgba(18,45,78,.10);
  --shadow-card: 0 15px 40px rgba(18,45,78,.10);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after{box-sizing:border-box;}
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--white);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height: 70px;}
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }
:focus-visible{ outline:2px solid var(--red); outline-offset:2px; }



/* ---------- TYPOGRAPHY (unified across all sections) ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--dark);
  margin:0;
  line-height:1.25;
}
h1{ font-size:var(--h1-size); font-weight:800; }
h2{ font-size:var(--h2-size); font-weight:700; }
h3{ font-size:var(--h3-size); font-weight:700; }
h4{ font-size:var(--h4-size); font-weight:700; }
p{ margin:0; }

.highlight{ color:var(--red); }

.eyebrow{
  display:inline-block;
  color:var(--red);
  font-weight:600;
  letter-spacing:1.5px;
  font-size:var(--eyebrow-size);
  text-transform:uppercase;
  margin-bottom:16px;
  border-bottom:1px solid var(--red);
  padding-bottom:4px;
}
.eyebrow-light{ color:#e8c9ac; border-color:rgba(255,255,255,.5); }

.section-head{ margin-bottom:56px; text-align: center; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; max-width:680px; }

/* ---------- LAYOUT HELPERS (shared) ---------- */
.section{padding:var(--section-pad-y) 0;position:relative;overflow:hidden;}
.alt-bg{ background:var(--gray-light); }

.row-flex{display:flex;flex-wrap:wrap;align-items:flex-start;/* gap:56px; */}
.row-flex.align-center{ align-items:center; }
.row-flex.row-reverse{ flex-direction:row-reverse; }
.col-half{ flex:1 1 460px; min-width:0; }
.col-wide{ flex:1 1 640px; }
.col-narrow{ flex:0 1 260px; }
.col-wide-60{ flex:1 1 560px; min-width:0; }
.col-narrow-40{ flex:1 1 320px; }
.text-right{ text-align:right; }
.hide-sm, .hide-md{ display:inline-flex; }
.position-relative{ position:relative; }

/* ---------- BUTTONS (one consistent system, used everywhere) ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.3px;
  border:none;
  cursor:pointer;
  transition:.25s ease;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; }

.btn-primary{
  background:var(--red);
  color:var(--white);
  padding: 14px 28px !important;
  border-radius: 50px !important;
}
.btn-primary:hover{background: #721c1c;color: #fff;}

.btn-block{ width:100%; padding:16px; border-radius:8px; }

.btn-outline{
  background:var(--white);
  color:var(--dark);
  border: 1px solid var(--border) !important;
  border-radius: 50px !important;
  padding: 6px 6px 6px 26px !important;
}
.btn-outline:hover{ background:var(--red); color:var(--white); border-color:var(--red); }
.btn-outline:hover .arrow-circle{ background:var(--white); color:var(--red); }

.btn-outline-light{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,.35);
  border-radius:50px;
  padding:6px 6px 6px 26px;
}
.btn-outline-light:hover{ background:var(--red); border-color:var(--red); }

.arrow-circle{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition:.25s ease;
}

/* ==========================================================================
   HEADER / HERO
   ========================================================================== */
.hero-wrap{
  position:relative;
  /* min-height:100vh; */
  display:flex;
  flex-direction:column;
  color:var(--white);
  height: 800px;
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}
/* ---------- HERO VIDEO BACKGROUND ---------- */
.hero-video-wrap{
  position:absolute; inset:0;
  overflow:hidden;
  z-index:0;
}
.hero-video{
  position:absolute;
  top:50%; left:50%;
  min-width:100%; min-height:100%;
  width:auto; height:auto;
  transform:translate(-50%, -50%);
  object-fit:cover;
}

/* Optional: subtle cinematic tone */
.hero-video-wrap::after{
  content:"";
  position:absolute; inset:0;
  background:rgba(18,45,78,.15);
  mix-blend-mode:multiply;
  pointer-events:none;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,20,35,.92) 0%, rgba(18,45,78,.82) 45%, rgba(8,16,28,.95) 100%);
  z-index:1;
  opacity: 0.7;
}

/* ==========================================================================
   TOP INFO STRIP
   ========================================================================== */
.top-strip{ background:var(--navy); border-bottom:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.75); font-size:13px; }
.topbar-inner{ display:flex; align-items:center; justify-content:space-between; padding:9px 0; flex-wrap:wrap; gap:8px; }
.topbar-contact{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.topbar-contact a{ display:inline-flex; align-items:center; gap:7px; }
.topbar-contact a:hover{ color:var(--white); }
.topbar-contact i, .topbar-location i{ color:var(--red); font-size:12px; width:14px; text-align:center; }
.topbar-contact .sep{ opacity:.3; }
.topbar-location{ display:inline-flex; align-items:center; gap:7px; }

/* ==========================================================================
   MAIN NAVBAR (mega-menu)
   ========================================================================== */
.navbar-trisuka{
  background:var(--navy);
  color:var(--white);
  padding:14px 0;
  box-shadow:0 6px 24px rgba(18,45,78,.18);
  transition:padding .2s ease;
}
.navbar-trisuka.is-stuck{ padding:8px 0; }

.navbar-trisuka .brand-logo{ width:44px; height:44px; }
.navbar-trisuka .brand-name{ font-size:19px; }

.navbar-trisuka .nav-link{
  color:rgba(255,255,255,.82) !important;
  font-weight:500;
  font-size:14.5px;
  padding:.6rem .8rem !important;
  display:flex; align-items:center; gap:6px;
  transition:color .15s ease;
}
.navbar-trisuka .nav-link:hover,
.navbar-trisuka .nav-link.active{ color:var(--white) !important; }
.navbar-trisuka .nav-item > .nav-link::after{ display:none; }
.navbar-trisuka .nav-link .chev{ font-size:10px; opacity:.7; transition:transform .18s ease; }
.nav-item.dropdown:hover .chev{ transform:rotate(180deg); }

/* Dropdown / mega panels */
@media (min-width:992px){
  .nav-item.dropdown{ position:static; }
  .dropdown-menu{
    border:none; border-radius:10px; box-shadow:var(--shadow-soft);
    padding:.6rem; margin-top:0;
    opacity:0; visibility:hidden; transform:translateY(8px);
    transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
    display:block;
  }
  .nav-item.dropdown:hover > .dropdown-menu{ opacity:1; visibility:visible; transform:translateY(0); }
  .dropdown-menu.simple{ min-width:280px; }
  .dropdown-menu.mega{ left:50%; transform:translate(-50%,8px); width:min(920px, 92vw); padding:1.1rem; }
  .nav-item.dropdown:hover > .dropdown-menu.mega{ transform:translate(-50%,0); }
}

.dropdown-item{
  font-size:13.5px; color:var(--dark); padding:.5rem .7rem; border-radius:6px;
  display:flex; align-items:center; gap:.5rem;
}
.dropdown-item i{ color:var(--red); font-size:11.5px; width:14px; }
.dropdown-item:hover{ background:var(--gray-light); color:var(--navy); }

.mega-col-title{
  font-family:var(--font-display); font-size:12px; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--red); padding:.35rem .7rem .25rem; margin-bottom:.15rem; border-bottom:1px solid var(--border);
}

/* Mobile off-canvas polish */
@media (max-width:991.98px){
  .navbar-collapse{ background:var(--navy); margin-top:.75rem; border-radius:10px; padding:.5rem .25rem; max-height:75vh; overflow-y:auto; }
  .dropdown-menu{ background:transparent; box-shadow:none; padding-left:.5rem; }
  .dropdown-item{ color:rgba(255,255,255,.82); }
  .dropdown-item:hover{ background:rgba(255,255,255,.06); color:var(--white); }
  .mega-col-title{ color:#e7b7ae; border-bottom-color:rgba(255,255,255,.12); }
  .navbar-trisuka .btn-primary{ width:100%; }
}

/* Hero content */
.hero-content{position:relative;z-index:5;flex:1;display:flex;align-items:center;text-align:center;/* padding:56px 0 40px; */}
.hero-inner{max-width: 900px;margin:0 auto;}
.hero-content h1{ color:var(--white); margin-bottom:22px; text-shadow:0 10px 40px rgba(0,0,0,.5); }
.hero-content h1 .thin{ font-weight:400; font-style:italic; font-size:.62em; display:block; margin-top:6px; }
.hero-content p{ color:rgba(255,255,255,.85); font-size:17px; max-width:600px; margin:0 auto; }

/* Floating consultation form */
.consult-card-wrap{ position:relative; z-index:6; margin-top:-56px; }
.consult-card{background: transparent;border-radius:14px;box-shadow:0 30px 60px rgba(0,0,0,.35);padding:34px 34px 26px;margin-bottom: 30px;}
.consult-title{font-size:20px;margin-bottom:20px;color: #9e9fa1;}

.form-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; align-items:end; }
.form-field label{
  display:block; font-size:11.5px; font-weight:600; color:#9a9a9a;
  text-transform:uppercase; letter-spacing:.5px; margin-bottom:6px;
}
.form-field .field-inner{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--border); border-radius:8px;
  padding:12px 12px; background:#fafaf8; transition:.25s;
}
.form-field .field-inner:focus-within{ border-color:var(--red); background:var(--white); box-shadow:0 0 0 3px rgba(197,54,41,.12); }
.form-field svg{ width:17px; height:17px; color:var(--red); flex-shrink:0; }
.form-field input, .form-field select{
  border:none; background:transparent; outline:none; width:100%;
  font-family:var(--font-body); font-size:14px; font-weight:600; color:var(--dark);
  padding:0; appearance:none;
}
.form-field input::placeholder{ color:#bbb; font-weight:400; }

button.btn-block{ margin-top:16px; }
.rating-row{margin-top:18px;font-size:13px;color: #9e9fa1;}
.rating-row .stars{ color:var(--red); }
.rating-row strong{color: #848f9b;}

.form-success{
  display:none; background:#f0f7ee; border:1px solid #cfe8c8; color:#2f6b25;
  font-size:13.5px; font-weight:500; padding:12px 16px; border-radius:8px; margin-top:16px;
}
.form-success.show{ display:block; }

/* ==========================================================================
   ABOUT / WHY-CHOOSE (shared image-collage layout)
   ========================================================================== */
.collage-wrap{ position:relative; max-width:520px; margin:0 auto; min-height:400px; }

.img-frame-1{ position:relative; z-index:2; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft); margin-left:70px; }
.img-frame-1 img{width:100%;height: 600px;object-fit:cover;}

.img-frame-2{ position:relative; margin-left:150px; margin-top:-40px; z-index:3; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft); }
.img-frame-2 img{ width:100%; height:260px; object-fit:cover; }

.hex-badge{
  position:absolute;
  left: -32px;
  top: 11px;
  width:180px;
  height:180px;
  background:var(--white);
  clip-path:polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index:5;
  padding:20px;
}
.hex-badge h3{ margin-bottom:10px; }
.hex-badge a{ color:var(--red); font-size:13px; font-weight:600; }

.client-badge{
  position:absolute;
  top: 499px;
  right:-20px;
  background:var(--white);
  border-radius:50px;
  padding:16px 24px 16px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:var(--shadow-card);
  z-index:6;
  max-width:250px;
}
.client-badge .icon-circle{width:52px;height:52px;border-radius:50%;background:var(--gray-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;color: var(--red);font-size: 23px;}
.client-badge .icon-circle svg{ width:24px; height:24px; color:var(--red); }
.client-badge .badge-number{font-size: 22px;margin:0;line-height:1.1;}
.client-badge span{ font-size:12.5px; color:var(--text-body); }

.icon-badge{
  position:absolute; top:-16px; right:50px; width:64px; height:64px; background:var(--white);
  border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-card); z-index:5;
}
.icon-badge svg{ width:26px; height:26px; color:var(--red); }

.rotating-badge{ position:absolute; bottom:-10px; left:10px; width:150px; height:150px; z-index:6; animation:spin 18s linear infinite; }
@keyframes spin{ from{ transform:rotate(0); } to{ transform:rotate(360deg); } }
.rotating-badge svg text{font-family:var(--font-body);font-size: 13.5px;letter-spacing:2px;fill:#fff;}

.about-content > p, .why-content > p{ font-size:15px; line-height:1.9; max-width:520px; margin-bottom:36px; color:var(--text-body); }
.about-content h2, .why-content h2{ margin-bottom:20px; }

.feature-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 24px; margin-bottom:36px; }
.feature-grid.two-col{ grid-template-columns:1fr 1fr; }
.feature-item, .why-feature{ display:flex; gap:16px; margin-bottom:32px; }
.feature-item .f-icon, .why-feature .w-icon{ width:38px; height:38px; flex-shrink:0; margin-top:2px; }
.feature-item .f-icon svg, .why-feature .w-icon svg{ width:100%; height:100%; color:var(--red); }
.feature-item h3, .why-feature h3{ margin-bottom:6px; }
.feature-item p, .why-feature p{ font-size:13.5px; line-height:1.65; color:var(--text-body); }


/* ==========================================================================
   WORKING PROCESS
   ========================================================================== */
.process-section{ background:var(--gray-light); padding:var(--section-pad-y) 0 calc(var(--section-pad-y) + 30px); }
.gavel-img{ position:absolute; top:-10px; right:0; width:220px; opacity:.15; z-index:0; pointer-events:none; border-radius:12px; }

.steps-row{ position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:40px 0; }
.step-col{ flex:1 1 220px; min-width:220px; }
.step-col.step-offset{ margin-top:70px; }

.connector-svg{ position:absolute; top:70px; left:0; width:100%; height:120px; z-index:0; pointer-events:none; }
.connector-svg path{ stroke:#d9d2c2; stroke-width:1.5; stroke-dasharray:4 6; fill:none; }

.step-item{
  text-align:center; position:relative; z-index:1;
  opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;
  padding:0 16px;
}
.step-item.in-view{ opacity:1; transform:translateY(0); }

.step-icon-wrap{ position:relative; width:84px; height:84px; margin:0 auto 22px; }
.step-icon-circle{ width:84px; height:84px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-card); }
.step-icon-circle i {width:30px;height:30px;color:var(--red);font-size: 32px;}
.step-number{
  position:absolute; top:-4px; left:-4px; width:28px; height:28px; border-radius:50%; background:var(--navy);
  color:var(--white); font-size:11.5px; font-weight:700; display:flex; align-items:center; justify-content:center;
}
.step-item h3{ margin-bottom:10px; }
.step-item p{ color:var(--text-body); font-size:13.5px; line-height:1.8; max-width:230px; margin:0 auto; }

.end-dot{ position:absolute; top:150px; right:0; width:22px; height:22px; border-radius:50%; border:1.5px solid #d9d2c2; z-index:1; }

/* ==========================================================================
   FUN FACTS / STATS
   ========================================================================== */
.facts-section{ padding:0; }
.facts-hero{
  position:relative;
  background:linear-gradient(180deg, rgba(10,20,35,.90) 0%, rgba(18,45,78,.72) 100%), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1600&q=80') center/cover no-repeat;
  padding: 90px 0 9px;
}
.facts-hero h2.light{ color:var(--white); font-size:34px; }
.stats-row{ margin-top:-95px; position:relative; z-index:3; }
.stats-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; }

.stat-card{ background:var(--white); border-radius:6px; box-shadow:var(--shadow-card); padding:55px 20px 26px; text-align:center; position:relative; }
.stat-icon-circle{
  width:92px;
  height:92px;
  border-radius:50%;
  background:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:-46px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:var(--shadow-card);
  font-size: 35px;
  color: #fff;
}
.stat-icon-circle svg{ width:34px; height:34px; color:var(--white); }
.stat-number{ font-size:36px; margin-bottom:16px; margin-top:6px; }
.stat-label{ display:inline-block; background:var(--gray-light); color:var(--dark); font-weight:600; font-size:13.5px; padding:9px 18px; border-radius:4px; }

.facts-bottom-space{ height:100px; }
.go-top{ position:absolute; right:24px; bottom:32px; writing-mode:vertical-rl; text-orientation:mixed; color:var(--text-body); font-size:11px; letter-spacing:2px; z-index:4; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-section{ background:var(--white); }
.bg-statue{ position:absolute; left:0; top:0; height:100%; width:380px; opacity:.06; z-index:0; pointer-events:none; }
.bg-statue img{ height:100%; width:100%; object-fit:cover; -webkit-mask-image:linear-gradient(90deg, #000 40%, transparent 100%); mask-image:linear-gradient(90deg, #000 40%, transparent 100%); }

.testi-left p{ font-size:14.5px; line-height:1.8; max-width:340px; margin-bottom:32px; color:var(--text-body); }
.testi-left h2{ margin-bottom:20px; }

.slider-arrows{ display:flex; gap:14px; }
.arrow-btn{ width:44px; height:44px; border-radius:50%; background:var(--gray-light); border:none; display:flex; align-items:center; justify-content:center; color:var(--dark); cursor:pointer; transition:.25s; }
.arrow-btn:hover{ background:var(--red); color:var(--white); }
.arrow-btn svg{ width:17px; height:17px; }

.testi-slider-viewport{ position:relative; z-index:2; overflow:hidden; }
.testi-slider-track{ display:flex; transition:transform .6s ease; }
.testi-slide{ flex:0 0 100%; display:flex; gap:24px; }

.testi-card{ background:var(--white); border-radius:8px; box-shadow:var(--shadow-card); padding:36px 22px 22px; position:relative; flex:1; margin-top:32px; min-width:0; }
.testi-avatar-wrap{ position:absolute; top:-32px; left:22px; display:flex; align-items:center; gap:14px; }
.arch-bg{ position:absolute; top:32px; left:0; width:60px; height:30px; background:var(--gray-light); border-top-left-radius:60px; border-top-right-radius:60px; z-index:0; }
.testi-avatar{ width:60px; height:60px; border-radius:50%; overflow:hidden; border:3px solid var(--white); box-shadow:0 5px 15px rgba(0,0,0,.15); position:relative; z-index:1; flex-shrink:0; }
.testi-avatar img{ width:100%; height:100%; object-fit:cover; }
.avatar-initial{ display:flex; align-items:center; justify-content:center; background:var(--navy); color:var(--white); font-family:var(--font-display); font-weight:700; font-size:20px; }
.testi-name{ position:relative; z-index:1; padding-top:4px; }
.testi-name h3{ margin:0; font-size:16px; }
.testi-name span{ font-size:12.5px; color:var(--text-body); }
.testi-card p.testi-text{ color:var(--text-body); font-size:13.5px; line-height:1.85; margin:26px 0 20px; }
.testi-stars{color:var(--red);font-size: 16px;letter-spacing:2px;}
.quote-icon{ position:absolute; bottom:0; right:0; width:44px; height:40px; background:var(--red); border-top-left-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--white); }
.quote-icon svg{ width:19px; height:19px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.75); padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-col h3{ color:var(--white); font-size:16px; margin-bottom:20px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul a:hover{ color:var(--red); }
.footer-brand p{ font-size:13.5px; line-height:1.8; margin:18px 0 22px; max-width:340px; }
.footer-brand .brand-logo{ background:var(--white); }
.footer-social{ display:flex; gap:16px; flex-wrap:wrap; }
.footer-social a{ font-size:12.5px; border:1px solid rgba(255,255,255,.2); padding:6px 12px; border-radius:20px; }
.footer-social a:hover{ background:var(--red); border-color:var(--red); color:var(--white); }
address{ font-style:normal; font-size:13.5px; line-height:1.9; }
address p{ margin-bottom:8px; }
address a:hover{ color:var(--red); }

.footer-bottom-inner{ display:flex; justify-content:space-between; gap:24px; padding:24px 0; font-size:12.5px; flex-wrap:wrap; }
.disclaimer{ max-width:640px; opacity:.6; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; width:56px; height:56px; background:#25d366; border-radius:50%;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 25px rgba(0,0,0,.25); z-index:50; color:var(--white);
}
.whatsapp-float svg{ width:28px; height:28px; }
.whatsapp-float:hover{ transform:scale(1.06); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:991px){
  :root{ --h1-size:40px; --h2-size:30px; --section-pad-y:70px; }

  .row-flex{ gap:40px; }
  .row-flex.row-reverse{ flex-direction:row; }
  .col-half{ flex:1 1 100%; }

  .about-content, .why-content{ margin-top:20px; }
  .collage-wrap{ margin-bottom:40px; }

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

  .connector-svg{ display:none; }
  .step-col.step-offset{ margin-top:0; }
  .gavel-img{ display:none; }
  .end-dot{ display:none; }

  .hex-badge{ left:0; top:-16px; }
}

@media (max-width:576px){
  :root{ --h1-size:32px; --h2-size:26px; }
  .hero-content p{ font-size:14.5px; }
  .form-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .consult-card{ padding:26px 20px 20px; }
  .practice-card{ width:250px; flex:0 0 250px; }
  .topbar-location{ display:none; }
  .col-narrow-40, .col-wide-60{ flex:1 1 100%; }
}

/*=========================
    MAIN FOOTER
=========================*/
.main-footer{
    
    background-image:
        linear-gradient(180deg, rgba(10,22,40,.94) 0%, rgba(18,45,78,.90) 55%, rgba(9,20,36,.96) 100%),
        url('footer-bg.jpg');
    background-color: #122d4e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* parallax feel on desktop; auto-disabled on mobile below */
    color:#d9e4f3;
    padding:80px 0 0;
    position:relative;
    overflow:hidden;
}


@media (max-width:991px){
  .main-footer{ background-attachment: scroll; }
}

/* Background Pattern */
.main-footer::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    left:-180px;
    bottom:-180px;
    background:
    repeating-linear-gradient(45deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 2px,
    transparent 2px,
    transparent 35px);
    transform:rotate(45deg);
    opacity:.4;
    z-index:0;
    pointer-events:none;
}

/* Make sure all real footer content paints above the pattern + bg image */
.main-footer > .container{
    position:relative;
    z-index:1;
}

/*---------------- Header ----------------*/

.footer-header{
    padding-bottom:45px;
    margin-bottom:60px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.about-footer{
    display:flex;
    align-items:center;
}

.footer-logo{
    width:170px;
    padding-right:40px;
    margin-right:40px;
    border-right:1px solid rgba(255,255,255,.12);
}

.footer-logo img{
    width:120px;
    height:auto;
}

.about-footer-content{
    max-width:650px;
}

.about-footer-content p{
    color:#fff;
    line-height:1.9;
}

/*---------------- Social ----------------*/

.footer-social-links{
    display:flex;
    justify-content:flex-end;
}

.footer-social-links ul{
    display:flex;
    gap:15px;
}

.footer-social-links li a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.35s;
}

.footer-social-links li a:hover{
    background:#c53629;
    border-color:#c53629;
}

/*---------------- Newsletter ----------------*/

.footer-newsletter-box h3{
    font-size: 26px;
    line-height: 1.5;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.footer-newsletter-box p{
    margin-bottom:35px;
    line-height:1.8;
}

.footer-newsletter-form .form-group{
    position:relative;
}

.footer-newsletter-form input{
    width:100%;
    height:60px;
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,.18);
    color:#fff;
    padding-right:70px;
    font-size:18px;
}

.footer-newsletter-form input::placeholder{
    color:#b7c7de;
}

.footer-newsletter-form input:focus{
    outline:none;
}

.newsletter-btn{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#3d629d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.newsletter-btn::before{
    content:"\F138";
    font-family:"bootstrap-icons";
    font-size:22px;
}

/*---------------- Links ----------------*/

.footer-links-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-links h3{
    color:#fff;
    margin-bottom:28px;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#fff;
    display:flex;
    align-items:center;
    transition:.3s;
}

.footer-links ul li a::before{
    /* content:"?"; */
    color:#cda34b;
    margin-right:12px;
}

.footer-links ul li a:hover{
    padding-left: 2px;
    color: #e61e24;
}

/*---------------- Contact ----------------*/

.footer-contact-item{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.footer-contact-item .icon-box{
    width:56px;
    height:56px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:#fff;
}

.footer-contact-content h3{
    color:#fff;
    margin-bottom:5px;
}

.footer-contact-content p{
    margin:0;
}

.footer-contact-item:first-child .icon-box::before{
    content:"\F32F";
    font-family:"bootstrap-icons";
}

.footer-contact-item:last-child .icon-box::before{
    content:"\F5C1";
    font-family:"bootstrap-icons";
}

/*---------------- Copyright ----------------*/

.footer-copyright{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.12);
    padding:30px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-copyright-text p{
    margin:0;
    color:#fff;
}

.footer-privacy-policy ul{
    display:flex;
    gap:30px;
}

.footer-privacy-policy a{
    color:#fff;
}

/*=====================
Responsive
======================*/

@media(max-width:991px){

.about-footer{
flex-direction:column;
align-items:flex-start;
}

.footer-logo{
margin:0 0 30px;
padding:0;
border:none;
}

.footer-social-links{
justify-content:flex-start;
margin-top:30px;
}

.footer-links-box{
grid-template-columns:1fr;
gap:40px;
margin-top:50px;
}

.footer-newsletter-box{
margin-bottom:50px;
}

.footer-newsletter-box h3{
font-size:36px;
}

.footer-copyright{
flex-direction:column;
text-align:center;
gap:15px;
}

.footer-privacy-policy ul{
justify-content:center;
}

}



/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section{ background:var(--gray-light); }

.faq-subtext{
  font-size:14.5px;
  line-height:1.9;
  color:var(--text-body);
  margin-top:16px;
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 24px;
  align-items:start;
}

.faq-col{ display:flex; flex-direction:column; gap:16px; }

.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  transition:.25s ease;
}
.faq-item[open]{ border-color:var(--red); box-shadow:var(--shadow-card); }

.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  color:var(--dark);
}
.faq-item summary::-webkit-details-marker{ display:none; }

.faq-num{ color:var(--red); font-weight:700; margin-right:6px; }

.faq-icon{
  width:26px; height:26px;
  display:flex; align-items:center; justify-content:center;
  color:var(--dark);
  flex-shrink:0;
  transition:.25s ease;
}
.faq-icon svg{ width:16px; height:16px; }

.faq-item[open] .faq-icon{ color:var(--red); transform:rotate(180deg); }

.faq-answer{ padding:0 20px 20px; }
.faq-answer p{ font-size:13.5px; line-height:1.85; color:var(--text-body); margin:0; }

@media (max-width:768px){
  .faq-grid{ grid-template-columns:1fr; }
}


.rotating-badge{
    width:160px;
    height:160px;
}

.rotate-text{
    transform-origin:80px 80px;
    animation:rotateBadge 12s linear infinite;
}

.rotate-text{
    transform-origin:80px 80px;
    animation:rotateBadge 10s linear infinite;
}

@keyframes rotateBadge{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}


/* Text select hone par */
::selection {
    background: #c53629; /* Selection background color */
    color: #ffffff;      /* Selected text color */
}

/* Firefox support */
::-moz-selection {
    background: #ff6b00;
    color: #ffffff;
}


/* ---------- Toggle Button ---------- */
.consult-toggle{
  position:fixed;
  top:45%;
  right:0;
  transform:translateY(-50%);
  background: #c53629;
  color:#fff;
  border:none;
  padding: 16px 10px;
  font-weight:600;
  font-size:14.5px;
  cursor:pointer;
  border-radius:8px 0 0 8px;
  z-index:998;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  box-shadow:-4px 0 14px rgba(0,0,0,.15);
  transition:background .3s;
}
.consult-toggle:hover{background: #721c1c;}

/* ---------- Popup Overlay ---------- */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(10,20,35,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease;
  z-index:999;
  padding:20px;
}
.popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* ---------- Popup Box ---------- */
.popup-box{
  position:relative;
  background:#fff;
  width:420px;
  max-width:100%;
  max-height:90vh;
  overflow-y:auto;
  border-radius:14px;
  padding:32px 28px;
  box-shadow:0 20px 60px rgba(0,0,0,.3);
  transform:translateY(-30px) scale(.96);
  transition:transform .35s ease;
}
.popup-overlay.active .popup-box{
  transform:translateY(0) scale(1);
}

.consult-close{
  position:absolute;
  top:14px; right:18px;
  background:none;
  border:none;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  color:#333;
}

.consult-title{
  font-size:20px;
  font-weight:700;
  color:var(--primary, #0a1e35);
  margin:0 0 22px;
  padding-right:20px;
}

/* ---------- Form fields (vertical stack) ---------- */
.consult-bar-vertical{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.bar-field{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid #e2e2e2;
  border-radius:8px;
  background:#fafafa;
}

.bar-field svg{
  width:19px; height:19px;
  flex-shrink:0;
  color:var(--primary, #0a1e35);
}

.bar-field input,
.bar-field select{
  border:none;
  outline:none;
  width:100%;
  font-size:14.5px;
  color:#222;
  background:transparent;
}
.bar-field select{ appearance:none; cursor:pointer; }
.bar-field input::placeholder{ color:#999; }

.bar-btn{
  margin-top:6px;
  height:48px;
  border:none;
  border-radius:8px;
  background:var(--primary, #0a1e35);
  color:#fff;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:background .3s;
}
.bar-btn:hover{
  background:var(--accent, #d4af37);
}

.form-success{
  display:none;
  margin-top:16px;
  text-align:center;
  background:#e8f7ee;
  color:#1e7e42;
  padding:12px 16px;
  border-radius:8px;
  font-size:14px;
}
.form-success.active{ display:block; }

.rating-row{
  margin-top:18px;
  text-align:center;
  font-size:13.5px;
  color:#555;
}
.rating-row .stars{ color:#f5b301; margin-right:4px; }

@media (max-width:480px){
  .popup-box{ padding:26px 18px; }
}

.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:58px;
  height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  z-index:9999;
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float i{
  font-size:28px;
  color:#fff;
}

.whatsapp-float:hover{
  transform:scale(1.08);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}

@media (max-width:480px){
  .whatsapp-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .whatsapp-float i{ font-size:24px; }
}

.hero-inner {
   /* text/buttons left align rahenge */
}

.hero-inner p {
  margin-bottom: 0; /* extra gap na ho paragraph aur button ke beech */
}

.hero-buttons {
  /* display: flex; */
  gap: 16px;
  margin-top: 24px;   /* content k just niche spacing */
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn i {
  font-size: 15px;
}

.btn-red {
  background-color: #d32f2f;
  color: #ffffff;
  border-color: #d32f2f;
  border-radius: 50px;
}
.btn-red:hover {
  background-color: #fff;
  color: #000;
}

.btn-white {
  background-color: #ffffff;
  color: #d32f2f;
  margin-right: 31px;
  border-radius: 50px;
}
.btn-white:hover{
  background: #d32f2f;
  color:#fff;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
.f-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor; /* same jaisa stroke="currentColor" tha */
}

.f-icon i {
  font-size: 31px;   /* SVG ke 24x24 viewBox ke barabar visual size */
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.why {
  padding: 70px 0;
}

.why .eyebrow {
  display: inline-block;
  color: #d32f2f;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.why .line {
  width: 60px;
  height: 3px;
  background: #d32f2f;
  margin: 12px auto 16px;
  border-radius: 2px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d32f2f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-content h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.why-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}
.footer-links i{
  margin-right: 11px;
}