/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-navy: #001B54;
  --dark-blue: #082366;
  --accent-red: #D9232D;
  --accent-gold: #C58B12;
  --accent-blue: #1C52A2;
  --bg-light: #F8FAF8;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --font-main: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.text-center { text-align: center; }
.text-white { color: #FFFFFF !important; }
.mt-15 { margin-top: 15px; }
.mb-40 { margin-bottom: 40px; }
.bg-light { background-color: var(--bg-light); }

/* Utility Highlight Colors */
.highlight-red { color: var(--accent-red); }
.highlight-gold { color: var(--accent-gold); }
.highlight-blue { color: var(--dark-blue); }

.red-text { color: var(--accent-red); }
.gold-text { color: var(--accent-gold); }
.blue-text { color: var(--dark-blue); }

/* ==========================================
   TOP BAR
   ========================================== */
.topbar {
  background: var(--primary-navy);
  color: #cbd5e1;
  font-size: 12.5px;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
}

.topbar a:hover {
  color: #ffffff;
}

.topbar i {
  color: var(--accent-gold);
  font-size: 12px;
}

.topbar-social {
  display: flex;
  gap: 8px;
}

.topbar-social a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ffffff;
}

.topbar-social a i {
  color: inherit;
  font-size: 11px;
}

.topbar-social a:hover {
  background: var(--accent-red);
  color: #ffffff;
}

@media (max-width: 992px) {
  .topbar-hours {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .topbar-address {
    display: none !important;
  }

  .topbar-inner {
    justify-content: center;
    gap: 10px 18px;
  }
}

@media (max-width: 600px) {
  .topbar {
    font-size: 11.5px;
    padding: 7px 0;
  }

  /* Centered: contact details + social icons */
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
  }

  .topbar-left {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 14px;
  }

  .topbar-left a {
    white-space: nowrap;
  }

  .topbar-right {
    justify-content: center;
    gap: 0;
  }

  /* Compact social icons so they fit alongside the contact details */
  .topbar-social {
    gap: 6px;
  }

  .topbar-social a {
    width: 27px;
    height: 27px;
    font-size: 10px;
  }
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  background-color: var(--bg-card);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Design */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  margin-top: 3px;
}

@media (max-width: 600px) {
  .logo-img {
    height: 48px;
  }

  .logo-tagline {
    font-size: 9px;
  }
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-red);
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

/* Services dropdown */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  width: max-content;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-red);
  border-radius: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

/* Arrow pointing up at the parent menu item */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 26px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--accent-red);
  z-index: 2;
}

/* Invisible bridge so the menu stays open while crossing the gap */
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  height: 19px;
}

