/*
 * Sai Construction - Custom Style System
 * -------------------------------------------------------------
 * Brand Kit & Aesthetic Family: Mixed Light + Dark Theme
 * Typography: Outfit (Headings) + Inter (Body)
 * -------------------------------------------------------------
 */

/* 1. DESIGN TOKENS & ROOT CONFIGURATION */
:root {
  --brand-blue: #0C39C9;
  --brand-blue-hover: #002060;
  --brand-navy: #0A192F;
  --brand-navy-light: #172A45;
  --brand-amber: #F59E0B;
  --brand-amber-hover: #D97706;
  
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-cool: #EFF4FC;
  --bg-dark-section: #0B192E;
  
  --text-primary: #1E293B;
  --text-navy: #0A192F;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  
  --border-color: #E2E8F0;
  --border-blue-tint: rgba(12, 57, 201, 0.1);
  
  --radius-outer: 2rem;
  --radius-inner: calc(2rem - 0.75rem);
  
  --transition-fluid: all 0.7s cubic-bezier(0.32, 0.72, 0, 1);
  --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 2. BASE RESET & TYPOGRAPHY STANDARDS */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(12, 57, 201, 0.012) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(12, 57, 201, 0.012) 0%, transparent 40%);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: rgba(12, 57, 201, 0.15);
  color: var(--brand-blue);
}

/* Typography Hierarchy Constraints */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-navy);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

h2 {
  font-size: 40px !important;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p, li {
  font-size: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--brand-blue);
  transition: var(--transition-fluid);
  text-decoration: none;
}
a:hover {
  color: var(--brand-blue-hover);
}

/* Spacing Systems - Page Breathability */
section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
  opacity: 0.7;
  display: none; /* Hidden because sections alternate background colors */
}

/* Exclude specific sections from custom bottom border */
.hero-wrapper::after,
.stat-wrapper::after,
.dark-section::after {
  display: none;
}

/* 3. DOUBLE-BEZEL NESTED CARD ARCHITECTURE */
.outer-shell {
  background: rgba(12, 57, 201, 0.02);
  border: 1px solid var(--border-blue-tint);
  padding: 0.75rem;
  border-radius: var(--radius-outer);
  height: 100%;
  transition: var(--transition-fluid);
  display: flex;
  flex-direction: column;
  perspective: 1000px;
}

.outer-shell:hover {
  transform: translateY(-8px) scale(1.01) rotateX(1deg) rotateY(1deg);
  box-shadow: 0 30px 60px -15px rgba(10, 25, 47, 0.1);
  border-color: rgba(12, 57, 201, 0.35);
  background: rgba(12, 57, 201, 0.05);
}

.inner-core {
  background: var(--bg-white);
  border-radius: var(--radius-inner);
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Dark mode variations for outer/inner wrappers */
.dark-section .outer-shell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-section .outer-shell:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.dark-section .inner-core {
  background: var(--brand-navy-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 4. BUTTONS & CALLS TO ACTION (Haptic Pill Buttons) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: var(--transition-fluid);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-pill-primary {
  background-color: var(--brand-blue);
  color: var(--bg-white) !important;
  border: 1px solid var(--brand-blue);
  box-shadow: 0 4px 14px rgba(12, 57, 201, 0.3);
}

.btn-pill-primary:hover {
  background-color: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 57, 201, 0.45);
}

.btn-pill-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 14px rgba(12, 57, 201, 0.25);
}

.btn-pill-secondary {
  background-color: transparent;
  color: var(--text-navy) !important;
  border: 1px solid var(--border-color);
}

.btn-pill-secondary:hover {
  background-color: var(--bg-cool);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.btn-pill-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* Button nested Arrow morph details */
.btn-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: var(--transition-fluid);
}

.btn-pill-primary:hover .btn-arrow-circle {
  transform: translate(2px, -2px);
  background-color: rgba(255, 255, 255, 0.35);
}

.btn-pill-secondary .btn-arrow-circle {
  background-color: rgba(12, 57, 201, 0.1);
}

.btn-pill-secondary:hover .btn-arrow-circle {
  transform: translate(2px, -2px);
  background-color: rgba(12, 57, 201, 0.15);
}

/* 5. FLOATING GLASS NAVBAR & MORPHING MOBILE DRAWER */
.glass-nav {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: var(--transition-fluid);
}

.glass-nav-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.65rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.08);
  transition: var(--transition-fluid);
}

