@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   DESIGN TOKENS & ROOT VARIABLES (BHARAT FILING SERVICES)
   ========================================================================== */
:root {
  /* Brand Core (Logo Matched) */
  --brand-navy-dark: #07192f;
  --brand-navy: #0b2545;
  --brand-navy-light: #133b68;
  --brand-blue: #1d4ed8;
  --brand-blue-soft: #2563eb;

  /* Metallic Gold / Champagne Accents */
  --brand-gold: #c99738;
  --brand-gold-light: #e5b85a;
  --brand-gold-dark: #9e721d;
  --brand-gold-gradient: linear-gradient(135deg, #c99738 0%, #ecd08f 45%, #b28224 100%);
  --brand-navy-gradient: linear-gradient(135deg, #07192f 0%, #0b2545 50%, #133b68 100%);

  /* Category 1: Business Registration & Compliance (Royal Blue) */
  --cat1-color: #1d4ed8;
  --cat1-bg: #f0f6ff;
  --cat1-border: #bfdbfe;
  --cat1-badge: #1e40af;

  /* Category 2: Legal & Property Services (Warm Amber / Saffron) */
  --cat2-color: #d97706;
  --cat2-bg: #fffbeb;
  --cat2-border: #fde68a;
  --cat2-badge: #b45309;

  /* Category 3: Identity & Government Certificates (Emerald Green) */
  --cat3-color: #059669;
  --cat3-bg: #ecfdf5;
  --cat3-border: #a7f3d0;
  --cat3-badge: #047857;

  /* Neutrals & Surfaces (Pristine Light Theme) */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;

  /* Typography Colors */
  --text-dark: #0f172a;
  --text-slate: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Shadows & Elevations */
  --shadow-xs: 0 1px 2px rgba(11, 37, 69, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(11, 37, 69, 0.06), 0 2px 4px -2px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(11, 37, 69, 0.08), 0 4px 6px -4px rgba(11, 37, 69, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 37, 69, 0.1), 0 8px 10px -6px rgba(11, 37, 69, 0.05);
  --shadow-gold: 0 10px 25px -5px rgba(201, 151, 56, 0.35);
  --shadow-blue: 0 10px 25px -5px rgba(29, 78, 216, 0.25);

  /* Radii & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & CORE BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================================================
   UNIQUE BRAND PRELOADER
   ========================================================================== */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0e2f56 0%, #07192f 65%, #040e1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease, transform 0.5s ease;
  pointer-events: all;
}

.site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  max-width: 90vw;
}

.preloader-brand-emblem {
  position: relative;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.preloader-spin-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.preloader-spin-ring.ring-outer {
  inset: 0;
  border: 2.5px solid transparent;
  border-top-color: var(--brand-gold);
  border-right-color: rgba(201, 151, 56, 0.4);
  filter: drop-shadow(0 0 10px rgba(201, 151, 56, 0.55));
  animation: preloaderSpin 1.6s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-spin-ring.ring-inner {
  inset: 8px;
  border: 2.5px solid transparent;
  border-bottom-color: #3b82f6;
  border-left-color: rgba(59, 130, 246, 0.4);
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
  animation: preloaderSpinReverse 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-core-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 151, 56, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}

.preloader-seal-check {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 19px;
  height: 19px;
  background: var(--brand-gold);
  color: #0b2545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #07192f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.preloader-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #ffffff 20%, #f6d388 50%, #ffffff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  animation: preloaderShimmer 2.4s linear infinite;
}

.preloader-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #94a3b8;
  margin-bottom: 22px;
}

.preloader-progress-track {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--brand-gold), #fff, transparent);
  border-radius: 99px;
  animation: preloaderSlide 1.4s ease-in-out infinite;
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloaderSpinReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.96);
    box-shadow: 0 4px 14px rgba(201, 151, 56, 0.2);
  }

  100% {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(201, 151, 56, 0.45);
  }
}