/* Right-anchored dropdowns need the arrow on the right */
.nav-item:nth-last-child(-n+2) .dropdown-menu::before {
  left: auto;
  right: 26px;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.dropdown-menu li a i {
  font-size: 10px;
  color: var(--accent-red);
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--accent-red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-nav {
  background-color: var(--dark-blue);
  color: white;
}

.btn-primary-nav:hover {
  background-color: #03143c;
}

.btn-blue {
  background-color: var(--dark-blue);
  color: white;
}

.btn-blue:hover {
  background-color: #03143c;
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
}

.btn-outline-blue:hover {
  background-color: var(--dark-blue);
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--dark-blue);
}

.btn-white:hover {
  background-color: #f1f5f9;
}

.btn-block {
  display: flex;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.btn-red-full { background-color: var(--accent-red); color: white; }
.btn-gold-full { background-color: var(--accent-gold); color: white; }
.btn-blue-full { background-color: var(--dark-blue); color: white; }

.btn-red-full:hover { background-color: #b81922; }
.btn-gold-full:hover { background-color: #a3720b; }
.btn-blue-full:hover { background-color: #03143c; }

/* ==========================================
   HERO SECTIONS & FLOATING CARDS
   ========================================== */
.hero {
  padding: 60px 0 90px 0;
  background: linear-gradient(135deg, #ffffff 60%, #f4f7fc 100%);
  position: relative;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-left {
  flex: 1.1;
}

.hero-title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.badge-item i {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-right {
  flex: 0.9;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Floating Cards Fix */
.floating-cards {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  width: 95%;
  z-index: 10;
}

.feature-card {
  flex: 1;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.red-icon { background-color: #FDE8E8; color: var(--accent-red); }
.gold-icon { background-color: #FEF6E6; color: var(--accent-gold); }
.blue-icon { background-color: #EBF2FA; color: var(--dark-blue); }

.card-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: block;
}

.card-red .card-tag { color: var(--accent-red); }
.card-gold .card-tag { color: var(--accent-gold); }
.card-blue .card-tag { color: var(--dark-blue); }

.card-text p {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 5px;
}

.subtitle-red { color: var(--accent-red); }
.subtitle-gold { color: var(--accent-gold); }
.subtitle-blue { color: var(--dark-blue); }

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}

.section-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 8px;
}

.title-underline {
  height: 3px;
  width: 50px;
  margin: 8px 0 0 0;
}

.underline-red { background-color: var(--accent-red); }
.center-line { margin: 8px auto 20px auto; }

/* ==========================================
   SERVICES CARDS & GRID
   ========================================== */
.services-section {
  padding: 70px 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 34px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* keep card content above the watermark */
.service-card > * {
  position: relative;
  z-index: 1;
}

/* faded illustrative watermark in the top-right corner */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 195px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(to bottom left, #000 8%, transparent 72%);
  mask-image: linear-gradient(to bottom left, #000 8%, transparent 72%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.border-top-red { border-color: rgba(217, 35, 45, 0.22); }
.border-top-gold { border-color: rgba(197, 139, 18, 0.28); }
.border-top-blue { border-color: rgba(8, 35, 102, 0.20); }

.border-top-red::before { background-image: url('../images/banner/photo-1554224155-8d04cb21cd6c.jpg'); }
.border-top-gold::before { background-image: url('../images/banner/photo-1589829545856-d10d557cf95f.jpg'); }
.border-top-blue::before { background-image: url('../images/banner/photo-1454165804606-c3d57bc86b40.jpg'); }

.service-illustration {
  width: 84px;
  height: 92px;
  margin: 0 0 22px 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-light-red { background-color: #FDE8E8; }
.bg-light-gold { background-color: #FEF6E6; }
.bg-light-blue { background-color: #EBF2FA; }

/* solid hexagon colour + white glyph */
.border-top-red .service-illustration { background: var(--accent-red); }
.border-top-gold .service-illustration { background: var(--accent-gold); }
.border-top-blue .service-illustration { background: var(--dark-blue); }

.service-graphic-icon {
  font-size: 34px;
}

.service-illustration .service-graphic-icon {
  color: #fff;
}

.service-title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.service-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
}

.service-list {
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-list li {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-red li i { color: var(--accent-red); }
.list-gold li i { color: var(--accent-gold); }
.list-blue li i { color: var(--dark-blue); }

.service-link {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.link-red { color: var(--accent-red); }
.link-gold { color: var(--accent-gold); }
.link-blue { color: var(--dark-blue); }

/* ==========================================
   WHY CHOOSE US SECTION (ADDED FIX)
   ========================================== */
.why-us-section {
  padding: 80px 0 100px 0;
  background-color: #FFFFFF;
}

.why-us-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.why-us-left {
  flex: 1;
}

.why-us-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.25;
}

.why-us-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 15px 0 30px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: var(--bg-light);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3px;
}

.why-content p {
  font-size: 12px;
  color: var(--text-muted);
}

.why-us-right {
  flex: 1;
  position: relative;
}

.why-img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stats-bar {
  position: absolute;
  bottom: -35px;
  left: 20px;
  right: 20px;
  background: var(--dark-blue);
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  justify-content: space-around;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 11px;
  opacity: 0.9;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  position: relative;
  margin-bottom: 20px;
}

.circle-red { background-color: var(--accent-red); }
.circle-gold { background-color: var(--accent-gold); }
.circle-blue { background-color: var(--dark-blue); }
.circle-dark-red { background-color: #900C3F; }

.step-number {
  position: absolute;
  bottom: -5px;
  background: white;
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 170px;
}

.step-divider {
  flex: 0.5;
  border-top: 2px dashed #CBD5E1;
  margin-top: 32px;
}

/* ==========================================
   CTA BANNER VARIANTS
   ========================================== */
.cta-section {
  padding: 60px 0;
}

.cta-banner {
  background-color: var(--dark-blue);
  color: white;
  border-radius: 16px;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.cta-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cta-text h3 {
  font-size: 20px;
  font-weight: 700;
}

.cta-text p {
  font-size: 13px;
  opacity: 0.9;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  position: relative;
  background: linear-gradient(160deg, #002064 0%, #001B54 45%, #04123a 100%);
  color: #cbd5e1;
  padding-top: 70px;
}

/* Slim gold accent line across the top of the footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 50%, var(--accent-blue) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 45px;
  padding-bottom: 50px;
}

/* Logo sits in a clean white chip so its white background reads as design */
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 12px 18px 10px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.30);
}

.footer-logo .logo-img {
  height: 56px;
}

.footer-logo .logo-tagline {
  color: var(--text-muted);
  margin-top: 5px;
}

.footer-desc {
  font-size: 13px;
  color: #a9b6cf;
  margin-top: 20px;
  max-width: 260px;
  line-height: 1.7;
}

.brand-col .social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.footer-col h4 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-col ul li {
  margin-bottom: 13px;
  font-size: 13px;
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9b6cf;
}

.footer-col ul li a i {
  font-size: 10px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col ul li a:hover i {
  transform: translateX(4px);
}

.contact-info li {
  display: flex;
  gap: 12px;
  line-height: 1.55;
  font-size: 13px;
  color: #a9b6cf;
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--accent-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Popular searches / local SEO links */
.footer-seo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding-bottom: 26px;
  margin-top: -14px;
  font-size: 12px;
  color: #8798b8;
}

.footer-seo span {
  font-weight: 700;
  color: #a9b6cf;
}

.footer-seo a {
  color: #8798b8;
  position: relative;
}

.footer-seo a:not(:last-child)::after {
  content: '·';
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-seo a:hover {
  color: var(--accent-gold);
}

.sub-footer {
  background-color: #04102e;
  color: #a9b6cf;
  padding: 16px 0;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  display: flex;
  gap: 10px;
}

.legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-credit {
  font-size: 12px;
  color: #a9b6cf;
}

.footer-credit a {
  color: var(--accent-gold);
  font-weight: 600;
}

.footer-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
  .container,
  .why-us-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-container,
  .why-us-container {
    flex-direction: column;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 34px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .floating-cards {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
  }

  .services-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 20px;
  }

  .step-divider {
    display: none;
  }

  .step-card {
    margin-bottom: 0;
    flex: none;
  }

  .cta-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-left {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container,
  .why-us-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-grid,
  .footer-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-direction: column;
    gap: 15px;
  }

  .sub-footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Process steps become horizontal cards on phones */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  }

  .step-icon-wrapper {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 0;
  }

  .step-card p {
    max-width: none;
  }

  .navy-process-card .step-card {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
}

/* ==========================================
   HOME BANNER CAROUSEL
   ========================================== */
.home-carousel {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 84, 0.72) 0%, rgba(0, 27, 84, 0.35) 55%, rgba(0, 27, 84, 0.15) 100%);
  z-index: 3;
  display: flex;
  align-items: center;
}

.carousel-caption {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  color: #fff;
}

.carousel-caption .caption-inner {
  max-width: 620px;
}

.carousel-caption .cap-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.carousel-caption h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.carousel-caption p {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 26px;
  max-width: 520px;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.carousel-arrow:hover {
  background: #fff;
}

.carousel-arrow.prev { left: 22px; }
.carousel-arrow.next { right: 22px; }

/* Dots */
.carousel-dots-nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.carousel-dots-nav .c-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.carousel-dots-nav .c-dot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

@media (max-width: 992px) {
  .home-carousel { height: 440px; }
  .carousel-caption h2 { font-size: 30px; }
}

@media (max-width: 600px) {
  .home-carousel { height: 360px; }
  .carousel-caption h2 { font-size: 23px; }
  .carousel-caption p { font-size: 13px; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 14px; }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
}

/* ==========================================
   MOBILE NAV TOGGLE (hamburger)
   ========================================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark-blue);
  cursor: pointer;
}

/* +/- submenu button — mobile only */
.submenu-toggle {
  display: none;
  background: var(--bg-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--dark-blue);
  font-size: 12px;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .btn-primary-nav {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-card);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav-menu.open {
    max-height: 80vh;
    overflow-y: auto;
    padding: 12px 20px;
  }

  .nav-link {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .navbar {
    position: relative;
  }

  /* Parent row: link on the left, +/- button on the right */
  .nav-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-item > .nav-link {
    flex: 1;
    width: auto;
    border-bottom: none;
  }

  .nav-item .dropdown-arrow {
    display: none;
  }

  .submenu-toggle {
    display: flex;
  }

  .nav-item.open .submenu-toggle {
    background: var(--accent-red);
    color: #fff;
  }

  /* No arrow / bridge on the inline mobile submenu */
  .dropdown-menu::before,
  .dropdown-menu::after {
    display: none;
  }

  /* Collapsible submenu */
  .dropdown-menu {
    position: static;
    top: auto;
    flex-basis: 100%;
    width: 100%;
    min-width: auto;
    max-width: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--bg-light);
    padding: 0 0 0 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  }

  .nav-item.open .dropdown-menu {
    max-height: 560px;
    padding: 6px 0 8px 14px;
    margin-bottom: 8px;
  }

  .dropdown-menu li a {
    padding: 9px 0;
    font-size: 12.5px;
    white-space: normal;
  }
}

/* ==========================================
   FULL-WIDTH HERO BANNER (about / services / contact)
   ========================================== */
.hero-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 84, 0.90) 0%, rgba(0, 27, 84, 0.66) 45%, rgba(0, 27, 84, 0.32) 100%);
  z-index: 1;
}

.hero-banner .hero-container {
  position: relative;
  z-index: 2;
}

.hero-banner .hero-left {
  flex: 1;
  max-width: 660px;
}

/* Light text on the dark banner overlay */
.hero-banner .hero-title {
  color: #ffffff;
}

.hero-banner .hero-description {
  color: rgba(255, 255, 255, 0.9);
}

.hero-banner .section-subtitle {
  color: var(--accent-gold);
}

.hero-banner .highlight-blue {
  color: #8fb4ff;
}

.hero-banner .badge-item {
  color: #ffffff;
}

.hero-banner .badge-item i {
  color: var(--accent-gold);
}

/* Contact hero highlight cards on the banner */
.hero-banner .highlight-card h4 {
  color: #ffffff;
}

.hero-banner .highlight-card p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-banner .hc-divider {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
  .hero-banner {
    min-height: 400px;
    padding: 50px 0;
  }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
/* Hero highlight cards */
.hero-highlights {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hc-icon.gold { background: #FEF6E6; color: var(--accent-gold); }
.hc-icon.navy { background: #EBF2FA; color: var(--dark-blue); }

.highlight-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3px;
}

.highlight-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 180px;
}

.hc-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* Get in touch + form layout */
.contact-section {
  padding: 70px 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 45px;
  align-items: start;
}

.get-in-touch .section-title {
  margin-top: 6px;
}

.contact-info-list {
  margin-top: 25px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-card:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ci-icon.ci-red { background: #FDECEC; color: var(--accent-red); }
.ci-icon.ci-blue { background: #EBF2FA; color: var(--dark-blue); }
.ci-icon.ci-gold { background: #FEF6E6; color: var(--accent-gold); }

.ci-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.ci-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.ci-content p a:hover {
  color: var(--accent-red);
}

.ci-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.ci-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  font-size: 13px;
}

.ci-social a:hover {
  background: var(--dark-blue);
  color: #fff;
}

/* Contact form */
.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.form-intro {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form .form-row-full {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dark-blue);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 4px 0 22px;
  cursor: pointer;
}

.form-consent input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.form-consent a {
  color: var(--accent-blue);
  font-weight: 600;
}

.form-consent a:hover {
  text-decoration: underline;
}

.btn-send {
  padding: 14px 32px;
  font-size: 14px;
}

/* Map section */
.map-section {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.map-card {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 14px;
  max-width: 370px;
  width: calc(100% - 40px);
}

.map-card .mc-icon {
  color: var(--accent-red);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.map-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.map-card a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-blue);
}

.map-card a:hover {
  text-decoration: underline;
}

/* ==========================================
   CIRCLE FEATURE GRID (shared: contact / about / services)
   ========================================== */
.why-choose-features {
  padding: 70px 0;
  background-color: #fff;
}

.features-circle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 35px 20px;
  margin-top: 45px;
}

.circle-feature-item {
  text-align: center;
}

.circle-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--bg-light);
  color: var(--dark-blue);
}

.circle-icon-box.icon-red { background: #FDECEC; color: var(--accent-red); }
.circle-icon-box.icon-gold { background: #FEF6E6; color: var(--accent-gold); }
.circle-icon-box.icon-blue { background: #EBF2FA; color: var(--dark-blue); }
.circle-icon-box.icon-circle-outlined {
  background: #fff;
  border: 2px solid var(--border-light);
  color: var(--dark-blue);
}

.circle-feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.circle-feature-item .small-heading {
  margin-bottom: 0;
}

.circle-feature-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 190px;
  margin: 0 auto;
}

/* Contact page responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 25px 20px;
  }

  .map-card {
    position: static;
    transform: none;
    max-width: none;
    width: 100%;
    border-radius: 0;
  }

  .hc-divider {
    display: none;
  }
}

/* ==========================================
   SHARED LAYOUT HELPERS
   ========================================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.two-col-grid.gap-50 {
  gap: 55px;
  align-items: start;
}

.body-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.rounded-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.text-center-title {
  text-align: center;
}

/* ==========================================
   ABOUT: BRAND INTRO STATEMENT
   ========================================== */
.brand-intro-section {
  padding: 70px 0 20px;
  background: #fff;
}

.brand-intro {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 18px;
}

.bi-quote {
  display: block;
  font-size: 34px;
  color: var(--accent-gold);
  opacity: 0.35;
  margin-bottom: 14px;
}

.brand-intro p {
  font-size: 16px;
  color: #475569;
  line-height: 1.95;
  margin-bottom: 18px;
}

.brand-intro p:last-child {
  margin-bottom: 0;
}

.brand-intro strong {
  color: var(--dark-blue);
  font-weight: 700;
}

.brand-intro em {
  color: var(--accent-red);
  font-style: italic;
  font-weight: 600;
}

.bi-hl {
  color: var(--accent-gold);
  font-weight: 800;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .brand-intro-section {
    padding: 50px 0 10px;
  }

  .brand-intro p {
    font-size: 14.5px;
    line-height: 1.85;
  }
}

/* ==========================================
   ABOUT: WHO WE ARE
   ========================================== */
.who-we-are-section {
  padding: 80px 0;
  background: #fff;
}

.unit-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dark-blue);
  background: #FEF6E6;
  border: 1px solid rgba(197, 139, 18, 0.32);
  padding: 8px 16px;
  border-radius: 20px;
  margin: 20px 0 4px;
}

.unit-badge i {
  color: var(--accent-gold);
  font-size: 13px;
}

.who-img-wrapper {
  margin-top: 28px;
}

/* Right column fills the left column's height (no dead space) */
.who-we-are-section .two-col-grid {
  align-items: stretch;
}

.vision-mission-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  height: 100%;
}

.vision-mission-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.vision-mission-card.card-dark-blue {
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
}

.vision-mission-card.card-gold {
  background: linear-gradient(135deg, #d59a1e 0%, #C58B12 100%);
}

/* Light variant — "Our Promise" */
.vision-mission-card.card-light {
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.card-light .vm-icon {
  background: #FDECEC;
  color: var(--accent-red);
}

.card-light .vm-content h3 {
  color: var(--dark-blue);
}

.vm-list {
  margin-top: 4px;
}

.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.vm-list li:last-child {
  margin-bottom: 0;
}

.vm-list li i {
  color: var(--accent-red);
  font-size: 11px;
  margin-top: 5px;
  flex-shrink: 0;
}

.vm-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.vm-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vm-content p {
  font-size: 13.5px;
  line-height: 1.65;
  opacity: 0.92;
}

/* ==========================================
   ABOUT: CORE VALUES & IMPACT
   ========================================== */
.values-impact-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.value-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FDECEC;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.value-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3px;
}

.value-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.impact-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--accent-gold);
}

.impact-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.impact-box h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.impact-box p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ==========================================
   ABOUT: TEAM
   ========================================== */
.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-info {
  padding: 22px 20px;
  text-align: center;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
}

.team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-red);
  margin: 4px 0 10px;
}

.team-bio {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.team-socials a:hover {
  background: var(--dark-blue);
  color: #fff;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 35px 28px 28px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.quote-mark {
  font-size: 30px;
  color: var(--accent-gold);
  opacity: 0.25;
  margin-bottom: 6px;
}

.stars {
  color: var(--accent-gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 20px;
}

.client-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
}

.client-title {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.carousel-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--accent-red);
}

/* ==========================================
   SERVICES: ADDITIONAL SERVICES
   ========================================== */
.additional-services-section {
  padding: 80px 0;
  background: #fff;
}

/* ==========================================
   SERVICES: NAVY PROCESS BLOCK
   ========================================== */
.process-navy-section {
  padding: 70px 0;
  background: #fff;
}

.navy-process-card {
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
  border-radius: 24px;
  padding: 55px 45px;
  color: #fff;
}

.navy-process-card .section-title {
  color: #fff;
}

.step-white-text h4 {
  color: #fff;
}

.step-white-text p {
  color: rgba(255, 255, 255, 0.75);
}

.step-divider.divider-white {
  border-top-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   CTA VARIANTS
   ========================================== */
.cta-banner.cta-navy {
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
}

.cta-banner.cta-bordered-white {
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.cta-icon-circle.bg-navy-icon {
  background: var(--dark-blue);
}

.text-dark-cta h3 {
  color: var(--dark-blue);
}

.text-dark-cta p {
  color: var(--text-muted);
}

.flex-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-navy-cta {
  background: var(--dark-blue);
  color: #fff;
}

.phone-box-btn {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-light);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.phone-box-btn:hover {
  background: var(--dark-blue);
  color: #fff;
}

/* ==========================================
   RESPONSIVE — INNER PAGE COMPONENTS
   ========================================== */
@media (max-width: 992px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .navy-process-card {
    padding: 40px 25px;
  }

  .flex-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .values-grid,
  .impact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .vision-mission-card {
    padding: 24px;
  }

  .navy-process-card {
    border-radius: 16px;
  }
}

/* ==========================================
   BLOG — LAYOUT
   ========================================== */
.blog-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

.blog-filter-note {
  font-size: 13px;
  color: var(--text-muted);
  background: #fff;
  border-left: 3px solid var(--accent-red);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.blog-filter-note a {
  color: var(--accent-red);
  font-weight: 600;
}

/* Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--accent-gold);
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a:hover {
  color: var(--accent-red);
}

.blog-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
}

.blog-readmore i {
  transition: transform 0.3s ease;
}

.blog-readmore:hover i {
  transform: translateX(4px);
}

.no-results {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.no-results a {
  color: var(--accent-red);
  font-weight: 600;
}

/* ==========================================
   BLOG — SIDEBAR
   ========================================== */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-red);
}

.sidebar-search {
  display: flex;
}

.sidebar-search input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-family: var(--font-main);
  font-size: 13px;
  background: var(--bg-light);
}

.sidebar-search input:focus {
  outline: none;
  border-color: var(--dark-blue);
}

.sidebar-search button {
  border: none;
  background: var(--dark-blue);
  color: #fff;
  padding: 0 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
}

.sidebar-search button:hover {
  background: var(--primary-navy);
}

.recent-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.recent-post:first-child { padding-top: 0; }
.recent-post:last-child { padding-bottom: 0; border-bottom: none; }

/* The <a> is the flex child — it must not shrink, or the thumb squashes */
.recent-post > a {
  display: block;
  flex: 0 0 72px;
  width: 72px;
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
}

.recent-post img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Text column must be allowed to shrink instead */
.recent-post > div {
  min-width: 0;
}

.recent-post h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.45;
  margin-bottom: 6px;
}

.recent-post h5 a:hover { color: var(--accent-red); }

.recent-post .rp-date {
  font-size: 11px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.recent-post .rp-date i { color: var(--accent-gold); }

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: padding 0.25s ease, color 0.25s ease;
}

.category-list li:last-child a { border-bottom: none; padding-bottom: 0; }
.category-list li:first-child a { padding-top: 0; }

.category-list li a:hover {
  color: var(--accent-red);
  padding-left: 6px;
}

.category-list .count {
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-cloud a {
  font-size: 12px;
  padding: 7px 14px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background: var(--accent-red);
  color: #fff;
}

.sidebar-cta {
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
  color: #fff;
  text-align: center;
}

.sidebar-cta .widget-title {
  color: #fff;
}

.sidebar-cta .widget-title::after {
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
}

.sidebar-cta p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ==========================================
   BLOG — ARTICLE DETAILS
   ========================================== */
.blog-article {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
}

.article-hero {
  height: 380px;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 35px 42px 45px;
}

.article-breadcrumb {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.article-breadcrumb a:hover { color: var(--accent-red); }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-meta i { color: var(--accent-gold); }

.article-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.3;
  margin-bottom: 26px;
}

.article-content p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 18px;
}

.article-content h2 {
  font-size: 22px;
  color: var(--dark-blue);
  font-weight: 700;
  margin: 32px 0 14px;
}

.article-content h3 {
  font-size: 18px;
  color: var(--dark-blue);
  font-weight: 700;
  margin: 24px 0 12px;
}

.article-content ul {
  margin: 0 0 20px;
}

.article-content ul li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 10px;
}

.article-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-red);
  font-size: 12px;
}

.article-content blockquote {
  border-left: 4px solid var(--accent-gold);
  background: var(--bg-light);
  padding: 18px 22px;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark-blue);
  border-radius: 0 10px 10px 0;
  font-size: 14.5px;
  line-height: 1.7;
}

.article-tags,
.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.article-tags {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.article-share {
  margin-top: 22px;
}

.tags-label {
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 13px;
  margin-right: 4px;
}

.article-tags a {
  font-size: 12px;
  padding: 7px 14px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 20px;
}

.article-tags a:hover {
  background: var(--accent-red);
  color: #fff;
}

.article-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.article-share a:hover {
  background: var(--dark-blue);
  color: #fff;
}

.article-author {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 22px;
  margin-top: 30px;
}

.aa-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.article-author h5 {
  font-size: 15px;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 3px;
}

.article-author p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.article-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  max-width: 48%;
}

.article-nav a span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-nav a:hover { color: var(--accent-red); }
.article-nav .an-next { text-align: right; margin-left: auto; }

/* ==========================================
   BLOG — RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 24px 20px 32px;
  }

  .article-title {
    font-size: 23px;
  }

  .article-hero {
    height: 220px;
  }

  .article-nav a {
    max-width: 47%;
    font-size: 12px;
  }
}

/* ==========================================
   HOME — LATEST BLOG SLIDER
   ========================================== */
.home-blog-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.blog-slider-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-blue);
  background: #fff;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--dark-blue);
  color: #fff;
}

.blog-slider {
  overflow: hidden;
}

.blog-slider-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.blog-slider-track::-webkit-scrollbar {
  display: none;
}

.blog-slider-track > .blog-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}

@media (max-width: 992px) {
  .blog-slider-track > .blog-card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 600px) {
  .blog-slider-track > .blog-card {
    flex-basis: 86%;
  }

  .blog-slider-nav .view-all-btn {
    display: none;
  }
}

/* ==========================================
   CONSULTATION POPUP MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(4, 12, 30, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: var(--accent-red);
}

.modal-head {
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
  color: #fff;
  padding: 28px 30px 24px;
}

.modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.modal-head h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 7px 0 6px;
}

.modal-head p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
}

.modal-form {
  padding: 26px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.modal-form textarea {
  min-height: 90px;
  resize: vertical;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--dark-blue);
  background: #fff;
}

.modal-submit {
  width: 100%;
  padding: 13px;
  margin-top: 2px;
}

.modal-alt {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
}

.modal-alt a {
  color: var(--accent-red);
  font-weight: 700;
}

/* Success state */
.modal-success {
  display: none;
  padding: 44px 30px;
  text-align: center;
}

.modal-overlay.success .modal-form { display: none; }
.modal-overlay.success .modal-success { display: block; }

.ms-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E6F6EE;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.modal-success h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.modal-success p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Consultation CTA inside the mobile menu */
.nav-cta-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .nav-cta-mobile {
    display: flex;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 600px) {
  .mf-row {
    grid-template-columns: 1fr;
  }

  .modal-head {
    padding: 24px 22px 20px;
  }

  .modal-form {
    padding: 22px;
  }
}

/* ==========================================
   FLOATING WHATSAPP + CALL BUTTONS
   ========================================== */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.09);
  color: #fff;
}

.float-whatsapp {
  background: #25D366;
}

.float-call {
  background: var(--accent-red);
  font-size: 21px;
  animation: floatPulse 2.2s infinite;
}

@keyframes floatPulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 35, 45, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(217, 35, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 35, 45, 0); }
}

@media (max-width: 600px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .float-call {
    font-size: 19px;
  }
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* Left info / help panel */
.faq-aside {
  position: sticky;
  top: 100px;
}

.faq-aside h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
  margin: 6px 0 12px;
}

.faq-aside > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.faq-help-card {
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
}

.fhc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.faq-help-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-help-card p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Filter tabs */
.faq-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

/* Accordion */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.45;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--accent-red);
}