/* Navbar morphs slightly on scroll */
.glass-nav.scrolled .glass-nav-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1.75rem;
  box-shadow: 0 10px 40px -10px rgba(10, 25, 47, 0.15);
}

.glass-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.glass-logo-text span {
  color: var(--brand-blue);
  font-weight: 500;
}

.nav-link-custom {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-navy);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: var(--transition-fluid);
}

.nav-link-custom:hover {
  color: var(--brand-blue);
  background: rgba(12, 57, 201, 0.05);
}

/* Hamburger animation */
.hamburger-btn {
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 20px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--brand-navy);
  transition: var(--transition-fluid);
  transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Staggered Fullscreen Menu Overlay */
.nav-overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 1025;
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fluid);
}

.nav-overlay-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-menu .nav-list {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.nav-overlay-menu .nav-item {
  margin: 1.5rem 0;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-overlay-menu.active .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }
.nav-overlay-menu.active .nav-item:nth-child(7) { transition-delay: 0.4s; }

.nav-overlay-menu .nav-link-overlay {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bg-light);
  text-decoration: none;
  transition: var(--transition-fluid);
}

.nav-overlay-menu .nav-link-overlay:hover {
  color: var(--brand-blue);
  letter-spacing: 0.05em;
}

/* 6. HERO SECTION CAROUSEL & CONTENT SLIDES */
.hero-wrapper {
  position: relative;
  min-height: 100dvh;
  background-color: var(--brand-navy);
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7) contrast(1.05);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active .hero-slide-bg {
  transform: scale(1.08);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.25) 0%, rgba(10, 25, 47, 0.65) 100%);
}

.hero-content-container {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  padding-top: 130px;
  padding-bottom: 140px; /* Offsets the overlap from stat-wrapper (negative margin of 5rem/80px) and adds breathing room */
}

.hero-content-inner {
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(12, 57, 201, 0.25);
  border: 1px solid rgba(12, 57, 201, 0.4);
  color: #8fa3ff;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--bg-white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 62ch;
}

/* Custom Carousel Controls (Swiper Side Buttons) */
.hero-ctrl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 25, 47, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fluid);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-ctrl-prev {
  left: 2.5rem;
}

.hero-ctrl-next {
  right: 2.5rem;
}

.hero-ctrl-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 25px rgba(12, 57, 201, 0.45);
}

.hero-ctrl-btn:active {
  transform: translateY(-50%) scale(0.98);
}

/* 7. REVEAL ANIMATIONS (INTERSECTION OBSERVER) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 1.2s cubic-bezier(0.32, 0.72, 0, 1), transform 1.2s cubic-bezier(0.32, 0.72, 0, 1), filter 1.2s cubic-bezier(0.32, 0.72, 0, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.32, 0.72, 0, 1), transform 1s cubic-bezier(0.32, 0.72, 0, 1);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }

/* 8. SEGMENTED SECTION DESIGNS */

/* Trust & Credentials Stats Grid */
.stat-wrapper {
  margin-top: -3.5rem;
  position: relative;
  z-index: 15;
  padding-top: 0;
  padding-bottom: 0;
}

#about {
  background-color: var(--bg-white);
  padding-top: 4.5rem;
}

.stat-card-shell {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-outer);
  padding: 0.5rem;
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.05);
}

.stat-card-inner {
  background: var(--bg-white);
  border-radius: var(--radius-inner);
  padding: 2.25rem 1.5rem;
  text-align: center;
  border: 1px solid #F1F5F9;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text-navy);
}

/* About Journey Timeline Map */
.journey-tag {
  background: rgba(12, 57, 201, 0.08);
  color: var(--brand-blue);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.journey-highlight-list {
  list-style: none;
  padding-left: 0;
}

.journey-highlight-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 500;
}

.journey-highlight-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* About Section Premium Image Frame */
.about-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-inner);
  height: 460px;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outer-shell:hover .about-image-frame img {
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .about-image-frame {
    height: 320px;
  }
}

/* Vision & Mission Bento Cards */
.bento-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(12, 57, 201, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bento-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-blue);
}