@keyframes preloaderShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes preloaderSlide {
  0% {
    left: -50%;
    width: 30%;
  }

  50% {
    width: 60%;
  }

  100% {
    left: 100%;
    width: 30%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background: var(--brand-navy-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(201, 151, 56, 0.25);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.top-item svg {
  color: var(--brand-gold-light);
  flex-shrink: 0;
}

.top-item.link:hover {
  color: var(--brand-gold-light);
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--brand-gold);
  color: var(--brand-navy-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  height: 38px;
  max-height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--brand-navy);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue);
  background: rgba(29, 78, 216, 0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--brand-gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button Variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-navy-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 151, 56, 0.4);
}

.btn-primary:hover {
  background: #0f3460;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: #fff;
}

.btn-gold {
  background: var(--brand-gold-gradient);
  color: var(--brand-navy-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: var(--brand-navy-dark);
}

.btn-outline {
  border: 1.5px solid var(--brand-navy);
  color: var(--brand-navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brand-navy);
  color: #fff;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--brand-navy);
}

/* ==========================================================================
   PAGE HERO SECTIONS
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #f0f5fa 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 56, 0.12);
  border: 1px solid rgba(201, 151, 56, 0.35);
  color: var(--brand-gold-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.hero-title {
  font-size: 2.85rem;
  line-height: 1.18;
  color: var(--brand-navy-dark);
  margin-bottom: 18px;
}

.hero-title .highlight {
  background: linear-gradient(120deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .gold-accent {
  color: var(--brand-gold);
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-slate);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.hero-feature-item svg {
  color: var(--cat3-color);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.1);
  background: #ffffff;
}

.hero-visual-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--brand-gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--brand-navy);
  line-height: 1;
}

.floating-badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Page Header (Subpages) */
.page-banner {
  background: var(--brand-navy-gradient);
  color: #fff;
  padding: clamp(38px, 6vw, 56px) 0 clamp(30px, 5vw, 48px);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--brand-gold);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 151, 56, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  line-height: 1.24;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  word-break: break-word;
  text-wrap: balance;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(0.82rem, 2.4vw, 0.92rem);
  color: #94a3b8;
}

.page-breadcrumb a {
  color: #e2e8f0;
}

.page-breadcrumb a:hover {
  color: var(--brand-gold);
}

/* ==========================================================================
   OFFICIAL 3 SERVICE CATEGORIES (MATCHING USER SCREENSHOT)
   ========================================================================== */
.section {
  padding: 70px 0;
}

.section-alt {
  background-color: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Category Master Cards (Elevated Luxury Corporate Registry Design) */
.category-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05);
  margin-bottom: 40px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  box-shadow: 0 14px 35px rgba(11, 37, 69, 0.1);
  transform: translateY(-4px);
}

/* Category Accent Highlights */
.category-card.cat-1 {
  border-top: 5px solid var(--cat1-color);
}

.category-card.cat-2 {
  border-top: 5px solid var(--cat2-color);
}

.category-card.cat-3 {
  border-top: 5px solid var(--cat3-color);
}

.category-card-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.cat-1 .category-card-header {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.04) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.cat-2 .category-card-header {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.04) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.cat-3 .category-card-header {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.04) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.cat-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.category-badge-pill {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cat-1 .category-badge-pill {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.cat-2 .category-badge-pill {
  background: linear-gradient(135deg, #b45309, #d97706);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

.cat-3 .category-badge-pill {
  background: linear-gradient(135deg, #047857, #059669);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.category-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cat-1 .category-title {
  color: #1e3a8a;
}

.cat-2 .category-title {
  color: #9a3412;
}

.cat-3 .category-title {
  color: #065f46;
}

.category-body {
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cat-column-box {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 20px 22px;
  transition: var(--transition);
}

.cat-column-box:hover {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.05);
}

.cat-1 .cat-column-box:hover {
  border-color: var(--cat1-border);
}

.cat-2 .cat-column-box:hover {
  border-color: var(--cat2-border);
}

.cat-3 .cat-column-box:hover {
  border-color: var(--cat3-border);
}

.cat-column-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-light);
}

.cat-1 .cat-column-title {
  color: var(--cat1-color);
}

.cat-2 .cat-column-title {
  color: var(--cat2-color);
}

.cat-3 .cat-column-title {
  color: var(--cat3-color);
}

.cat-service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-slate);
  font-weight: 500;
  line-height: 1.5;
  transition: transform 0.2s ease;
}

.cat-service-item:hover {
  transform: translateX(3px);
}

.cat-check-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cat-1 .cat-check-badge {
  background: rgba(29, 78, 216, 0.12);
  color: var(--cat1-color);
}

.cat-2 .cat-check-badge {
  background: rgba(217, 119, 6, 0.14);
  color: var(--cat2-color);
}

.cat-3 .cat-check-badge {
  background: rgba(5, 150, 105, 0.12);
  color: var(--cat3-color);
}

.category-card-footer {
  padding: 16px 28px;
  background: #fbfcfe;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.cat-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Footer Social Media Buttons */
.footer-social-wrap {
  margin-top: 20px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: #ffffff !important;
  transition: var(--transition);
}

.footer-social-btn.whatsapp-btn {
  background: #25d366;
}

.footer-social-btn.whatsapp-btn:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.footer-social-btn.facebook-btn {
  background: #1877f2;
}

.footer-social-btn.facebook-btn:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

.footer-social-btn.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-btn.instagram-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.35);
}

