/* =========================================
   MarketPilot Digital — Main Stylesheet
   Pure CSS — No Framework
   ========================================= */
    /* Mobile styles */
  @media (max-width: 768px) {
    .mobile-phone {
      display: flex;
      position: fixed;
      top: 0px;
      left: 0;
      right: 0;
      height: 56px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 16px;
      background: linear-gradient(90deg,#024ad8,#024ad8);
      color: white;
      font-weight: 600;
      z-index: 9;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      /* if you want safe-area for iPhones with notch */
      padding-top: env(safe-area-inset-top);
    }

    .mobile-phone a.phone-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: inherit;
      background: rgba(255,255,255,0.12);
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 16px;
    }

    /* body content should not hide under fixed header */
    body { padding-top: 56px; }
  }
  
  /* Hide by default */
  .mobile-callbar {
    display: none;
  }

  /* Show and style on mobile only */
  @media (max-width: 768px) {
    .mobile-callbar {
      display: flex;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 60px;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #024ad8, #024ad8);
      color: #fff;
      font-weight: 600;
      z-index: 9999;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
      padding: 0 16px;
      /*padding-bottom: calc(env(safe-area-inset-bottom) + 10px);*/
      text-align: center;
    }

    .mobile-callbar span.label {
      margin-right: 8px;
      font-weight: 600;
    }

    .mobile-callbar a.call-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #fff;
      background: rgba(255,255,255,0.15);
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 16px;
    }

  }

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

/* ===================== CSS Custom Properties ===================== */
:root {
    /* Brand Colors */
    --navy: #1B2A4A;
    --navy-light: #243556;
    --royal: #3B7DDD;
    --royal-dark: #2E68BF;
    --royal-light: #5B9CF0;
    --blue-pale: #E8F0FE;
    --charcoal: #4A4A4A;
    --text-body: #555555;
    --text-light: #777777;
    --white: #FFFFFF;
    --off-white: #FAFBFD;
    --gray-bg: #F5F7FA;
    --gray-border: #E2E8F0;
    --gray-200: #EDF2F7;
    --success: #48BB78;
    --warning: #ECC94B;
    --danger: #F56565;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1B2A4A 0%, #3B7DDD 100%);
    --gradient-royal: linear-gradient(135deg, #3B7DDD 0%, #5B9CF0 100%);
    --gradient-hero: linear-gradient(135deg, #1B2A4A 0%, #2E4A7A 50%, #3B7DDD 100%);
    --gradient-cta: linear-gradient(135deg, #3B7DDD 0%, #1B2A4A 100%);
    --gradient-card: linear-gradient(180deg, rgba(59,125,221,0.05) 0%, rgba(27,42,74,0.02) 100%);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Font Sizes */
    --fs-hero: clamp(2.5rem, 5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 2.5vw, 1.5rem);
    --fs-h4: 1.125rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 100px) 0;
    --container-padding: 0 20px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.12);
    --shadow-xl: 0 16px 60px rgba(27, 42, 74, 0.16);
    --shadow-card: 0 4px 24px rgba(27, 42, 74, 0.07);
    --shadow-card-hover: 0 12px 40px rgba(59, 125, 221, 0.15);
    --shadow-btn: 0 4px 15px rgba(59, 125, 221, 0.3);
    --shadow-btn-hover: 0 8px 25px rgba(59, 125, 221, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Navbar */
    --navbar-height: 80px;
    --navbar-height-scrolled: 65px;
}

/* ===================== Reset & Base ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ===================== Typography ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===================== Container & Section ===================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-gray {
    background-color: var(--gray-bg);
}

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

.section-header .badge {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--royal);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* ===================== Buttons ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-royal);
    color: var(--white);
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

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

.btn-outline:hover {
    border-color: var(--royal);
    color: var(--royal);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: var(--fs-small);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================== Navbar ===================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

 @media (max-width: 768px) {.navbar {top: 55px; }}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    transition: height var(--transition-base);
}

.navbar.scrolled .container {
    height: var(--navbar-height-scrolled);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: height var(--transition-base);
}

.navbar.scrolled .nav-logo img {
    height: 65px;
}

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

.nav-link {
    padding: 8px 18px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--royal);
    background: var(--blue-pale);
}

.nav-link.active {
    color: var(--royal);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--royal);
    border-radius: 2px;
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
    padding: 12px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--blue-pale);
    color: var(--royal);
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--royal);
    font-size: 0.85rem;
}

.nav-cta {
    margin-left: 8px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ===================== Hero Section (Home) ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--navbar-height);
    overflow: hidden;
    background: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,125,221,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27,42,74,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 20s ease-in-out infinite reverse;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--royal);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: var(--fs-small);
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: var(--fs-hero);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 .highlight {
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .typing-wrapper {
    display: inline;
}

.typing-text {
    color: var(--royal);
    border-right: 3px solid var(--royal);
    animation: blink 0.7s infinite;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero .btn-group {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-border);
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-stat h3 {
    font-size: 1.75rem;
    color: var(--royal);
    font-weight: 800;
}

.hero-stat p {
    font-size: var(--fs-small);
    color: var(--text-light);
    margin: 0;
}

/* Hero Visual (Dashboard Card) */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-visual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    border: 1px solid var(--gray-border);
}

.hero-visual-card .chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hero-visual-card .chart-header h4 {
    font-size: 1rem;
}

.hero-visual-card .chart-header .badge-success {
    background: #E6F7EF;
    color: var(--success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--fs-xs);
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    margin-bottom: 16px;
}

.chart-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    position: relative;
    transform-origin: bottom;
    animation: growBar 1.5s ease forwards;
    transform: scaleY(0);
}