/* Vision & Mission Premium Glassmorphism Theme (Light Version) */
.vision-mission-section {
  background-color: var(--bg-cool);
  background-image: 
    linear-gradient(rgba(12, 57, 201, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 57, 201, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.vision-mission-sidebar {
  padding-right: 1.5rem;
}

.outer-shell:hover .vision-mission-img {
  transform: scale(1.05);
}

.vision-mission-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(12, 57, 201, 0.05);
  border-radius: var(--radius-outer);
  padding: 0.75rem;
  transition: var(--transition-fluid);
}

.vision-mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 57, 201, 0.25);
  box-shadow: 0 30px 60px -15px rgba(10, 25, 47, 0.08), 0 0 40px rgba(12, 57, 201, 0.04);
  background: rgba(255, 255, 255, 0.85);
}

.vision-mission-card-inner {
  background: var(--bg-white);
  border-radius: var(--radius-inner);
  padding: 2.75rem 2.25rem;
  border: 1px solid #F1F5F9;
  height: 100%;
}

@media (max-width: 767.98px) {
  .vision-mission-card-inner {
    padding: 2rem 1.5rem;
  }
  .vision-mission-sidebar {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

/* Meet the Founder Layout details */
#founder {
  background-color: var(--bg-white);
}

.founder-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-inner);
  height: 480px;
}

.founder-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outer-shell:hover .founder-image-frame img {
  transform: scale(1.05);
}

.badge-pill {
  display: inline-block;
  background-color: rgba(12, 57, 201, 0.08);
  color: var(--brand-blue);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(12, 57, 201, 0.12);
}

@media (max-width: 767.98px) {
  .founder-image-frame {
    height: 350px;
  }
}

.founder-tag {
  font-family: 'Outfit', sans-serif;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* Services Redesign - Futuristic Alternating Rows */
#services {
  background-color: var(--bg-cool);
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(12, 57, 201, 0.035) 0%, transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(0, 242, 254, 0.04) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(12, 57, 201, 0.04);
  border-bottom: 1px solid rgba(12, 57, 201, 0.04);
}

/* Interactive Split Screen Services Styling */
.services-dynamic-canvas {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--bg-cool);
}

.service-canvas-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-canvas-img.active {
  opacity: 1;
  transform: scale(1);
}

.canvas-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.service-interactive-trigger {
  border-left: 3px solid rgba(12, 57, 201, 0.08);
  padding: 1.5rem 0 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition-fluid);
}

.service-interactive-trigger.active {
  border-left-color: var(--brand-blue);
  background: rgba(12, 57, 201, 0.015);
  padding-left: 2.5rem;
}

.service-trigger-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand-blue);
  opacity: 0.3;
  transition: var(--transition-fluid);
  margin-top: 0.2rem;
}

.service-interactive-trigger.active .service-trigger-num {
  opacity: 1;
  color: var(--brand-blue);
  -webkit-text-stroke: 0px transparent;
}

/* Accordion details reveal */
.service-trigger-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}

.service-interactive-trigger.active .service-trigger-details {
  max-height: 250px;
  opacity: 1;
  margin-top: 1rem;
}

.service-ideal-badge {
  background: var(--bg-white);
  border: 1px solid rgba(12, 57, 201, 0.08);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition-fluid);
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-ideal-badge:hover {
  background: var(--bg-cool);
  border-color: rgba(12, 57, 201, 0.25);
  color: var(--brand-blue);
}

@media (max-width: 991.98px) {
  .services-dynamic-canvas {
    height: 320px;
  }
  .service-interactive-trigger {
    padding: 1rem 0;
    border-left: none;
    border-bottom: 1px solid rgba(12, 57, 201, 0.08);
  }
  .service-interactive-trigger.active {
    padding-left: 0;
    background: transparent;
    border-bottom-color: var(--brand-blue);
  }
  .service-trigger-details {
    max-height: none !important;
    opacity: 1 !important;
    display: block !important;
    margin-top: 1rem;
  }
}