.faq-item.active .faq-q-icon {
  background: var(--accent-red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }
}

/* ==========================================
   GALLERY — TABS & FILTERS
   ========================================== */
.gallery-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-toggle:hover {
  border-color: var(--dark-blue);
}

.gallery-toggle.active {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--accent-red);
}

.filter-btn.active {
  background: var(--accent-red);
  color: #fff;
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

/* ==========================================
   GALLERY — PHOTO MASONRY GRID
   ========================================== */
.photo-grid {
  column-width: 260px;
  column-gap: 18px;
}

.photo-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.07);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 27, 84, 0.78) 0%, rgba(0, 27, 84, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.po-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: transform 0.3s ease;
}

.photo-item:hover .po-icon {
  transform: translate(-50%, -50%) scale(1);
}

.po-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================
   GALLERY — VIDEO GRID
   ========================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 84, 0.25);
  transition: background 0.3s ease;
}

.video-card:hover .video-thumb::after {
  background: rgba(0, 27, 84, 0.10);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 6px 16px rgba(217, 35, 45, 0.45);
  transition: transform 0.3s ease;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-info {
  padding: 18px 20px;
}

.video-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 6px;
}

.video-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.video-info span i {
  color: var(--accent-gold);
}

/* ==========================================
   GALLERY — LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 12, 30, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lightbox.open {
  display: flex;
}

.lb-content {
  position: relative;
  max-width: 920px;
  width: 100%;
}

.lb-image {
  display: none;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 10px;
}

.lb-video {
  display: none;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.lb-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.lightbox.photo-mode .lb-image { display: block; }
.lightbox.video-mode .lb-video { display: block; }

.lb-caption {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.9;
}

.lb-close {
  position: fixed;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lb-close:hover {
  background: var(--accent-red);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lb-prev:hover,
.lb-next:hover {
  background: var(--accent-red);
}

.lb-prev { left: 22px; }
.lb-next { right: 22px; }

.lightbox.video-mode .lb-prev,
.lightbox.video-mode .lb-next {
  display: none;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
}

/* ==========================================
   LEGAL PAGES (Privacy / Terms)
   ========================================== */