.chart-bar.blue { background: var(--gradient-royal); }
.chart-bar.navy { background: var(--navy); }
.chart-bar.light { background: var(--royal-light); }

.chart-bar:nth-child(1) { height: 45%; animation-delay: 0.6s; }
.chart-bar:nth-child(2) { height: 65%; animation-delay: 0.7s; }
.chart-bar:nth-child(3) { height: 40%; animation-delay: 0.8s; }
.chart-bar:nth-child(4) { height: 75%; animation-delay: 0.9s; }
.chart-bar:nth-child(5) { height: 55%; animation-delay: 1.0s; }
.chart-bar:nth-child(6) { height: 85%; animation-delay: 1.1s; }
.chart-bar:nth-child(7) { height: 95%; animation-delay: 1.2s; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--text-light);
}

.chart-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-border);
}

.chart-metric {
    text-align: center;
}

.chart-metric span {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-light);
    margin-bottom: 4px;
}

.chart-metric strong {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
}

/* Floating elements */
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floatElement 6s ease-in-out infinite;
    border: 1px solid var(--gray-border);
}

.hero-float.float-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-float.float-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 2s;
}

.hero-float .float-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-float .float-icon.green {
    background: #E6F7EF;
    color: var(--success);
}

.hero-float .float-icon.blue {
    background: var(--blue-pale);
    color: var(--royal);
}

.hero-float .float-text span {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-light);
}

.hero-float .float-text strong {
    font-size: 0.95rem;
    color: var(--navy);
}

/* ===================== Stats Section ===================== */
.stats-section {
    padding: 60px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.25rem;
    color: var(--white);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-card p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* ===================== Services Grid ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid.grid-5 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-royal);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(59,125,221,0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--royal);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-royal);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.93rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--royal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.service-card .card-link:hover {
    gap: 10px;
}

/* ===================== Why Choose Us / Features ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    transition: all var(--transition-base);
}

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

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--royal);
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.93rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================== Testimonials ===================== */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    text-align: center;
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--blue-pale);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: var(--fs-small);
    color: var(--text-light);
}

.testimonial-stars {
    color: #F6C23E;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--transition-base);
    cursor: pointer;
}

.testimonial-btn:hover {
    background: var(--royal);
    border-color: var(--royal);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--gray-border);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot.active {
    background: var(--royal);
    width: 30px;
    border-radius: 5px;
}

/* ===================== CTA Section ===================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-content .btn-group {
    justify-content: center;
}

/* ===================== Page Hero (Inner Pages) ===================== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: var(--fs-hero);
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--fs-small);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 500;
}

/* ===================== About Page ===================== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    margin-bottom: 20px;
}

.about-story-content p {
    margin-bottom: 16px;
}

.about-image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 420px;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid var(--gray-border);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: var(--royal);
    opacity: 0.3;
}

.about-image-placeholder span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    padding: 28px;
    background: var(--blue-pale);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--royal);
}

.mv-card h4 {
    margin-bottom: 8px;
    color: var(--royal);
}

.mv-card p {
    margin: 0;
    font-size: 0.93rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    transition: all var(--transition-base);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.team-card-image {
    width: 100%;
    height: 220px;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background: var(--gradient-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.team-card-info {
    padding: 24px 20px;
}

.team-card-info h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.team-role {
    font-size: var(--fs-small);
    color: var(--royal);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--royal);
    border-color: var(--royal);
    color: var(--white);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--royal);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--gradient-royal);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-royal);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--royal);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 30px);
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
}

.timeline-content .year {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--royal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--fs-small);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================== Process Section ===================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--gray-border);
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-royal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-btn);
}

.process-card h4 {
    margin-bottom: 8px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================== Service Detail Pages ===================== */
.service-detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sd-feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: all var(--transition-base);
}

.sd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.sd-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--royal);
}