/* Why Choose Us Redesign - Sleek Trust Cards Grid */
#why-choose-us {
  background-color: var(--bg-white);
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.why-trust-card {
  padding: 0.35rem;
  background: rgba(12, 57, 201, 0.012);
  border: 1px solid rgba(12, 57, 201, 0.05);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.why-trust-card-inner {
  padding: 1.5rem 1.75rem;
  background: var(--bg-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
  box-shadow: 0 4px 15px -3px rgba(10, 25, 47, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-trust-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: rgba(12, 57, 201, 0.04);
  color: var(--brand-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(12, 57, 201, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-trust-icon-wrapper svg {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-trust-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-navy);
  line-height: 1.4;
  transition: all 0.4s ease;
}

/* Hover effects */
.why-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 57, 201, 0.15);
  box-shadow: 0 15px 30px -10px rgba(12, 57, 201, 0.08);
}

.why-trust-card:hover .why-trust-icon-wrapper {
  background-color: var(--brand-blue);
  color: var(--text-light);
  border-color: var(--brand-blue);
  transform: rotate(-6deg) scale(1.05);
}

.why-trust-card:hover .why-trust-text {
  color: var(--brand-blue);
}

@media (max-width: 767.98px) {
  .why-trust-card-inner {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }
  .why-trust-text {
    font-size: 0.92rem;
  }
}

/* Modern Construction Quality Standards Specs Grid */
#quality-standards {
  background-color: var(--bg-cool) !important;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.spec-package-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
  overflow: hidden;
}

.spec-package-card:hover {
  transform: translateY(-6px);
}

.premium-card.active-card {
  border-color: rgba(12, 57, 201, 0.25) !important;
  background: linear-gradient(to bottom, rgba(12, 57, 201, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 20px 40px -15px rgba(12, 57, 201, 0.1) !important;
}

.premium-card.active-card:hover {
  box-shadow: 0 30px 60px -25px rgba(12, 57, 201, 0.18) !important;
  border-color: rgba(12, 57, 201, 0.35) !important;
}

.budget-card {
  border-color: rgba(100, 116, 139, 0.15) !important;
  background: var(--bg-white);
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.03) !important;
}

.budget-card:hover {
  box-shadow: 0 25px 50px -20px rgba(10, 25, 47, 0.08) !important;
  border-color: rgba(100, 116, 139, 0.25) !important;
}

.spec-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(12, 57, 201, 0.08);
  font-size: 0.92rem;
  transition: background-color 0.3s ease;
}

.spec-feature-item:last-child {
  border-bottom: none;
}

.spec-feature-cat {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.spec-feature-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-navy);
  text-align: right;
  font-size: 0.9rem;
  padding-left: 1rem;
}

.spec-package-card:hover .spec-feature-item {
  border-bottom-color: rgba(12, 57, 201, 0.15);
}

@media (max-width: 767.98px) {
  .spec-package-card {
    margin-bottom: 1.5rem;
  }
}

/* Step by Step Construction Process Track - Alternating Timeline */
#process {
  background-color: var(--bg-white);
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.process-timeline-v2 {
  position: relative;
  padding: 2rem 0;
}

/* Central vertical progress line on desktop */
/* Central vertical progress line on desktop */
.process-timeline-v2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-blue) 0%, rgba(12, 57, 201, 0.15) 100%);
  z-index: 1;
}

.timeline-item-v2 {
  position: relative;
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 2;
}

.timeline-item-v2:last-child {
  margin-bottom: 0;
}

/* Center marker badge */
.timeline-marker-v2 {
  width: 42px;
  height: 42px;
  background-color: var(--bg-white);
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(12, 57, 201, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.timeline-item-v2:hover .timeline-marker-v2 {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  border-color: var(--brand-blue);
  box-shadow: 0 0 20px rgba(12, 57, 201, 0.35);
  transform: scale(1.1);
}

/* Card columns */
.timeline-card-col {
  width: 45%;
  flex-shrink: 0;
  padding: 0 1.75rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-spacer-col-v2 {
  width: 45%;
  flex-shrink: 0;
}

.timeline-step-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-blue);
  letter-spacing: 0.08em;
  display: inline-block;
}

/* Alternating flex flow alignment rules */
.timeline-item-v2:nth-child(odd) {
  flex-direction: row; /* Card left, spacer right */
}

.timeline-item-v2:nth-child(even) {
  flex-direction: row-reverse; /* Card right, spacer left */
}

.timeline-item-v2:nth-child(odd) .timeline-card-col {
  text-align: right;
}

.timeline-item-v2:nth-child(even) .timeline-card-col {
  text-align: left;
}

/* Hover effect on outer shell */
.timeline-item-v2:hover .timeline-card-outer {
  transform: translateY(-4px);
  border-color: rgba(12, 57, 201, 0.15);
  box-shadow: 0 15px 30px -10px rgba(12, 57, 201, 0.06);
}

/* Mobile responsive media query override */
@media (max-width: 767.98px) {
  .process-timeline-v2::before {
    left: 16px;
    transform: none;
  }

  .timeline-item-v2 {
    flex-direction: row !important;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .timeline-marker-v2 {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    flex-shrink: 0;
    order: 1;
  }

  .timeline-card-col {
    width: calc(100% - 32px);
    padding: 0 0 0 1.25rem !important;
    text-align: left !important;
    order: 2;
  }

  .timeline-spacer-col-v2 {
    display: none;
    order: 3;
  }
}

.timeline-image-outer img,
.timeline-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item-v2:hover .timeline-image-outer img,
.timeline-item-v2:hover .timeline-step-img {
  transform: scale(1.05);
}

#projects {
  background-color: var(--bg-cool) !important;
}

/* Projects Filter Grid */
.projects-filter-nav {
  display: inline-flex;
  background: var(--bg-cool);
  padding: 0.4rem;
  border-radius: 9999px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.project-filter-btn {
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: var(--transition-fluid);
}

.project-filter-btn.active,
.project-filter-btn:hover {
  background: var(--bg-white);
  color: var(--brand-blue);
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.05);
}

.project-gallery-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
  transition: var(--transition-fluid);
  border: 1px solid var(--border-color);
}