.legal-section {
  padding: 70px 0;
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 45px;
  align-items: start;
}

/* Left sticky "On This Page" nav */
.legal-aside {
  position: sticky;
  top: 100px;
}

.legal-toc-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.legal-toc-card h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.legal-toc-card h4 i {
  color: var(--accent-red);
  font-size: 13px;
}

#legal-toc li a {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
}

#legal-toc li a:hover {
  color: var(--accent-red);
  background: var(--bg-light);
}

#legal-toc li a.active {
  color: var(--accent-red);
  background: #FDECEC;
  border-left-color: var(--accent-red);
  font-weight: 600;
}

.legal-content {
  max-width: none;
  margin: 0;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-red);
  background: #FDECEC;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.legal-content > p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 18px;
}

.legal-content h2 {
  font-size: 20px;
  color: var(--dark-blue);
  font-weight: 700;
  margin: 34px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: 110px;
}

.legal-content h3 {
  font-size: 16px;
  color: var(--dark-blue);
  font-weight: 700;
  margin: 22px 0 10px;
}

.legal-content ul {
  list-style: disc;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content ul li {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 9px;
}

.legal-content a {
  color: var(--accent-blue);
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .legal-content h2 {
    font-size: 18px;
  }

  .legal-content > p,
  .legal-content ul li {
    font-size: 13.5px;
  }
}

/* ==========================================
   SERVICE DETAILS PAGE
   ========================================== */
.service-article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  padding: 36px 40px 42px;
}