.mobile-menu-cta {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

/* ==========================================================================
   IMAGE SHOWCASE & MEDIA CARDS (MORE THAN 3 IMAGES PER PAGE GUARANTEE)
   ========================================================================== */
.image-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 36px 0;
}

.media-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.media-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.media-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-card-img-wrap img {
  transform: scale(1.05);
}

.media-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 25, 47, 0.85);
  color: var(--brand-gold-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.media-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.media-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.media-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Feature Row with Side Image */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin: 50px 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.feature-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ==========================================================================
   STATS COUNTER BAR
   ========================================================================== */
.stats-bar {
  background: var(--brand-navy-gradient);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* ==========================================================================
   PROCESS / WORKFLOW (STEP BY STEP)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

/* Connecting line across steps on desktop */
.process-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-blue) 50%, var(--brand-gold) 100%);
  opacity: 0.25;
  z-index: 1;
}

.process-step {
  background: #ffffff;
  padding: 32px 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px -8px rgba(11, 37, 69, 0.12);
  border-color: var(--brand-gold);
}

.step-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1e3a8a 100%);
  color: var(--brand-gold-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(11, 37, 69, 0.2);
  border: 1.5px solid rgba(201, 151, 56, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, var(--brand-gold) 0%, #d4a34b 100%);
  color: var(--brand-navy-dark);
}

.step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(29, 78, 216, 0.18);
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-slate);
  line-height: 1.6;
  margin-top: auto;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 1.02rem;
  color: var(--text-slate);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-navy);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--brand-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--brand-navy);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-slate);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   CONTACT FORMS & INQUIRY MODAL
   ========================================================================== */
.contact-quick-bar {
  display: none;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-quick-btn.btn-call {
  background: var(--brand-navy);
  color: #ffffff;
}

.contact-quick-btn.btn-call:hover {
  background: #1e3a8a;
  color: #ffffff;
}

.contact-quick-btn.btn-wa {
  background: #25d366;
  color: #ffffff;
}

.contact-quick-btn.btn-wa:hover {
  background: #20bd5a;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(29, 78, 216, 0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--text-slate);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-alert {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  margin-bottom: 18px;
  display: none;
}

.form-alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.form-alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 25, 47, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  background: var(--brand-navy-gradient);
  color: #fff;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--brand-gold);
}

.modal-header h3 {
  color: #fff;
  font-size: 1.35rem;
}

.modal-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

.modal-body {
  padding: 28px;
}

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.8s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 151, 56, 0.4);
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand-gold);
  color: var(--brand-navy-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #07192f 0%, #0b2545 60%, #1e40af 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--brand-gold);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 36px;
}

.cta-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 650px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--brand-navy-dark);
  color: #94a3b8;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2.5px;
  background: var(--brand-gold);
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--brand-gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.92rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--brand-gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.88rem;
  color: #64748b;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: var(--brand-gold-light);
}

/* Footer Social Media Buttons */
.footer-social-wrap {
  margin-top: 22px;
}

.footer-social-list {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.footer-social-btn.whatsapp-btn {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.35);
  color: #25d366;
}