.project-gallery-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.12);
}

.project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.project-gallery-card:hover .project-card-image {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-gallery-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-title {
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.project-card-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Premium Custom Accordion (FAQ) */
#faq {
  background-color: var(--bg-white) !important;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.accordion-custom .accordion-item {
  border: 1px solid rgba(12, 57, 201, 0.05) !important;
  background-color: var(--bg-white) !important;
  border-radius: 20px !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 10px 30px -15px rgba(10, 25, 47, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.accordion-custom .accordion-item:last-child {
  margin-bottom: 0 !important;
}

.accordion-custom .accordion-item:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 57, 201, 0.15) !important;
  box-shadow: 0 15px 35px -10px rgba(12, 57, 201, 0.06);
}

.accordion-custom .accordion-header {
  border-radius: 0 !important;
  overflow: visible;
}

.accordion-custom .accordion-button {
  background-color: transparent !important;
  color: var(--text-navy) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.5rem 2rem;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--brand-blue) !important;
  background-color: rgba(12, 57, 201, 0.012) !important;
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a192f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-size: 1rem;
  transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c39c9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transform: rotate(-180deg);
}

.accordion-custom .accordion-collapse {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.accordion-custom .accordion-body {
  padding: 0 2rem 1.75rem 2rem !important;
  color: var(--text-muted) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
  border-top: 1px solid rgba(12, 57, 201, 0.05);
  padding-top: 1.25rem !important;
}

/* Contact Section UI & Form Enhancements */
#contact {
  background-color: var(--bg-cool) !important;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.contact-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1px solid rgba(12, 57, 201, 0.05);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 57, 201, 0.15);
  box-shadow: 0 15px 30px -10px rgba(12, 57, 201, 0.08);
}

.channel-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(12, 57, 201, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel-card:hover .channel-icon-box {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  transform: scale(1.05) rotate(-4deg);
}

.channel-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.channel-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.channel-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-navy);
}

.contact-channel-card:hover .channel-value {
  color: var(--brand-blue);
}

/* Map wrapper styling */
.contact-map-wrapper {
  background: var(--bg-white);
  border: 1px solid rgba(12, 57, 201, 0.05);
  border-radius: 20px;
  padding: 0.5rem;
  box-shadow: 0 10px 30px -15px rgba(10, 25, 47, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  margin-top: 1.75rem;
}

.contact-map-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 57, 201, 0.15);
  box-shadow: 0 15px 35px -10px rgba(12, 57, 201, 0.06);
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  border-radius: 16px;
}

/* Contact Us Form input fields */
.form-group-custom {
  margin-bottom: 1.5rem;
}

.form-label-custom {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-navy);
  margin-bottom: 0.4rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-control-custom {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background-color: #F8FAFC;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--brand-blue);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(12, 57, 201, 0.08);
}

/* 9. DARK UTILITIES & FOOTER DECK */
.dark-section {
  background-color: var(--bg-dark-section);
  color: var(--text-light);
}

.dark-section h1, 
.dark-section h2, 
.dark-section h3, 
.dark-section h4 {
  color: var(--bg-white);
}