.sd-feature-card h4 {
    margin-bottom: 8px;
}

.sd-feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Service Detail - How It Works */
.sd-how-it-works {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sd-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: all var(--transition-base);
}

.sd-step:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(59,125,221,0.2);
}

.sd-step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-royal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.sd-step h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.sd-step p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

.sd-visual-box {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-border);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sd-visual-box .visual-icon {
    font-size: 5rem;
    color: var(--royal);
    opacity: 0.25;
}

.sd-visual-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================== Pricing ===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card.featured {
    border-color: var(--royal);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-royal);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 20px;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-border);
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-features li.disabled i {
    color: var(--gray-border);
}

/* ===================== FAQ Accordion ===================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(59,125,221,0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--royal);
}

.faq-question i {
    transition: transform var(--transition-base);
    font-size: 0.85rem;
    color: var(--royal);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================== Contact Page ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: var(--off-white);
    color: var(--charcoal);
}

.form-control:focus {
    border-color: var(--royal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59,125,221,0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234A4A4A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-card-hover);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.contact-info-card a {
    color: var(--royal);
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Map */
.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ===================== Get Started Page ===================== */
.get-started-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: flex-start;
}

.form-wizard {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
}

/* Wizard Progress */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--gray-border);
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 18px;
    left: 20px;
    height: 3px;
    background: var(--gradient-royal);
    z-index: 1;
    transition: width 0.5s ease;
    width: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 3px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: all var(--transition-base);
}

.wizard-step.active .step-number {
    border-color: var(--royal);
    background: var(--gradient-royal);
    color: var(--white);
}

.wizard-step.completed .step-number {
    border-color: var(--success);
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-size: var(--fs-xs);
    color: var(--text-light);
    font-weight: 500;
    transition: color var(--transition-base);
}

.wizard-step.active .step-label {
    color: var(--royal);
    font-weight: 600;
}

.wizard-step.completed .step-label {
    color: var(--success);
}

/* Wizard Panels */
.wizard-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.wizard-panel.active {
    display: block;
}

.wizard-panel h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.wizard-panel > p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.93rem;
}

/* Service checkbox grid */
.service-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.service-checkbox {
    display: block;
    cursor: pointer;
}

.service-checkbox input {
    display: none;
}

.checkbox-card {
    padding: 16px;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
}

.service-checkbox input:checked + .checkbox-card {
    border-color: var(--royal);
    background: var(--blue-pale);
}

.checkbox-card i {
    color: var(--royal);
    font-size: 1.1rem;
}

.checkbox-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* Budget Slider */
.budget-slider {
    margin-bottom: 24px;
}

.budget-slider label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.budget-value {
    color: var(--royal);
    font-weight: 700;
    font-size: 1.1rem;
}

.budget-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-border);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.budget-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-royal);
    cursor: pointer;
    box-shadow: var(--shadow-btn);
}

.budget-slider input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-royal);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-btn);
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-border);
}

/* Get Started Sidebar */
.gs-sidebar {
    position: sticky;
    top: 100px;
}

.gs-sidebar-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
    margin-bottom: 24px;
}

.gs-sidebar-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.gs-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gs-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.gs-benefit i {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.gs-benefit span {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.gs-contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    text-align: center;
}

.gs-contact-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ===================== Footer ===================== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin: 16px 0 24px;
    line-height: 1.7;
    color: rgb(255 255 255 / 60%);
}

.footer-logo img {
    height: 40px;
    /* filter: brightness(0) invert(1); */
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--royal);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--royal);
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.footer-newsletter h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--royal);
    border-radius: 2px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--royal);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--royal-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-small);
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-small);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ===================== Scroll Reveal ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ===================== Keyframe Animations ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--royal); }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: #E6F7EF;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.success-message h3 {
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-light);
}

/* ===================== Responsive Design ===================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    /* Navbar Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        background: transparent;
        min-width: auto;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Grids */
    .services-grid,
    .services-grid.grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .about-story {
        grid-template-columns: 1fr;
    }

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

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

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

    .process-grid::before {
        display: none;
    }

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

    .sd-how-it-works {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .get-started-grid {
        grid-template-columns: 1fr;
    }

    .gs-sidebar {
        position: static;
    }

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

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat {
        flex: 1;
        min-width: 120px;
    }

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

    .service-select-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        margin-right: 0;
    }

    .wizard-step .step-label {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 2rem; }

    .page-hero {
        padding: 130px 0 60px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .stat-card h3 { font-size: 2rem; }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .values-grid,
    .team-grid,
    .service-detail-features {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .form-wizard {
        padding: 24px;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-group .btn {
        justify-content: center;
    }

    .hero-float {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== Utilities ===================== */
.text-center { text-align: center; }
.text-royal { color: var(--royal); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