.service-breadcrumb {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.service-breadcrumb a:hover {
  color: var(--accent-red);
}

.service-lead-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.service-lead-icon.icon-red { background: #FDECEC; color: var(--accent-red); }
.service-lead-icon.icon-gold { background: #FEF6E6; color: var(--accent-gold); }
.service-lead-icon.icon-blue { background: #EBF2FA; color: var(--dark-blue); }

/* Service header row (icon + title + tagline) */
.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.service-h-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 6px;
}

.service-h-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .service-header {
    gap: 16px;
  }

  .service-lead-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }

  .service-h-title {
    font-size: 20px;
  }
}

.service-intro p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 16px;
}

.service-article h2 {
  font-size: 21px;
  color: var(--dark-blue);
  font-weight: 700;
  margin: 32px 0 18px;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
}

.service-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.service-feature i {
  color: var(--accent-red);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 22px;
}

.benefit-card .bc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
}

.bc-icon.icon-red { background: #FDECEC; color: var(--accent-red); }
.bc-icon.icon-gold { background: #FEF6E6; color: var(--accent-gold); }
.bc-icon.icon-blue { background: #EBF2FA; color: var(--dark-blue); }

.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-cta-box {
  margin-top: 32px;
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
  border-radius: 14px;
  padding: 28px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-cta-box h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-cta-box p {
  font-size: 13px;
  opacity: 0.9;
}

/* FAQ accordion nested inside an SEO article card */
.seo-faq .faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.seo-faq .faq-item.active {
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.seo-faq .faq-q-icon {
  background: #fff;
}

.seo-faq .faq-answer p a {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Sidebar services submenu */
.service-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.service-nav-list li a .chev {
  margin-left: auto;
  font-size: 10px;
  color: var(--text-muted);
}

.service-nav-list li a:hover {
  background: var(--bg-light);
  color: var(--accent-red);
}

.service-nav-list li.active a {
  background: var(--dark-blue);
  color: #fff;
}

.service-nav-list li.active a i {
  color: #fff;
}

.service-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 9px 0;
}

.service-contact-list li i {
  color: var(--accent-gold);
  width: 16px;
}

.service-contact-list li a:hover {
  color: var(--accent-red);
}

@media (max-width: 600px) {
  .service-article {
    padding: 26px 22px 30px;
  }

  .service-features-grid,
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-box {
    padding: 24px;
  }
}

/* Related services strip */
.related-services-section {
  padding: 60px 0 70px;
  background: #fff;
}

.related-header {
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
  border-color: transparent;
}

.related-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.related-icon.icon-red { background: #FDECEC; color: var(--accent-red); }
.related-icon.icon-gold { background: #FEF6E6; color: var(--accent-gold); }
.related-icon.icon-blue { background: #EBF2FA; color: var(--dark-blue); }

.related-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 14px;
}

.related-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.related-link i {
  transition: transform 0.3s ease;
}

.related-card:hover .related-link i {
  transform: translateX(4px);
}

/* Linkable additional-service items (services.html) */
a.circle-feature-item .circle-icon-box {
  transition: background 0.3s ease, color 0.3s ease;
}

a.circle-feature-item:hover .circle-icon-box {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: #fff;
}

a.circle-feature-item:hover .small-heading {
  color: var(--accent-red);
}

/* ==========================================
   TAX CALCULATORS
   ========================================== */
.calc-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.calc-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.calc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-tab:hover {
  border-color: var(--dark-blue);
}

.calc-tab.active {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
}

.calc-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.calc-inputs {
  padding: 36px 34px;
}

.calc-results {
  padding: 36px 34px;
  background: linear-gradient(150deg, #082366 0%, #001B54 100%);
  color: #fff;
}

.calc-results h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.92;
}

.calc-field {
  margin-bottom: 22px;
}

.calc-field > label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 9px;
}

.calc-field input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.calc-field input[type="number"]:focus {
  outline: none;
  border-color: var(--dark-blue);
  background: #fff;
}

.checkbox-field > label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-field input {
  width: auto;
}

.regime-toggle,
.gst-type-toggle {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.regime-btn,
.gst-type-btn {
  flex: 1;
  padding: 12px 8px;
  background: #fff;
  border: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.regime-btn.active,
.gst-type-btn.active {
  background: var(--dark-blue);
  color: #fff;
}

.rate-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rate-btn {
  padding: 8px 18px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.rate-btn.active {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.result-row span {
  opacity: 0.85;
}

.result-row strong {
  font-weight: 700;
}

.result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 18px 20px;
}

.result-total span {
  font-size: 14px;
  font-weight: 600;
}

.result-total strong {
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
}

.calc-note {
  font-size: 11.5px;
  line-height: 1.6;
  opacity: 0.7;
  margin-top: 20px;
}

/* Segmented toggle (HRA city) reuses regime button look */
.seg-toggle {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.city-btn {
  flex: 1;
  padding: 12px 8px;
  background: #fff;
  border: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.city-btn.active {
  background: var(--dark-blue);
  color: #fff;
}

/* Donut chart (pure CSS conic-gradient) */
.calc-chart {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.donut {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: conic-gradient(#5B8DD6 0 50%, #E0A82E 50% 100%);
}

.donut::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #001B54;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.donut-legend span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ldot {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}

.field-hint {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 11px;
}

/* Income Tax — New vs Old regime comparison bars */
.regime-compare {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rc-title {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}

.rc-bar {
  margin-bottom: 15px;
}

.rc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 7px;
}

.rc-label span {
  opacity: 0.85;
}

.rc-label strong {
  font-weight: 700;
}

.rc-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.rc-fill {
  height: 100%;
  width: 0;
  border-radius: 8px;
  transition: width 0.5s ease;
}

.rc-fill.rc-new { background: #5B8DD6; }
.rc-fill.rc-old { background: #E0A82E; }

.rc-bar.rc-win .rc-label strong {
  color: #5FE0A0;
}

.rc-verdict {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rc-verdict::before {
  content: '\f0eb';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #5FE0A0;
}

/* ==========================================
   DUE DATE CALENDAR
   ========================================== */
.dd-section {
  padding: 70px 0;
  background: var(--bg-light);
}

/* Next due highlight */
.dd-next {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, #082366 0%, #001B54 100%);
  color: #fff;
  border-radius: 16px;
  padding: 26px 32px;
  margin-bottom: 34px;
}

.ddn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.ddn-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}

.dd-next h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 3px;
}

.dd-next p {
  font-size: 13px;
  opacity: 0.9;
}

/* Controls */
.dd-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.dd-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dd-month-select {
  padding: 11px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  background: #fff;
  cursor: pointer;
}

.dd-month-select:focus {
  outline: none;
  border-color: var(--dark-blue);
}

/* Legend */
.dd-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
  font-size: 12px;
  color: var(--text-muted);
}

.dd-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lg-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.lg-up { background: #16a34a; }
.lg-soon { background: var(--accent-gold); }
.lg-past { background: #cbd5e1; }

/* Cards */
.dd-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dd-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--border-light);
}

.dd-card.st-past { opacity: 0.7; border-left-color: #cbd5e1; }
.dd-card.st-soon { border-left-color: var(--accent-gold); }
.dd-card.st-up { border-left-color: #16a34a; }

.dd-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 10px 0;
}

.dd-day {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.dd-mon {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.dd-body {
  flex-grow: 1;
}

.dd-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.cat-gst { background: #FDECEC; color: var(--accent-red); }
.cat-tds { background: #FEF6E6; color: var(--accent-gold); }
.cat-itax { background: #EBF2FA; color: var(--dark-blue); }
.cat-pf { background: #E6F6EE; color: #16a34a; }
.cat-roc { background: #F1EAFB; color: #7c3aed; }

.dd-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
  line-height: 1.4;
}

.dd-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.dd-status {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
}

.st-past .dd-status { background: #f1f5f9; color: var(--text-muted); }
.st-soon .dd-status { background: #FEF6E6; color: var(--accent-gold); }
.st-up .dd-status { background: #E6F6EE; color: #16a34a; }

@media (max-width: 768px) {
  .dd-list {
    grid-template-columns: 1fr;
  }

  .dd-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .dd-month-select {
    width: 100%;
  }
}

/* ==========================================
   REVIEWS / TESTIMONIALS PAGE
   ========================================== */
.reviews-section {
  padding: 70px 0;
  background: var(--bg-light);
}

/* Rating summary */
.review-summary {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 32px 34px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  margin-bottom: 34px;
}

.rs-score {
  text-align: center;
  border-right: 1px solid var(--border-light);
  padding-right: 30px;
}

.rs-avg {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.rs-stars {
  color: var(--accent-gold);
  font-size: 17px;
  letter-spacing: 3px;
  margin: 10px 0 6px;
}

.star-off {
  color: #d8dee9;
}

.rs-count {
  font-size: 12.5px;
  color: var(--text-muted);
}

.rs-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.rs-bar-label {
  width: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.rs-bar-label i {
  color: var(--accent-gold);
  font-size: 10px;
}

.rs-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-light);
  border-radius: 6px;
  overflow: hidden;
}

.rs-bar-fill {
  display: block;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 6px;
}

.rs-bar-num {
  width: 26px;
  text-align: right;
  font-weight: 600;
}

/* Filter */
.review-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

/* Cards */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.11);
}

.rc-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--accent-gold);
  opacity: 0.18;
}

.rc-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-red);
  background: #FDECEC;
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.rc-stars {
  color: var(--accent-gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rc-text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.rc-foot {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.av-navy { background: var(--dark-blue); }
.av-red { background: var(--accent-red); }
.av-gold { background: var(--accent-gold); }

.rc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-blue);
}

.rc-role {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.rc-date {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  align-self: flex-start;
}

@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .review-summary {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .rs-score {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0 0 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   DOWNLOADS PAGE
   ========================================== */
.dl-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.dl-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.dl-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}

.dl-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.dl-pdf { background: #FDECEC; color: #d9232d; }
.dl-doc { background: #EBF2FA; color: #1c52a2; }
.dl-xls { background: #E6F6EE; color: #16a34a; }

.dl-body {
  flex-grow: 1;
  min-width: 0;
}

.dl-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dl-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 5px;
}

.dl-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

.dl-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.dl-meta span + span {
  padding-left: 14px;
  border-left: 1px solid var(--border-light);
}

.dl-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--dark-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dl-btn:hover {
  background: var(--accent-red);
  color: #fff;
  transform: scale(1.06);
}

.dl-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  background: #fff;
  border-left: 3px solid var(--accent-gold);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.dl-note i {
  color: var(--accent-gold);
  font-size: 16px;
}

.dl-note a {
  color: var(--accent-red);
  font-weight: 600;
}

.dl-note a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .dl-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .dl-card {
    flex-wrap: wrap;
    gap: 14px;
  }

  .dl-btn {
    width: 100%;
    height: 40px;
  }
}

/* ==========================================
   HOME — CORE EXPERTISE (featured services)
   ========================================== */
.expertise-section {
  padding: 70px 0 40px;
  background: #fff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.expertise-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 38px 28px 32px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-blue));
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.expertise-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--accent-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.expertise-icon {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  margin: 8px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.expertise-icon.icon-red { background: #FDECEC; color: var(--accent-red); }
.expertise-icon.icon-gold { background: #FEF6E6; color: var(--accent-gold); }
.expertise-icon.icon-blue { background: #EBF2FA; color: var(--dark-blue); }

.expertise-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.expertise-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.expertise-link i {
  transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-link i {
  transform: translateX(4px);
}

/* Featured star in service sidebar nav */
.nav-feat-star {
  margin-left: auto;
  font-size: 11px;
  color: var(--accent-gold);
}

.service-nav-list li.active a .nav-feat-star {
  color: #fff;
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .calc-card {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   MOBILE-FIRST REFINEMENTS
   Fluid typography + small-screen fixes applied last so they win the cascade.
   ========================================================================== */

/* ---- Global safety: never allow horizontal overflow ---- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  overflow-x: hidden;
}

/* Allow grid/flex children to shrink (scoped — a global reset clips nav text) */
.blog-layout > *,
.contact-grid > *,
.two-col-grid > *,
.calc-card > *,
.dd-card > *,
.review-card > * {
  min-width: 0;
}

/* Nav labels must never be squeezed or wrapped */
.nav-link {
  white-space: nowrap;
}

img,
iframe,
video {
  max-width: 100%;
}

/* Long emails / URLs must never push the layout wide */
p, li, h1, h2, h3, h4, h5, td, span, a {
  overflow-wrap: break-word;
}

/* ---- Fluid typography: scales smoothly from phone to desktop ---- */
.hero-title { font-size: clamp(26px, 6.5vw, 36px); }
.carousel-caption h2 { font-size: clamp(22px, 5.5vw, 40px); }
.section-title { font-size: clamp(20px, 4.2vw, 26px); }
.why-us-title { font-size: clamp(22px, 4.6vw, 32px); }
.article-title { font-size: clamp(21px, 4.6vw, 30px); }
.service-h-title { font-size: clamp(19px, 4vw, 26px); }
.faq-aside h2 { font-size: clamp(21px, 4.4vw, 26px); }
.expertise-card h3 { font-size: clamp(17px, 3.4vw, 19px); }
.cta-text h3 { font-size: clamp(17px, 3.6vw, 20px); }
.modal-head h3 { font-size: clamp(19px, 4.4vw, 22px); }

/* Home banner carousel scales with the viewport */
.home-carousel { height: clamp(330px, 58vh, 560px); }

/* ==========================================================================
   SMALL PHONES (<= 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .container,
  .why-us-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Prevent iOS auto-zoom on focus — inputs must be >= 16px */
  input,
  select,
  textarea,
  .contact-form input,
  .contact-form textarea,
  .modal-form input,
  .modal-form select,
  .modal-form textarea,
  .calc-field input[type="number"],
  .sidebar-search input {
    font-size: 16px;
  }

  /* Comfortable touch targets */
  .social-links a,
  .ci-social a,
  .team-socials a,
  .article-share a {
    width: 40px;
    height: 40px;
  }

  /* Top bar icons stay compact — space is tight up there */
  .topbar-social a {
    width: 27px;
    height: 27px;
    font-size: 10px;
  }

  /* --- Header / top bar --- */
  .topbar {
    font-size: 11px;
  }

  .topbar-left {
    gap: 14px;
  }

  /* --- Home: carousel --- */
  .carousel-caption p {
    font-size: 12.5px;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .carousel-dots-nav {
    bottom: 14px;
  }

  /* --- Home: core expertise --- */
  .expertise-card {
    padding: 30px 22px 26px;
  }

  .expertise-icon {
    width: 70px;
    height: 70px;
    font-size: 29px;
  }

  /* --- Home: blog slider --- */
  .blog-slider-track > .blog-card {
    flex-basis: 88%;
  }

  .blog-slider-nav {
    gap: 8px;
  }

  /* --- Section headers --- */
  .section-desc {
    font-size: 12.5px;
  }

  /* --- Service cards --- */
  .service-card {
    padding: 26px 20px;
  }

  .service-card::before {
    height: 150px;
  }

  /* --- Blog --- */
  .blog-card-img {
    height: 190px;
  }

  .article-nav {
    flex-direction: column;
    gap: 14px;
  }

  .article-nav a {
    max-width: 100%;
  }

  .article-nav .an-next {
    margin-left: 0;
    text-align: left;
  }

  /* --- Calculators --- */
  .calc-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .calc-inputs,
  .calc-results {
    padding: 26px 20px;
  }

  .result-total {
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px;
  }

  .result-total strong {
    font-size: 21px;
    white-space: normal;
  }

  .calc-chart {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .donut {
    width: 96px;
    height: 96px;
  }

  .donut::before {
    inset: 20px;
  }

  .rc-verdict,
  .rs-bar-row {
    font-size: 12px;
  }

  /* --- Due date calendar --- */
  .dd-next {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 22px;
  }

  .dd-card {
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px;
  }

  .dd-status {
    order: 3;
    margin-left: 74px;
  }

  /* --- Reviews --- */
  .rs-avg {
    font-size: 42px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .rc-foot {
    flex-wrap: wrap;
  }

  .rc-date {
    margin-left: 57px;
    width: 100%;
  }

  /* --- Contact --- */
  .map-section iframe {
    height: 300px;
  }

  .hero-highlights {
    gap: 18px;
  }

  .highlight-card p {
    max-width: none;
  }

  /* --- Downloads --- */
  .dl-card {
    padding: 18px;
  }

  /* --- Team --- */
  .team-img {
    height: 240px;
  }

  /* --- Gallery lightbox --- */
  .lb-prev,
  .lb-next {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .lightbox {
    padding: 60px 14px 30px;
  }

  /* --- Consultation modal --- */
  .modal-overlay {
    padding: 14px;
    align-items: flex-start;
  }

  .modal-card {
    margin: 10px 0;
  }

  /* --- Legal / SEO pages --- */
  .legal-toc-card {
    padding: 20px 16px;
  }

  .service-article {
    padding: 24px 18px 28px;
  }

  .service-cta-box {
    padding: 22px 20px;
    text-align: left;
  }

  /* --- Footer --- */
  .footer-seo {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-seo a:not(:last-child)::after {
    content: none;
  }

  .footer-grid {
    gap: 32px;
  }

  /* --- Floating buttons: keep clear of thumbs --- */
  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

/* ==========================================================================
   VERY SMALL PHONES (<= 360px)
   ========================================================================== */
@media (max-width: 360px) {
  .container,
  .why-us-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-img {
    height: 42px;
  }

  .topbar-address,
  .topbar-hours {
    display: none;
  }

  .topbar {
    font-size: 10.5px;
  }

  .topbar-left {
    gap: 10px;
  }

  .topbar-left i {
    font-size: 10px;
  }

  .topbar-social a {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  .topbar-social {
    gap: 5px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .dd-status {
    margin-left: 0;
  }

  .rc-date {
    margin-left: 0;
  }

  .calc-tabs,
  .gallery-tabs {
    gap: 8px;
  }
}

/* Laptop range: tighten the nav so 8 items + CTA fit without clipping */
@media (min-width: 1101px) and (max-width: 1300px) {
  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: 13px;
  }

  .btn-primary-nav {
    padding: 10px 16px;
    font-size: 13px;
  }

  .logo-img {
    height: 52px;
  }
}

/* Keep right-side dropdowns inside the viewport */
.nav-item:nth-last-child(-n+2) .dropdown-menu {
  left: auto;
  right: 0;
}

/* ==========================================
   GOOGLE REVIEWS PANEL (testimonials page)
   ========================================== */
.google-panel {
  margin-bottom: 34px;
}

.gr-badge {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  margin-bottom: 22px;
}

.gr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-blue);
  padding-right: 30px;
  border-right: 1px solid var(--border-light);
}

.gr-brand i {
  font-size: 26px;
  color: #4285F4;
}

.gr-score {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gr-rating {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.gr-stars {
  color: #FBBC04;
  font-size: 18px;
  letter-spacing: 2px;
}

.gr-count {
  font-size: 12.5px;
  color: var(--text-muted);
}

.gr-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}

/* Individual Google review cards */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gr-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.gr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.gr-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-blue);
}

.gr-date {
  font-size: 11.5px;
  color: var(--text-muted);
}

.gr-mark {
  margin-left: auto;
  font-size: 15px;
  color: #4285F4;
}

.gr-card-stars {
  color: #FBBC04;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gr-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .gr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gr-actions {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .gr-grid {
    grid-template-columns: 1fr;
  }

  .gr-badge {
    gap: 18px;
    padding: 22px;
  }

  .gr-brand {
    border-right: none;
    padding-right: 0;
  }
}

/* ==========================================
   BREADCRUMB BAR (sits between hero and content)
   ========================================== */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
}

.breadcrumb-bar .crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.breadcrumb-bar .crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.breadcrumb-bar .crumbs a:hover {
  color: var(--accent-red);
}

.breadcrumb-bar .crumbs .sep {
  font-size: 9px;
  opacity: 0.45;
}

.breadcrumb-bar .crumbs .current {
  color: var(--dark-blue);
  font-weight: 600;
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .breadcrumb-bar .crumbs .current {
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .breadcrumb-bar {
    padding: 12px 0;
  }

  .breadcrumb-bar .crumbs {
    font-size: 11.5px;
    gap: 7px;
  }
}

/* Wider container only on very large screens (1080p @ 100% zoom).
   Below ~1750px viewport — which includes 1080p @ 125% zoom (1536px) —
   fall back to the original 1340px so margins stay comfortable. */
@media (max-width: 1750px) {
  .container,
  .why-us-container,
  .carousel-caption {
    max-width: 1340px;
  }
}

/* ==========================================
   TESTIMONIAL SLIDER (about-us page)
   ========================================== */
.t-slider {
  position: relative;
  margin-top: 40px;
}

.t-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.t-track::-webkit-scrollbar {
  display: none;
}

.t-track > .testimonial-card {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
  text-align: left;
}

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-blue);
  background: #fff;
  color: var(--dark-blue);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.t-arrow:hover {
  background: var(--dark-blue);
  color: #fff;
}

.t-arrow.prev { left: -14px; }
.t-arrow.next { right: -14px; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.t-dots .t-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.t-dots .t-dot.active {
  background: var(--accent-red);
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .t-track > .testimonial-card {
    flex-basis: calc((100% - 26px) / 2);
  }
}

@media (max-width: 600px) {
  .t-track > .testimonial-card {
    flex-basis: 88%;
  }

  .t-arrow.prev { left: -4px; }
  .t-arrow.next { right: -4px; }
}