.dark-section p {
  color: rgba(248, 250, 252, 0.7);
}

/* Footer structure */
.main-footer {
  background-color: var(--brand-navy);
  color: rgba(248, 250, 252, 0.65);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--bg-white) !important;
  letter-spacing: -0.02em;
}

.footer-logo-title span {
  color: var(--brand-blue);
  font-weight: 500;
}

.footer-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 4px;
}

.footer-contact-info p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-contact-info svg {
  margin-right: 0.75rem;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.footer-social-tray {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-circle-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
  transition: var(--transition-fluid);
}

.social-circle-link:hover {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero-content-container {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .stat-wrapper {
    margin-top: 0;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }
  #about {
    padding-top: 2.5rem;
  }
  .glass-nav-container {
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 28px !important;
  }
  .hero-controls {
    bottom: 2rem;
    right: 2rem;
  }
  .outer-shell {
    padding: 0.5rem;
    border-radius: 1.5rem;
  }
  .inner-core {
    padding: 2rem 1.5rem;
    border-radius: calc(1.5rem - 0.5rem);
  }
  .process-timeline::before {
    left: 15px;
  }
  .process-step-marker {
    left: -1rem;
  }
}

/* â”€â”€â”€ CONSULTATION BANNER â€” Bright Two-Panel Redesign â”€â”€â”€ */
.consult-banner {
  position: relative;
  overflow: hidden;
  background: #F8FAFC;  /* crisp light background â€” sharp contrast vs dark footer */
}

/* Full-width two-panel CSS grid: 45% image | 55% content */
.consult-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 520px;
}

/* â”€â”€ Left: Photo panel â”€â”€ */
.consult-image-panel {
  position: relative;
  overflow: hidden;
  background-image: url('../images/consultation_bg.png');
  background-size: cover;
  background-position: center;
}

.consult-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 25, 47, 0.3) 0%,
    rgba(10, 25, 47, 0.65) 100%
  );
  z-index: 1;
}

/* Floating credential badge top-left of image */
.consult-image-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(245, 158, 11, 0.9);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  backdrop-filter: blur(6px);
}

/* Stats strip pinned to image bottom */
.consult-stat-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem 1.75rem;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.consult-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.consult-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-amber);
  line-height: 1;
  letter-spacing: -0.03em;
}

.consult-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.65);
  text-align: center;
  white-space: nowrap;
}

.consult-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

/* â”€â”€ Right: Content panel â”€â”€ */
.consult-content-panel {
  background: #FFFFFF;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Subtle left accent border */
  border-left: 4px solid var(--brand-amber);
}

.consult-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 1rem;
}

.consult-overline::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.consult-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-navy);
  margin-bottom: 1.1rem;
}