.footer-social-btn.whatsapp-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.footer-social-btn.facebook-btn {
  background: rgba(24, 119, 242, 0.14);
  border-color: rgba(24, 119, 242, 0.35);
  color: #60a5fa;
}

.footer-social-btn.facebook-btn:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

.footer-social-btn.instagram-btn {
  background: rgba(225, 48, 108, 0.14);
  border-color: rgba(225, 48, 108, 0.35);
  color: #f472b6;
}

.footer-social-btn.instagram-btn:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.4);
}

.footer-social-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card img {
    height: 340px;
  }

  .image-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* Mobile Slim Header */
  .nav-wrapper {
    height: 56px;
  }

  .brand-logo-img {
    height: 30px;
    max-height: 30px;
  }

  .mobile-toggle {
    display: block;
    padding: 4px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--brand-gold);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 10px 14px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-actions .btn {
    display: none;
  }

  /* Mobile Hero: Image at TOP, Content Below */
  .hero-section {
    padding: 24px 0 36px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual-card {
    order: -1;
    /* Puts image at the top of mobile screen */
    width: 100%;
    border-radius: var(--radius-lg);
  }

  .hero-visual-card img {
    height: 220px;
    border-radius: var(--radius-lg);
  }

  .hero-floating-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
  }

  .floating-badge-number {
    font-size: 1.25rem;
  }

  .floating-badge-label {
    font-size: 0.72rem;
  }

  .hero-badge-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.22;
    margin-bottom: 10px;
  }

  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.55;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-feature-item {
    font-size: 0.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* Compact Mobile Stats Bar */
  .stats-bar {
    padding: 18px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 6px 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
  }

  .stat-number {
    font-size: 1.55rem;
    margin-bottom: 2px;
  }

  .stat-label {
    font-size: 0.75rem;
    line-height: 1.25;
    color: #cbd5e1;
  }

  /* Category Cards on Mobile */
  .category-card {
    margin-bottom: 26px;
    border-radius: 16px;
  }

  .category-card-header {
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .category-title {
    font-size: 1.15rem;
  }

  .category-body {
    padding: 16px 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cat-column-box {
    padding: 16px;
  }

  .cat-service-item {
    font-size: 0.88rem;
    gap: 10px;
  }

  .category-card-footer {
    padding: 14px 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }

  .category-card-footer .btn {
    width: 100%;
  }

  /* Step by Step Process: Mobile Connected Timeline */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-left: 20px;
    position: relative;
  }

  .process-grid::before {
    top: 24px;
    bottom: 24px;
    left: 23px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(to bottom, var(--brand-gold) 0%, var(--brand-blue) 50%, var(--brand-gold) 100%);
    opacity: 0.35;
    border-radius: 99px;
  }

  .process-step {
    padding: 18px 18px 18px 56px;
    position: relative;
    border-radius: var(--radius-md);
  }

  .step-top-row {
    margin-bottom: 8px;
    justify-content: flex-start;
    gap: 10px;
  }

  .step-number {
    position: absolute;
    left: -19px;
    top: 18px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .step-badge {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .step-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* Subpages Banners & Grids */
  .page-banner {
    padding: 28px 0 22px;
  }

  .page-banner-title {
    font-size: clamp(1.32rem, 5.4vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .page-breadcrumb {
    font-size: 0.82rem;
    gap: 6px;
  }

  .image-grid-3,
  .image-grid-4,
  .image-grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .media-card-img-wrap {
    height: 190px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-img-wrapper img {
    height: 240px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .contact-quick-bar {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-social-list {
    gap: 8px;
  }

  .footer-social-btn {
    padding: 7px 10px;
    font-size: 0.75rem;
  }

  .cta-banner {
    padding: 35px 0;
  }

  .cta-title {
    font-size: 1.55rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* Floating Buttons */
  .floating-whatsapp {
    bottom: 18px;
    right: 15px;
    width: 44px;
    height: 44px;
  }

  .floating-whatsapp img {
    width: 25px;
    height: 30px;
  }

  .back-to-top {
    bottom: 78px;
    right: 20px;
    width: 38px;
    height: 38px;
  }

  .footer-bottom-links {
    display: contents !important;
  }
}