.consult-heading-accent {
  background: linear-gradient(90deg, var(--brand-blue), #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consult-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 1.75rem;
}

/* Tick-check trust items */
.consult-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.consult-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.consult-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(12, 57, 201, 0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA button group */
.consult-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.consult-btn-call,
.consult-btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-btn-call {
  background: var(--brand-amber);
  color: var(--brand-navy) !important;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.consult-btn-call:hover {
  background: var(--brand-amber-hover);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
}

.consult-btn-email {
  background: transparent;
  color: var(--brand-blue) !important;
  border: 2px solid var(--brand-blue);
}

.consult-btn-email:hover {
  background: var(--brand-blue);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 57, 201, 0.2);
}

.consult-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-btn-call .consult-btn-icon {
  background: rgba(10, 25, 47, 0.15);
  color: var(--brand-navy);
}

.consult-btn-email .consult-btn-icon {
  background: rgba(12, 57, 201, 0.08);
  color: var(--brand-blue);
}

.consult-btn-email:hover .consult-btn-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Footnote */
.consult-footnote {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.consult-footnote svg {
  flex-shrink: 0;
  color: var(--brand-blue);
}

/* â”€â”€ Responsive: tablet/mobile â”€â”€ */
@media (max-width: 991.98px) {
  .consult-grid {
    grid-template-columns: 1fr;
  }
  .consult-image-panel {
    min-height: 300px;
  }
  .consult-content-panel {
    padding: 3.5rem 2.5rem;
    border-left: none;
    border-top: 4px solid var(--brand-amber);
  }
}

@media (max-width: 767.98px) {
  .consult-image-panel {
    min-height: 240px;
  }
  .consult-content-panel {
    padding: 2.5rem 1.5rem;
  }
  .consult-heading {
    font-size: 2rem;
  }
  .consult-btn-call,
  .consult-btn-email {
    justify-content: center;
    padding: 0.9rem 1.25rem;
  }
  .consult-stat-strip {
    padding: 1.1rem 1rem;
  }
  .consult-stat-num {
    font-size: 1.4rem;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER — Premium Dark Editorial Redesign
   ═══════════════════════════════════════════════ */

.site-footer {
  background: var(--brand-navy);
  color: rgba(248, 250, 252, 0.65);
}

/* ── Top amber CTA strip ── */
.footer-cta-strip {
  background: linear-gradient(90deg, var(--brand-blue) 0%, #0C2DD4 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-cta-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-cta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brand-amber);
  color: var(--brand-navy) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.footer-cta-btn:hover {
  background: var(--brand-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

/* ── Main footer body ── */
.footer-body {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* ── Brand column ── */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity 0.25s ease;
  background: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
}

.footer-logo-link:hover { opacity: 0.85; }

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.55);
  max-width: 32ch;
  margin-bottom: 1.5rem;
}

/* Credential badges */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-amber);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
}

.footer-badge svg { flex-shrink: 0; }

/* Social buttons */
.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 250, 252, 0.5);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn:hover {
  background: var(--brand-amber);
  border-color: var(--brand-amber);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

/* ── Column headings ── */
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand-amber);
  border-radius: 2px;
}

/* ── Navigation links ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav-link::before {
  content: "→";
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 0;
  color: var(--brand-amber);
}

.footer-nav-link:hover {
  color: var(--bg-white);
  padding-left: 1rem;
}

.footer-nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
  margin-right: 0.25rem;
}

/* ── Contact list ── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-contact-item:not(.footer-contact-item--static):hover .footer-contact-value {
  color: var(--brand-amber);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(12, 57, 201, 0.12);
  border: 1px solid rgba(12, 57, 201, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: all 0.25s ease;
}

.footer-contact-item:not(.footer-contact-item--static):hover .footer-contact-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--brand-amber);
}

.footer-contact-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.35);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.footer-contact-value {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.75);
  transition: color 0.25s ease;
}

/* ── Bottom bar ── */
.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom a {
  color: rgba(248, 250, 252, 0.75) !important;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fluid);
}

.footer-bottom a:hover {
  color: var(--brand-amber) !important;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.3);
  margin: 0;
}

.footer-cert {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.3);
}

.footer-cert svg { flex-shrink: 0; color: rgba(245, 158, 11, 0.5); }

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1.2fr 1.5fr;
    gap: 3rem;
  }
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
  .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 767.98px) {
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-col-brand {
    grid-column: auto;
  }
  .footer-body { padding: 3rem 0 2.5rem; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.consulttion-space{
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}

/* 15. FLOATING ACTION BUTTONS */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease, 
              background-color 0.3s ease, 
              opacity 0.4s ease, 
              visibility 0.4s ease;
  text-decoration: none;
}

.floating-btn svg {
  transition: transform 0.3s ease;
}

/* Hover/Active States */
.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 25, 47, 0.25);
  color: var(--bg-white);
}

.floating-btn:hover svg {
  transform: scale(1.05);
}

.floating-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 8px rgba(10, 25, 47, 0.15);
}

/* Button Variants */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2cfc7a, #16a393);
}

.btn-call {
  background: linear-gradient(135deg, var(--brand-blue), #1e52f5);
}

.btn-call:hover {
  background: linear-gradient(135deg, #1240cc, #0033d4);
}

.btn-scroll-top {
  background: rgb(6 90 214 / 85%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.btn-scroll-top:hover {
  background: var(--brand-navy);
}

.btn-scroll-top.visible:hover {
  transform: scale(1.1) translateY(-2px);
}

/* Prefers-reduced-motion compatibility */
@media (prefers-reduced-motion: reduce) {
  .floating-btn,
  .floating-btn svg {
    transition: none !important;
    transform: none !important;
  }
  .floating-btn:hover {
    transform: none !important;
  }
  .floating-btn:active {
    transform: none !important;
  }
}

/* Mobile Optimizations */
@media (max-width: 575.98px) {
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
  }
  .floating-btn svg {
    width: 18px;
    height: 18px;
  }
}

