/* ===================================
   Regiment.fit Enhanced CSS Architecture
   Blue Gradient System & Responsive Design
   =================================== */

/* ===================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =================================== */

:root {
    /* Mobile-first viewport units */
    --vh: 1vh;
    --vw: 1vw;
    /* Blue Gradient Color Palette - 9 Colors */
    --federal-blue: #03045e;        /* Deep, authoritative base */
    --marian-blue: #023e8a;         /* Strong secondary accent */
    --honolulu-blue: #0077b6;       /* Primary brand color */
    --blue-green: #0096c7;          /* Transitional mid-tone */
    --pacific-cyan: #00b4d8;        /* Bright accent */
    --vivid-sky-blue: #48cae4;      /* Light interactive elements */
    --non-photo-blue: #90e0ef;      /* Subtle backgrounds */
    --non-photo-blue-2: #ade8f4;    /* Lighter backgrounds */
    --light-cyan: #caf0f8;          /* Minimal accent backgrounds */
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, var(--federal-blue) 0%, var(--honolulu-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--marian-blue) 0%, var(--blue-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--pacific-cyan) 0%, var(--vivid-sky-blue) 100%);
    --gradient-light: linear-gradient(135deg, var(--non-photo-blue) 0%, var(--light-cyan) 100%);
    --gradient-hero: linear-gradient(135deg, var(--federal-blue) 0%, var(--honolulu-blue) 70%, var(--blue-green) 100%);
    
    /* Typography Variables */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Font Sizes - Mobile First */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Spacing Scale */
    --space-1: 0.25rem;     /* 4px */
    --space-2: 0.5rem;      /* 8px */
    --space-3: 0.75rem;     /* 12px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-8: 2rem;        /* 32px */
    --space-10: 2.5rem;     /* 40px */
    --space-12: 3rem;       /* 48px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    --space-24: 6rem;       /* 96px */
    --space-32: 8rem;       /* 128px */
    
    /* Animation Variables */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
    
    /* Easing Functions */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.125rem;   /* 2px */
    --radius-base: 0.25rem;  /* 4px */
    --radius-md: 0.375rem;   /* 6px */
    --radius-lg: 0.5rem;     /* 8px */
    --radius-xl: 0.75rem;    /* 12px */
    --radius-2xl: 1rem;      /* 16px */
    --radius-full: 9999px;
    
    /* Responsive Breakpoints */
    --breakpoint-xs: 320px;   /* Small phones */
    --breakpoint-sm: 480px;   /* Large phones */
    --breakpoint-md: 768px;   /* Tablets */
    --breakpoint-lg: 1024px;  /* Small desktops */
    --breakpoint-xl: 1280px;  /* Large desktops */
    --breakpoint-2xl: 1536px; /* Extra large screens */
}

/* ===================================
   BASE STYLES - MOBILE FIRST
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    color: var(--federal-blue);
    line-height: var(--leading-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Touch-friendly base styles */
button, 
.btn, 
.navbar-item, 
.service-btn,
.btn-hero {
    min-height: 44px; /* iOS recommended touch target size */
    min-width: 44px;
    touch-action: manipulation; /* Prevent double-tap zoom */
}

/* Improved focus styles for accessibility */
*:focus {
    outline: 2px solid var(--pacific-cyan);
    outline-offset: 2px;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--federal-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Container System */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* ===================================
   MOBILE-FIRST NAVIGATION SYSTEM
   =================================== */

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 4, 94, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--duration-normal) var(--ease-out);
    min-height: 60px !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.navbar.is-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.scrolled {
    background: rgba(3, 4, 94, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    padding-left: var(--space-4) !important;
    padding-right: var(--space-4) !important;
    display: flex !important;
    align-items: center;
    min-height: 60px;
}

/* Navbar Brand */
.navbar-brand {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
    padding: var(--space-2) 0;
}

.logo-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: white !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: white !important;
}

.logo-accent {
    color: var(--vivid-sky-blue) !important;
}

/* Ensure logo link doesn't inherit Bulma styles */
.navbar-item.logo-link {
    color: white !important;
    background: transparent !important;
}

.navbar-item.logo-link:hover,
.navbar-item.logo-link:focus {
    color: white !important;
    background: transparent !important;
}

/* Mobile Hamburger Menu */
.navbar-burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    position: relative;
    z-index: 1001;
    transition: all var(--duration-normal) var(--ease-out);
    margin-left: auto;
}

.navbar-burger span {
    display: block !important;
    width: 24px;
    height: 2px;
    background: white !important;
    border-radius: 1px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
    position: relative;
    margin: 2px 0;
}

.navbar-burger span:nth-child(1) {
    transform: translateY(0px);
}

.navbar-burger span:nth-child(2) {
    transform: translateY(0px);
}

.navbar-burger span:nth-child(3) {
    transform: translateY(0px);
}

/* Hamburger Animation */
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Show hamburger on mobile, hide on desktop */
@media (min-width: 768px) {
    .navbar-burger {
        display: none !important;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .navbar-menu {
        position: fixed !important;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-primary) !important;
        transform: translateX(-100%);
        transition: transform var(--duration-slow) var(--ease-out);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        display: block !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .navbar-menu.is-active {
        transform: translateX(0) !important;
    }
}

/* Desktop menu */
@media (min-width: 768px) {
    .navbar-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        box-shadow: none !important;
    }
}

/* Mobile navbar-end */
@media (max-width: 767px) {
    .navbar-end {
        display: flex !important;
        flex-direction: column;
        padding: var(--space-6) var(--space-4);
        gap: var(--space-2);
    }
}

/* Desktop navbar-end */
@media (min-width: 768px) {
    .navbar-end {
        flex-direction: row !important;
        padding: 0 !important;
        gap: var(--space-2);
        align-items: center;
    }
}

/* Mobile navbar-item */
@media (max-width: 767px) {
    .navbar-item {
        display: flex !important;
        align-items: center;
        padding: var(--space-4) var(--space-6) !important;
        color: white !important;
        text-decoration: none !important;
        font-size: var(--text-lg);
        font-weight: var(--weight-medium);
        border-radius: var(--radius-lg);
        transition: all var(--duration-normal) var(--ease-out);
        position: relative;
        min-height: 56px; /* Larger touch targets on mobile */
        background: transparent !important;
    }

    .navbar-item:hover,
    .navbar-item:focus {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--vivid-sky-blue) !important;
        transform: translateX(8px);
    }

    .navbar-item.is-active {
        background: rgba(255, 255, 255, 0.15) !important;
        color: var(--vivid-sky-blue) !important;
    }

    .navbar-item.is-active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 24px;
        background: var(--vivid-sky-blue);
        border-radius: 2px;
    }
}

/* Desktop navbar-item */
@media (min-width: 768px) {
    .navbar-item {
        padding: var(--space-3) var(--space-4) !important;
        font-size: var(--text-base);
        min-height: auto;
        border-radius: var(--radius-base);
        color: white !important;
        text-decoration: none !important;
        background: transparent !important;
    }
    
    .navbar-item:hover,
    .navbar-item:focus {
        transform: none;
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--vivid-sky-blue) !important;
    }
    
    .navbar-item.is-active::before {
        display: none;
    }
    
    .navbar-item.is-active {
        background: rgba(255, 255, 255, 0.15) !important;
        color: var(--vivid-sky-blue) !important;
    }
}

/* Navbar Separator */
.navbar-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: var(--space-4) var(--space-6);
}

@media (min-width: 768px) {
    .navbar-separator {
        display: none;
    }
}

/* Page-specific navbar enhancements */
.coach-info {
    display: none; /* Hidden on mobile, shown on larger screens */
}

.page-breadcrumbs {
    display: none; /* Hidden on mobile */
}

.trust-indicators {
    display: none; /* Hidden on mobile */
}

/* Tablet and Desktop Navigation */
@media (min-width: 768px) {
    .navbar-burger {
        display: none;
    }
    
    .navbar-menu {
        position: static;
        transform: none;
        background: transparent;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }
    
    .navbar-end {
        flex-direction: row;
        padding: 0;
        gap: var(--space-2);
        align-items: center;
    }
    
    .navbar-item {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-base);
        min-height: auto;
        border-radius: var(--radius-base);
    }
    
    .navbar-item:hover,
    .navbar-item:focus {
        transform: none;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-item.is-active::before {
        display: none;
    }
    
    .navbar-item.is-active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .coach-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: var(--space-4);
        margin-right: auto;
    }
    
    .coach-name {
        color: white;
        font-size: var(--text-sm);
        font-weight: var(--weight-medium);
    }
    
    .coach-credentials {
        display: flex;
        gap: var(--space-2);
    }
    
    .credential {
        font-size: var(--text-xs);
        color: var(--vivid-sky-blue);
        background: rgba(255, 255, 255, 0.1);
        padding: var(--space-1) var(--space-2);
        border-radius: var(--radius-full);
    }
    
    .page-breadcrumbs {
        display: block;
        margin-left: var(--space-4);
        margin-right: auto;
    }
    
    .breadcrumb {
        margin: 0;
    }
    
    .breadcrumb ul {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .breadcrumb li {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: var(--text-sm);
    }
    
    .breadcrumb li:not(:last-child)::after {
        content: '>';
        margin-left: var(--space-2);
        color: rgba(255, 255, 255, 0.5);
    }
    
    .breadcrumb a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color var(--duration-normal) var(--ease-out);
    }
    
    .breadcrumb a:hover {
        color: var(--vivid-sky-blue);
    }
    
    .trust-indicators {
        display: flex;
        gap: var(--space-4);
        margin-left: var(--space-4);
        margin-right: auto;
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        gap: var(--space-1);
        font-size: var(--text-xs);
        color: rgba(255, 255, 255, 0.8);
    }
    
    .trust-icon {
        color: var(--vivid-sky-blue);
    }
}

@media (min-width: 1024px) {
    .navbar .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
    
    .logo-text {
        font-size: var(--text-3xl);
    }
    
    .navbar-item {
        font-size: var(--text-lg);
        padding: var(--space-3) var(--space-6);
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-enhanced {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* Use small viewport height for mobile browsers */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 60px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(3, 4, 94, 0.8) 0%, 
        rgba(0, 119, 182, 0.6) 50%, 
        rgba(0, 150, 199, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-text-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-4);
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
    display: block;
    margin-bottom: var(--space-2);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--vivid-sky-blue), var(--pacific-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--weight-regular);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    width: 100%;
    max-width: 280px;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--pacific-cyan), var(--vivid-sky-blue));
    color: var(--federal-blue);
    box-shadow: var(--shadow-lg);
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--federal-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    cursor: pointer;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-2);
    transition: all var(--duration-normal) var(--ease-out);
}

.scroll-arrow:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-text {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Responsive Hero - Mobile First */
@media (min-width: 480px) {
    .hero-text-container {
        padding: var(--space-6);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .btn-hero {
        font-size: var(--text-lg);
        padding: var(--space-4) var(--space-8);
        min-width: 200px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-text-container {
        padding: var(--space-8);
    }
    
    .hero-title {
        font-size: var(--text-5xl);
        margin-bottom: var(--space-6);
    }
    
    .hero-subtitle {
        margin-bottom: var(--space-8);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-6);
    }
    
    .btn-hero {
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-2xl);
    }
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
    .hero-enhanced {
        min-height: calc(100vh - 60px);
        min-height: calc(var(--vh, 1vh) * 100 - 60px);
    }
    
    /* Fix for mobile SSL protocol issues */
    body {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .scroll-indicator {
        bottom: var(--space-4);
    }
    
    .scroll-arrow {
        width: 36px;
        height: 36px;
    }
    
    /* Ensure content doesn't get cut off on small screens */
    .container {
        min-width: 320px;
    }
    
    /* Optimize text for small screens */
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Improve button spacing on mobile */
    .hero-buttons .btn-hero + .btn-hero {
        margin-top: var(--space-3);
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .btn-hero {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
        min-width: 160px;
    }
}

/* ===================================
   WORKFLOW SECTION
   =================================== */

.workflow-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.workflow-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding: 0 var(--space-4);
}

.workflow-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-3);
}

.workflow-subtitle {
    font-size: var(--text-base);
    color: var(--marian-blue);
    opacity: 0.8;
    line-height: var(--leading-relaxed);
}

.workflow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.workflow-step-indicator {
    flex-shrink: 0;
}

.workflow-step-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.workflow-step-content {
    flex: 1;
}

.workflow-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.workflow-step-description {
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.workflow-step-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.workflow-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: var(--gradient-light);
    color: var(--federal-blue);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    border-radius: var(--radius-full);
}

/* Responsive Workflow - Mobile First */
@media (min-width: 480px) {
    .workflow-section {
        padding: var(--space-16) 0;
    }
    
    .workflow-header {
        margin-bottom: var(--space-12);
    }
    
    .workflow-title {
        font-size: var(--text-3xl);
    }
    
    .workflow-subtitle {
        font-size: var(--text-lg);
    }
    
    .workflow-steps {
        gap: var(--space-6);
    }
    
    .workflow-step {
        padding: var(--space-6);
        gap: var(--space-6);
    }
    
    .workflow-step-circle {
        width: 80px;
        height: 80px;
        font-size: var(--text-2xl);
    }
    
    .workflow-step-title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-3);
    }
}

@media (min-width: 768px) {
    .workflow-section {
        padding: var(--space-20) 0;
    }
    
    .workflow-header {
        margin-bottom: var(--space-16);
    }
    
    .workflow-title {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-4);
    }
    
    .workflow-subtitle {
        font-size: var(--text-xl);
    }
    
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
    
    .workflow-step-title {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 1024px) {
    .workflow-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .workflow-step-content {
        text-align: center;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: var(--space-12) 0;
    background: var(--gradient-hero);
    color: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding: 0 var(--space-4);
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
}

.testimonials-subtitle {
    font-size: var(--text-base);
    opacity: 0.9;
    line-height: var(--leading-relaxed);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto var(--space-8);
    padding: 0 var(--space-4);
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--vivid-sky-blue);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.testimonial-slide {
    max-width: 800px;
    margin: 0 auto var(--space-8);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
}

.testimonial-quote {
    margin-bottom: var(--space-6);
}

.testimonial-quote i {
    font-size: var(--text-3xl);
    color: var(--vivid-sky-blue);
    margin-bottom: var(--space-4);
}

.testimonial-quote p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.author-details {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-sm);
    opacity: 0.8;
}

.testimonial-rating .stars {
    color: #fbbf24;
    font-size: var(--text-lg);
}

.transformation-gallery {
    margin-top: var(--space-16);
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    text-align: center;
    margin-bottom: var(--space-4);
}

.gallery-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.transformation-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.transformation-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.before-placeholder {
    background: linear-gradient(135deg, var(--marian-blue), var(--federal-blue));
    opacity: 1;
}

.after-placeholder {
    background: linear-gradient(135deg, var(--pacific-cyan), var(--vivid-sky-blue));
    opacity: 0;
}

.transformation-card:hover .before-placeholder {
    opacity: 0;
}

.transformation-card:hover .after-placeholder {
    opacity: 1;
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content i {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-2);
    display: block;
}

.placeholder-content span {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
}

.transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(3, 4, 94, 0.8) 0%, 
        rgba(0, 119, 182, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.transformation-card:hover .transformation-overlay {
    opacity: 1;
}

.transformation-stats {
    text-align: center;
    color: white;
}

.transformation-stats .stat {
    display: block;
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
}

/* Responsive Testimonials - Mobile First */
@media (min-width: 480px) {
    .testimonials-section {
        padding: var(--space-16) 0;
    }
    
    .testimonials-header {
        margin-bottom: var(--space-12);
    }
    
    .testimonials-title {
        font-size: var(--text-3xl);
    }
    
    .testimonials-subtitle {
        font-size: var(--text-lg);
    }
    
    .stats-grid {
        gap: var(--space-6);
        margin-bottom: var(--space-12);
    }
    
    .stat-item {
        padding: var(--space-6);
    }
    
    .stat-number {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-2);
    }
    
    .stat-label {
        font-size: var(--text-base);
    }
    
    .testimonial-slide {
        padding: var(--space-6);
        margin-bottom: var(--space-12);
    }
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: var(--space-20) 0;
    }
    
    .testimonials-header {
        margin-bottom: var(--space-16);
    }
    
    .testimonials-title {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-4);
    }
    
    .testimonials-subtitle {
        font-size: var(--text-xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-8);
        margin-bottom: var(--space-16);
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .testimonial-slide {
        padding: var(--space-8);
        margin-bottom: var(--space-16);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-quote p {
        font-size: var(--text-xl);
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-preview-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding: 0 var(--space-4);
}

.services-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-3);
}

.services-subtitle {
    font-size: var(--text-base);
    color: var(--marian-blue);
    opacity: 0.8;
    line-height: var(--leading-relaxed);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-4);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gradient-accent);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    z-index: 10;
}

.service-card-header {
    text-align: center;
    margin-bottom: var(--space-4);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    font-size: var(--text-2xl);
    color: var(--federal-blue);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.service-tagline {
    font-size: var(--text-sm);
    color: var(--marian-blue);
    opacity: 0.8;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
    margin-bottom: var(--space-6);
}

.service-features {
    flex: 1;
    margin-bottom: var(--space-6);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    color: var(--federal-blue);
}

.feature-item i {
    color: var(--pacific-cyan);
    font-size: var(--text-lg);
}

.service-pricing {
    text-align: center;
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.price-original {
    font-size: var(--text-xl);
    color: var(--marian-blue);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-amount {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
}

.price-period {
    font-size: var(--text-lg);
    color: var(--marian-blue);
}

.price-note {
    font-size: var(--text-sm);
    color: var(--marian-blue);
    opacity: 0.8;
}

.service-card-footer {
    margin-top: auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: var(--weight-semibold);
    transition: all var(--duration-normal) var(--ease-out);
    width: 100%;
    justify-content: center;
}

.service-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.services-cta {
    text-align: center;
    padding: var(--space-12);
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.services-cta-subtitle {
    font-size: var(--text-lg);
    color: var(--marian-blue);
    margin-bottom: var(--space-8);
}

.services-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

/* Fix for secondary button in services CTA */
.services-cta .btn-hero.btn-secondary {
    background: white;
    color: var(--federal-blue);
    border: 2px solid var(--federal-blue);
}

.services-cta .btn-hero.btn-secondary:hover {
    background: var(--federal-blue);
    color: white;
}

/* Responsive Services - Mobile First */
@media (min-width: 480px) {
    .services-preview-section {
        padding: var(--space-16) 0;
    }
    
    .services-header {
        margin-bottom: var(--space-12);
    }
    
    .services-title {
        font-size: var(--text-3xl);
    }
    
    .services-subtitle {
        font-size: var(--text-lg);
    }
    
    .services-grid {
        gap: var(--space-6);
        margin-bottom: var(--space-12);
    }
    
    .service-card {
        padding: var(--space-6);
        border-radius: var(--radius-xl);
    }
    
    .service-card::before {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
    
    .service-card-header {
        margin-bottom: var(--space-6);
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: var(--text-3xl);
        margin-bottom: var(--space-4);
    }
    
    .service-title {
        font-size: var(--text-xl);
    }
    
    .service-tagline {
        font-size: var(--text-base);
    }
}

@media (min-width: 768px) {
    .services-preview-section {
        padding: var(--space-20) 0;
    }
    
    .services-header {
        margin-bottom: var(--space-16);
    }
    
    .services-title {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-4);
    }
    
    .services-subtitle {
        font-size: var(--text-xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
        margin-bottom: var(--space-16);
    }
    
    .service-card {
        padding: var(--space-8);
        border-radius: var(--radius-2xl);
    }
    
    .service-card::before {
        border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    }
    
    .service-title {
        font-size: var(--text-2xl);
    }
    
    .services-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    padding: var(--space-12) 0;
    background: var(--gradient-hero);
    color: white;
}

.final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
    color: white;
}

.final-cta-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    opacity: 0.9;
    line-height: var(--leading-relaxed);
}/*
 ===================================
   HERO VIDEO AND PARTICLES
   =================================== */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    display: none; /* Hidden by default, shown via JavaScript if video fails */
}

/* ===================================
   FOOTER STYLES
   =================================== */

.main-footer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-12) 0 0;
}

.footer-content {
    padding-bottom: var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: 0 var(--space-4);
}

.footer-column {
    text-align: center;
}

.footer-brand {
    margin-bottom: var(--space-4);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: white;
    margin-bottom: var(--space-2);
}

.footer-tagline {
    font-size: var(--text-base);
    font-style: italic;
    color: var(--vivid-sky-blue);
    margin-bottom: 0;
}

.footer-mission {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    opacity: 0.9;
    margin-bottom: var(--space-4);
}

.footer-social {
    margin-bottom: var(--space-4);
}

.social-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--vivid-sky-blue);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all var(--duration-normal) var(--ease-out);
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: var(--text-xl);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    color: white;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: var(--space-2);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all var(--duration-normal) var(--ease-out);
}

.footer-link:hover {
    color: var(--vivid-sky-blue);
    transform: translateX(4px);
}

.footer-contact {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.contact-item i {
    color: var(--vivid-sky-blue);
    font-size: var(--text-lg);
    margin-top: var(--space-1);
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--vivid-sky-blue);
    margin-bottom: var(--space-1);
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: var(--text-base);
    transition: color var(--duration-normal) var(--ease-out);
}

.contact-link:hover {
    color: var(--vivid-sky-blue);
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    margin: 0;
}

.credential-badges {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--vivid-sky-blue);
}

.credential-badge i {
    font-size: var(--text-sm);
}

.legal-nav {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--duration-normal) var(--ease-out);
}

.legal-link:hover {
    color: var(--vivid-sky-blue);
}

/* Responsive Footer - Mobile First */
@media (min-width: 480px) {
    .main-footer {
        padding: var(--space-16) 0 0;
    }
    
    .footer-content {
        padding-bottom: var(--space-12);
    }
    
    .footer-grid {
        gap: var(--space-8);
    }
    
    .footer-brand {
        margin-bottom: var(--space-6);
    }
    
    .footer-logo {
        font-size: var(--text-3xl);
    }
    
    .footer-tagline {
        font-size: var(--text-lg);
    }
    
    .footer-mission {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }
    
    .footer-social {
        margin-bottom: var(--space-6);
    }
}

@media (min-width: 768px) {
    .main-footer {
        padding: var(--space-20) 0 0;
    }
    
    .footer-content {
        padding-bottom: var(--space-16);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-column.brand-column {
        grid-column: span 2;
        text-align: center;
        margin-bottom: var(--space-8);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .credential-badges {
        justify-content: center;
    }
    
    .legal-nav {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-column.brand-column {
        grid-column: span 1;
        text-align: left;
        margin-bottom: 0;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-contact {
        margin: 0;
    }
}

/* ===================================
   MOBILE-FIRST ANIMATIONS & INTERACTIONS
   =================================== */

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile-optimized animations (battery-friendly) */
@media (max-width: 767px) {
    /* Disable complex animations on mobile to save battery */
    .hero-background,
    .hero-particles,
    .transformation-card:hover .transformation-overlay,
    .workflow-step:hover {
        animation: none;
        transition: none;
    }
    
    /* Simplified hover effects for touch devices */
    .btn-hero:hover,
    .service-btn:hover,
    .navbar-item:hover {
        transform: none;
    }
    
    /* Touch-friendly active states */
    .btn-hero:active,
    .service-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease-out;
    }
    
    .navbar-item:active {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Enhanced touch interactions */
.touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swipe indicators for mobile carousels */
.swipe-indicator {
    display: none;
}

@media (max-width: 767px) {
    .swipe-indicator {
        display: block;
        text-align: center;
        padding: var(--space-2);
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.7);
    }
    
    .swipe-indicator::before {
        content: '← Swipe →';
    }
}

/* Mobile-specific loading states */
.loading-mobile {
    position: relative;
    overflow: hidden;
}

.loading-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Simple particle animation fallback */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Mobile-optimized scroll animations */
@media (max-width: 767px) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

/* ===================================
   MOBILE NAVIGATION ENHANCEMENTS
   =================================== */

/* Smooth mobile menu transitions */
@media (max-width: 767px) {
    .navbar-menu {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .navbar-menu.is-active {
        animation: slideInLeft var(--duration-slow) var(--ease-out);
    }
    
    .navbar-item {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Touch-friendly form elements */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: border-color var(--duration-normal) var(--ease-out);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--pacific-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

/* Mobile-specific utility classes */
@media (max-width: 767px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
        max-width: none !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .mobile-no-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .mobile-small-text {
        font-size: var(--text-sm) !important;
    }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .tablet-hidden {
        display: none !important;
    }
    
    .tablet-full-width {
        width: 100% !important;
    }
}

/* Desktop-specific adjustments */
@media (min-width: 1024px) {
    .desktop-hidden {
        display: none !important;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background,
    .service-icon,
    .workflow-step-circle {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile button styling in navbar */
@media (max-width: 767px) {
    .navbar-item .buttons {
        width: 100%;
        justify-content: center;
        margin-top: var(--space-2);
    }
    
    .navbar-item .button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Dark mode support for mobile devices */
@media (prefers-color-scheme: dark) {
    :root {
        --text-on-dark: #ffffff;
        --bg-dark: #1a1a1a;
    }
    
    @media (max-width: 767px) {
        .navbar-menu {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }
    }
}

.hero-particles.active {
    display: block;
}

/* Video loading states */
.hero-video {
    transition: opacity var(--duration-slow) var(--ease-out);
}

.hero-video.loading {
    opacity: 0;
}

.hero-video.loaded {
    opacity: 0.3;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero-particles {
        display: none;
    }
}/* =
==================================
   ABOUT PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero-section {
    padding: var(--space-20) 0;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(3, 4, 94, 0.8) 0%, 
        rgba(0, 119, 182, 0.6) 50%, 
        rgba(0, 150, 199, 0.4) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

.about-hero-image {
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.professional-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(72, 202, 228, 0.2) 0%, 
        rgba(0, 180, 216, 0.1) 100%);
}

.about-hero-text {
    text-align: center;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-6);
    color: var(--vivid-sky-blue);
}

.about-hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

/* Responsive About Hero */
@media (min-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .about-hero-text {
        text-align: left;
    }
    
    .about-hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .professional-photo {
        width: 400px;
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: var(--text-5xl);
    }
    
    .about-hero-subtitle {
        font-size: var(--text-3xl);
    }
}

/* Story Timeline Section */
.story-timeline-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.timeline-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.timeline-subtitle {
    font-size: var(--text-xl);
    color: var(--marian-blue);
    opacity: 0.8;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + var(--space-8));
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + var(--space-8));
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: var(--space-6);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.timeline-card {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--pacific-cyan);
    margin-bottom: var(--space-2);
}

.timeline-icon {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--federal-blue);
    font-size: var(--text-lg);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: var(--space-4);
    right: auto;
}

.timeline-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-3);
}

.timeline-card-description {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
}

/* Responsive Timeline */
@media (max-width: 767px) {
    .timeline::before {
        left: var(--space-6);
    }
    
    .timeline-marker {
        left: var(--space-6);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: var(--space-16);
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-icon {
        right: var(--space-4);
        left: auto;
    }
}

/* Certifications Section */
.certifications-section {
    padding: var(--space-20) 0;
    background: var(--gradient-light);
}

.certifications-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.certifications-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.certifications-subtitle {
    font-size: var(--text-xl);
    color: var(--marian-blue);
    opacity: 0.8;
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.certification-badge {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.certification-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.certification-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.badge-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.badge-subtitle {
    font-size: var(--text-base);
    color: var(--marian-blue);
    margin-bottom: var(--space-3);
}

.badge-year {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--pacific-cyan);
    padding: var(--space-1) var(--space-3);
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: inline-block;
}

.badge-hover-info {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.certification-badge:hover .badge-hover-info {
    opacity: 1;
    max-height: 200px;
}

.hover-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.hover-description {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
}

/* Responsive Certifications */
@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: var(--space-20) 0;
    background: white;
}

.philosophy-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.philosophy-subtitle {
    font-size: var(--text-xl);
    color: var(--marian-blue);
    opacity: 0.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.philosophy-card-header {
    background: var(--gradient-primary);
    padding: var(--space-6);
    text-align: center;
    color: white;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--text-2xl);
}

.philosophy-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin: 0;
}

.philosophy-card-content {
    padding: var(--space-6);
}

.philosophy-description {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
    margin-bottom: var(--space-6);
}

.philosophy-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--federal-blue);
}

.detail-item i {
    color: var(--pacific-cyan);
    font-size: var(--text-lg);
}

/* Responsive Philosophy */
@media (min-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Quote Section */
.quote-section {
    padding: var(--space-20) 0;
    background: var(--gradient-hero);
    color: white;
}

.quote-callout {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: var(--text-5xl);
    color: var(--vivid-sky-blue);
    margin-bottom: var(--space-6);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.quote-attribution {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.quote-cta {
    display: flex;
    justify-content: center;
}

/* Responsive Quote */
@media (min-width: 768px) {
    .quote-text {
        font-size: var(--text-4xl);
    }
}

/* About Final CTA Section */
.about-final-cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-final-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    text-align: center;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.about-cta-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive About Final CTA */
@media (min-width: 768px) {
    .about-final-cta {
        grid-template-columns: 2fr 1fr;
        text-align: left;
    }
    
    .about-cta-content {
        text-align: left;
    }
    
    .about-cta-subtitle {
        margin: 0;
    }
    
    .about-cta-button {
        text-align: right;
    }
}/
* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero Section */
.contact-hero-section {
    padding: var(--space-20) 0;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Ensure proper stacking and no overlap */
    z-index: 1;
    margin-bottom: 0;
}

.contact-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(3, 4, 94, 0.8) 0%, 
        rgba(0, 119, 182, 0.6) 50%, 
        rgba(0, 150, 199, 0.4) 100%);
    z-index: -1;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-6);
    color: var(--vivid-sky-blue);
}

.contact-hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    opacity: 0.9;
}

/* Responsive Contact Hero */
@media (min-width: 768px) {
    .contact-hero-title {
        font-size: var(--text-5xl);
    }
    
    .contact-hero-subtitle {
        font-size: var(--text-3xl);
    }
}

@media (min-width: 1024px) {
    .contact-hero-title {
        font-size: var(--text-6xl);
    }
}

/* Contact Main Section */
.contact-main-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 2;
    /* Add subtle transition from hero */
    margin-top: 0;
    /* Add subtle shadow for separation */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

/* Add subtle transition between hero and main section */
.contact-main-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--vivid-sky-blue) 0%, 
        var(--pacific-cyan) 50%, 
        var(--blue-green) 100%);
    z-index: 1;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
}

/* Contact Information */
.contact-info-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.contact-info-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
    margin-bottom: var(--space-8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
    border: 2px solid transparent;
}

.contact-method:hover {
    border-color: var(--pacific-cyan);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.method-description {
    font-size: var(--text-base);
    color: var(--marian-blue);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-light);
    color: var(--federal-blue);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: var(--weight-medium);
    transition: all var(--duration-normal) var(--ease-out);
}

.method-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-1px);
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-6);
    text-align: center;
}

.form-field {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.form-control {
    position: relative;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--duration-normal) var(--ease-out);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--pacific-cyan);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: var(--leading-relaxed);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right var(--space-3) center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: var(--space-10);
}

.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.form-submit-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Contact Main */
@media (min-width: 1024px) {
    .contact-main-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--space-20) 0;
    background: white;
    position: relative;
    z-index: 3;
    /* Add subtle transition from previous section */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.faq-subtitle {
    font-size: var(--text-xl);
    color: var(--marian-blue);
    opacity: 0.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--pacific-cyan);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-3);
}

.faq-answer {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
    margin: 0;
}

/* Responsive FAQ */
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Final CTA Section */
.contact-final-cta-section {
    padding: var(--space-20) 0;
    background: var(--gradient-hero);
    color: white;
}

.contact-final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
    color: white;
}

.contact-cta-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

/* Responsive Contact Final CTA */
@media (min-width: 768px) {
    .contact-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-cta-title {
        font-size: var(--text-4xl);
    }
}/* ====
===============================
   SERVICES PAGE STYLES
   =================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 4, 94, 0.3);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-16) 0;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.services-hero-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.services-hero-philosophy {
    margin-top: var(--space-8);
}

.philosophy-points {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.philosophy-point {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
}

.philosophy-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
}

/* Package Recommendation Section */
.package-recommendation {
    padding: var(--space-20) 0;
    background: var(--light-cyan);
}

.recommendation-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.recommendation-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.recommendation-subtitle {
    font-size: var(--text-lg);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
}

.recommendation-quiz {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.quiz-question {
    display: none;
    text-align: center;
}

.quiz-question.active {
    display: block;
    animation: fadeInUp var(--duration-slow) var(--ease-out);
}

.quiz-question-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-8);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    justify-items: center;
}

/* Special handling for 3-option questions */
.quiz-question[data-question="2"] .quiz-options,
.quiz-question[data-question="3"] .quiz-options {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

.quiz-option {
    background: white;
    border: 2px solid var(--non-photo-blue);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-weight: var(--weight-medium);
    color: var(--marian-blue);
}

.quiz-option:hover {
    border-color: var(--pacific-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quiz-option.active {
    border-color: var(--honolulu-blue);
    background: var(--gradient-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quiz-option i {
    font-size: var(--text-2xl);
    color: var(--honolulu-blue);
}

.quiz-result {
    text-align: center;
    animation: fadeInUp var(--duration-slow) var(--ease-out);
}

.result-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-6);
}

.recommendation-card {
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-6);
}

.rec-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--text-2xl);
    color: white;
}

.rec-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-3);
}

.rec-description {
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.rec-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--honolulu-blue);
    margin-bottom: var(--space-6);
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: var(--space-20) 0;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.pricing-subtitle {
    font-size: var(--text-lg);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-12);
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--non-photo-blue-2);
    padding: var(--space-3);
    border-radius: var(--radius-full);
}

.toggle-label {
    font-family: var(--font-heading);
    font-weight: var(--weight-medium);
    color: var(--marian-blue);
    font-size: var(--text-sm);
}

.pricing-toggle-btn {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--non-photo-blue);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background-color var(--duration-normal) var(--ease-out);
}

.pricing-toggle-btn.active {
    background: var(--honolulu-blue);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: var(--radius-full);
    transition: transform var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.pricing-toggle-btn.active .toggle-slider {
    transform: translateX(30px);
}

.discount-badge {
    background: var(--gradient-accent);
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-base);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    margin-left: var(--space-2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--non-photo-blue);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--pacific-cyan);
}

.pricing-card.featured {
    border-color: var(--honolulu-blue);
    background: linear-gradient(135deg, white 0%, var(--light-cyan) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--text-2xl);
    color: white;
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.pricing-card-tagline {
    font-size: var(--text-base);
    color: var(--marian-blue);
    font-style: italic;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.price-original {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    color: var(--marian-blue);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--honolulu-blue);
}

.price-period {
    font-size: var(--text-lg);
    color: var(--marian-blue);
    font-weight: var(--weight-medium);
}

.price-note {
    font-size: var(--text-sm);
    color: var(--marian-blue);
    margin: 0;
}

.pricing-card-features {
    margin-bottom: var(--space-8);
}

.feature-category {
    margin-bottom: var(--space-6);
}

.feature-category:last-child {
    margin-bottom: 0;
}

.feature-category-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--non-photo-blue);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.feature-item i {
    color: var(--honolulu-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item.premium i {
    color: var(--pacific-cyan);
}

.pricing-card-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.pricing-btn.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.pricing-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-btn.btn-secondary {
    background: transparent;
    color: var(--honolulu-blue);
    border: 2px solid var(--honolulu-blue);
}

.pricing-btn.btn-secondary:hover {
    background: var(--honolulu-blue);
    color: white;
}

/* Service Details Section */
.service-details {
    padding: var(--space-16) 0;
    background: var(--non-photo-blue-2);
}

.service-detail-section {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp var(--duration-slow) var(--ease-out);
}

.detail-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--non-photo-blue);
}

.detail-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.detail-close {
    background: var(--non-photo-blue);
    border: none;
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--marian-blue);
    transition: all var(--duration-normal) var(--ease-out);
}

.detail-close:hover {
    background: var(--honolulu-blue);
    color: white;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.detail-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-6);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.process-step {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.process-number {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    flex-shrink: 0;
}

.process-content h5 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.process-content p {
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
}

.ideal-client-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.ideal-client-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.ideal-client-item i {
    color: var(--honolulu-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.success-story {
    background: var(--gradient-light);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
}

.success-quote {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--marian-blue);
    font-style: italic;
    margin: 0;
}

.success-quote cite {
    display: block;
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--honolulu-blue);
    font-style: normal;
}

.training-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.training-option h5 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.training-option h5 i {
    color: var(--honolulu-blue);
}

.training-option p {
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
}

.transformation-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.benefit-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.benefit-content h5 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.benefit-content p {
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.comparison-point {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.comparison-point i {
    color: var(--pacific-cyan);
    font-size: var(--text-lg);
}

/* FAQ Section */
.services-faq {
    padding: var(--space-20) 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.faq-subtitle {
    font-size: var(--text-lg);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--non-photo-blue);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
    border-color: var(--pacific-cyan);
}

.faq-item.active {
    border-color: var(--honolulu-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-6);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
}

.faq-question i {
    color: var(--honolulu-blue);
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Services Final CTA */
.services-final-cta {
    padding: var(--space-20) 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-6);
}

.final-cta-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-12);
    opacity: 0.95;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--vivid-sky-blue);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: var(--text-3xl);
    }
    
    .philosophy-points {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    
    .quiz-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quiz-question[data-question="2"] .quiz-options,
    .quiz-question[data-question="3"] .quiz-options {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .final-cta-stats {
        gap: var(--space-6);
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 50vh;
    }
    
    .services-hero-content {
        padding: var(--space-12) 0;
    }
    
    .recommendation-quiz {
        padding: var(--space-6);
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-question[data-question="2"] .quiz-options,
    .quiz-question[data-question="3"] .quiz-options {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .pricing-card {
        padding: var(--space-6);
    }
    
    .service-detail-section {
        padding: var(--space-6);
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Accent Class */
.text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}/* ==
=================================
   SERVICES PREVIEW SECTION (INDEX PAGE)
   =================================== */

.services-preview-section {
    padding: var(--space-20) 0;
    background: var(--light-cyan);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.service-preview-card {
    background: white;
    border: 2px solid var(--non-photo-blue);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pacific-cyan);
}

.service-preview-card.featured {
    border-color: var(--honolulu-blue);
    background: linear-gradient(135deg, white 0%, var(--light-cyan) 100%);
    transform: scale(1.02);
}

.service-preview-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.service-preview-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.service-preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin: var(--space-6) 0;
    flex: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.highlight-item i {
    color: var(--honolulu-blue);
    flex-shrink: 0;
}

.highlight-item.premium i {
    color: var(--pacific-cyan);
}

.service-preview-pricing {
    text-align: center;
    padding: var(--space-4);
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    margin-top: auto;
}

.preview-price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--honolulu-blue);
}

.preview-price-original {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    color: var(--marian-blue);
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: var(--space-2);
}

.savings-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-base);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    margin-left: var(--space-2);
}

.services-preview-cta {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--marian-blue);
}

.cta-feature i {
    color: var(--honolulu-blue);
    font-size: var(--text-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Responsive Design for Services Preview */
@media (max-width: 768px) {
    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .service-preview-card.featured {
        transform: none;
    }
    
    .service-preview-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-preview-cta {
        padding: var(--space-8);
    }
    
    .cta-title {
        font-size: var(--text-2xl);
    }
}/* Quiz
 Result Button Styling */
.recommendation-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    margin-top: var(--space-4);
}

.recommendation-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quiz-result .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    margin-top: var(--space-4);
}

.quiz-result .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-text {
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}/* =
==================================
   PAGE-SPECIFIC HEADER STYLES
   =================================== */

/* Base navbar adjustments */
body {
    padding-top: 70px; /* Account for fixed navbar */
}

.navbar {
    transition: all var(--duration-normal) var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Logo styling */
.logo {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--federal-blue);
}

.logo-accent {
    color: var(--honolulu-blue);
}

/* ===================================
   UNIFIED HEADER SYSTEM - ALL PAGES
   =================================== */

/* Base navbar styling for all pages */
.navbar {
    background: var(--gradient-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* All navbar items have consistent styling */
.navbar .navbar-item {
    color: white;
    font-weight: var(--weight-medium);
    transition: all var(--duration-normal) var(--ease-out);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-item:hover {
    color: var(--vivid-sky-blue);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Logo styling consistent across all pages */
.navbar .logo-text,
.navbar .logo-accent {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Homepage specific - transparent overlay effect */
.homepage-navbar {
    background: rgba(3, 4, 94, 0.85) !important;
}

/* Scrolled state for homepage navbar */
.homepage-navbar.scrolled {
    background: var(--gradient-primary) !important;
}

/* ===================================
   PAGE-SPECIFIC ELEMENTS (UNIFIED STYLING)
   =================================== */

/* About page coach info */
.coach-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: var(--space-4);
    padding-left: var(--space-4);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.coach-name {
    font-family: var(--font-heading);
    font-weight: var(--weight-medium);
    color: white;
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.coach-credentials {
    display: flex;
    gap: var(--space-2);
}

.credential {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services page breadcrumbs */
.page-breadcrumbs {
    display: flex;
    align-items: center;
    margin-left: var(--space-4);
    padding-left: var(--space-4);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.breadcrumb {
    margin: 0;
}

.breadcrumb ul {
    margin: 0;
    align-items: center;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-out);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.breadcrumb a:hover {
    color: var(--vivid-sky-blue);
}

.breadcrumb li.is-active a {
    color: var(--vivid-sky-blue);
    font-weight: var(--weight-semibold);
}

/* Dropdown menu styling */
.navbar-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-dropdown .navbar-item {
    color: var(--federal-blue) !important;
    padding: var(--space-3) var(--space-4);
    transition: all var(--duration-normal) var(--ease-out);
    text-shadow: none !important;
}

.navbar-dropdown .navbar-item:hover {
    background: var(--gradient-light);
    color: var(--federal-blue) !important;
}

.navbar-dropdown .icon {
    margin-right: var(--space-2);
    color: var(--honolulu-blue);
}

/* Contact page trust indicators */
.trust-indicators {
    display: flex;
    gap: var(--space-4);
    margin-left: var(--space-4);
    padding-left: var(--space-4);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.trust-icon {
    color: white;
    font-size: var(--text-sm);
}

.trust-text {
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

@media screen and (max-width: 1023px) {
    .coach-info,
    .page-breadcrumbs,
    .trust-indicators {
        display: none;
    }
    
    .navbar-menu {
        background: rgba(3, 4, 94, 0.95);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .navbar-menu .navbar-item {
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: var(--space-3) var(--space-4);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-menu .navbar-item:hover {
        color: var(--vivid-sky-blue);
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu .button.is-primary {
        width: 100%;
        justify-content: center;
        margin: var(--space-2) 0;
        background: var(--gradient-accent);
        color: white;
        border: none;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        min-height: 60px;
    }
    
    .logo {
        font-size: var(--text-lg);
    }
    
    .navbar-burger {
        height: 60px;
        width: 60px;
    }
}

/* ===================================
   NAVIGATION ANIMATIONS
   =================================== */

.navbar {
    animation: slideDown var(--duration-slow) var(--ease-out);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-item {
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all var(--duration-normal) var(--ease-out);
    transform: translateX(-50%);
}

.navbar-item:hover::after {
    width: 80%;
}

/* Mobile menu animations */
.navbar-menu.is-active {
    animation: slideDown var(--duration-normal) var(--ease-out);
}

.navbar-menu.is-active .navbar-item {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.navbar-menu.is-active .navbar-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-menu.is-active .navbar-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-menu.is-active .navbar-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-menu.is-active .navbar-item:nth-child(4) { animation-delay: 0.4s; }
.navbar-menu.is-active .navbar-item:nth-child(5) { animation-delay: 0.5s; }
.navbar-menu.is-active .navbar-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger menu animation */
.navbar-burger {
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar-burger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-burger span {
    background-color: white;
}

.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ===================================
   SCROLL BEHAVIOR
   =================================== */

.scroll-to {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

.navbar-item:focus,
.button:focus {
    outline: 2px solid var(--honolulu-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-item,
    .button {
        animation: none;
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}/* =======
============================
   HEADER ENHANCEMENTS & POLISH
   =================================== */

/* Ensure proper z-index stacking */
.navbar {
    z-index: 1000;
}

/* Logo hover effects */
.logo-link:hover .logo-text {
    color: var(--honolulu-blue) !important;
}

.logo-link:hover .logo-accent {
    color: var(--vivid-sky-blue) !important;
}

/* Button enhancements */
.button {
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--duration-slow) var(--ease-out);
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Dropdown menu enhancements */
.navbar-dropdown {
    animation: dropdownSlide var(--duration-normal) var(--ease-out);
    transform-origin: top center;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* Active page indicators */
.navbar-item.is-active {
    color: var(--honolulu-blue) !important;
    font-weight: var(--weight-semibold);
}

.navbar-item.is-active::after {
    width: 80%;
}

/* ===================================
   RESPONSIVE IMPROVEMENTS
   =================================== */

/* Tablet adjustments */
@media screen and (max-width: 1023px) and (min-width: 769px) {
    .about-navbar .coach-info {
        margin-left: var(--space-2);
        padding-left: var(--space-2);
    }
    
    .services-navbar .page-breadcrumbs {
        margin-left: var(--space-2);
        padding-left: var(--space-2);
    }
    
    .contact-navbar .trust-indicators {
        margin-left: var(--space-2);
        padding-left: var(--space-2);
        gap: var(--space-2);
    }
    
    .contact-navbar .trust-text {
        display: none;
    }
}

/* Small mobile adjustments */
@media screen and (max-width: 480px) {
    .logo {
        font-size: var(--text-base);
    }
    
    .navbar-item {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-3);
    }
    
    .button {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-3);
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* GPU acceleration for animations */
.navbar,
.navbar-item,
.button {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .navbar {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
}

/* ===================================
   HIGH CONTRAST MODE SUPPORT
   =================================== */

@media (prefers-contrast: high) {
    .navbar {
        background: white !important;
        border-bottom: 2px solid black !important;
    }
    
    .navbar-item {
        color: black !important;
    }
    
    .homepage-navbar .navbar-item {
        background: rgba(0, 0, 0, 0.8) !important;
        color: white !important;
    }
    
    .button.is-primary {
        background: black !important;
        color: white !important;
        border: 2px solid white !important;
    }
}

/* ===================================
   FOCUS MANAGEMENT
   =================================== */

/* Enhanced focus styles for better accessibility */
.navbar-item:focus-visible,
.button:focus-visible {
    outline: 3px solid var(--honolulu-blue);
    outline-offset: 2px;
    border-radius: var(--radius-base);
}

/* Skip focus on mouse users */
.navbar-item:focus:not(:focus-visible),
.button:focus:not(:focus-visible) {
    outline: none;
}

/* ===================================
   LOADING STATES
   =================================== */

.navbar.loading {
    opacity: 0.7;
    pointer-events: none;
}

.navbar.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    animation: loadingBar 1s ease-in-out infinite;
}

@keyframes loadingBar {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}/* =======
============================
   PRIVACY & TERMS PAGE HEADERS
   =================================== */

/* Privacy and Terms pages use the same unified styling as other pages *//* ==
=================================
   HEADER CONTRAST & READABILITY FIXES
   =================================== */

/* Ensure all navbar text has proper contrast */
.navbar-item {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Button contrast improvements */
.navbar .button.is-primary {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-shadow: none;
}

.navbar .button.is-primary:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Logo contrast enhancement */
.logo {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb contrast */
.breadcrumb a {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Trust indicators contrast */
.trust-item {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Coach credentials contrast */
.coach-name,
.credential {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dropdown menu contrast */
.navbar-dropdown {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.navbar-dropdown .navbar-item {
    text-shadow: none;
}

/* Mobile menu enhanced contrast */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-menu .navbar-item {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
}

/* High contrast mode enhancements */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 3px solid white !important;
    }
    
    .navbar-item {
        text-shadow: none !important;
        font-weight: var(--weight-bold) !important;
    }
    
    .logo {
        text-shadow: none !important;
        font-weight: var(--weight-bold) !important;
    }
}/* =
==================================
   PAGE-SPECIFIC CTA BUTTONS (ONLY DIFFERENCE)
   =================================== */

/* Base button styling for all pages */
.navbar .button.is-primary {
    background: var(--gradient-accent);
    border: none;
    color: white;
    font-weight: var(--weight-semibold);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar .button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Homepage button - "Get Started" */
.homepage-navbar .button.is-primary {
    background: var(--gradient-accent);
}

/* About page button - "Let's Talk" */
.about-navbar .button.is-primary {
    background: linear-gradient(135deg, var(--vivid-sky-blue) 0%, var(--pacific-cyan) 100%);
}

/* Services page button - "Choose Program" */
.services-navbar .button.is-primary {
    background: linear-gradient(135deg, var(--non-photo-blue) 0%, var(--vivid-sky-blue) 100%);
    color: var(--federal-blue);
    text-shadow: none;
}

/* Contact page button - "Email Direct" */
.contact-navbar .button.is-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-navbar .button.is-primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   NAVBAR ALIGNMENT FIXES
   =================================== */

/* Ensure all navbar elements are properly aligned */
.navbar-brand {
    display: flex;
    align-items: center;
    min-height: 70px;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-start,
.navbar-end {
    display: flex;
    align-items: center;
}

.navbar-item.has-dropdown {
    display: flex;
    align-items: center;
}

/* Fix dropdown alignment */
.navbar-link {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 var(--space-4);
}

/* Ensure page-specific elements align properly */
.coach-info,
.page-breadcrumbs,
.trust-indicators {
    height: 70px;
    display: flex;
    align-items: center;
}

/* ===================================
   ENHANCED TEXT SHADOWS FOR READABILITY
   =================================== */

/* Strong text shadows for all navbar text */
.navbar .navbar-item {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.coach-name,
.credential,
.trust-text,
.breadcrumb a {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Button text shadows */
.navbar .button.is-primary {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.services-navbar .button.is-primary {
    text-shadow: none; /* Light background doesn't need shadow */
}/* ====
===============================
   NAVBAR SEPARATORS & QUICK JUMP CARD
   =================================== */

/* Navbar separator between same-page and different-page links */
.navbar-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 var(--space-3);
    align-self: center;
    position: relative;
}

.navbar-separator::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -2px;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.navbar-separator::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -2px;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Special Quick Jump Card for Services Page */
.quick-jump-container {
    position: relative;
}

.quick-jump-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-1) var(--space-3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--duration-normal) var(--ease-out);
}

.quick-jump-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.quick-jump-button {
    color: white !important;
    font-weight: var(--weight-semibold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
}

.quick-jump-button:hover {
    color: var(--vivid-sky-blue) !important;
    background: none !important;
}

.quick-jump-button .icon {
    color: var(--vivid-sky-blue);
}

/* Enhanced dropdown positioning for Quick Jump */
.quick-jump-container .navbar-dropdown {
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-jump-container .navbar-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}

/* Mobile responsive adjustments */
@media screen and (max-width: 1023px) {
    .navbar-separator {
        display: none;
    }
    
    .quick-jump-card {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin: var(--space-2) var(--space-4);
        border-radius: var(--radius-lg);
    }
    
    .quick-jump-container .navbar-dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: var(--space-2) var(--space-4);
        border-radius: var(--radius-lg);
    }
    
    .quick-jump-container .navbar-dropdown::before {
        display: none;
    }
    
    .quick-jump-container .navbar-dropdown .navbar-item {
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Tablet adjustments */
@media screen and (max-width: 1023px) and (min-width: 769px) {
    .navbar-separator {
        height: 25px;
        margin: 0 var(--space-2);
    }
}

/* Small mobile adjustments */
@media screen and (max-width: 480px) {
    .quick-jump-card {
        margin: var(--space-1) var(--space-2);
        padding: var(--space-1) var(--space-2);
    }
    
    .quick-jump-button {
        font-size: var(--text-sm);
        gap: var(--space-1);
    }
}/
* ===================================
   CLIENT LOGIN BUTTON STYLING
   =================================== */

/* Client Login button - subtle but visible */
.client-login-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-weight: var(--weight-medium);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all var(--duration-normal) var(--ease-out);
    margin-left: var(--space-2);
}

.client-login-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.client-login-btn .icon {
    color: rgba(255, 255, 255, 0.8);
}

.client-login-btn:hover .icon {
    color: white;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 1023px) {
    .navbar-menu .client-login-btn {
        width: 100%;
        justify-content: center;
        margin: var(--space-1) 0;
        margin-left: 0;
    }
}/* 
===================================
   LOGIN PAGE STYLING
   =================================== */

/* Login page specific navbar */
.login-navbar {
    background: var(--gradient-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Login hero section */
.login-hero-section {
    background: var(--gradient-hero);
    padding: var(--space-20) 0 var(--space-16);
    text-align: center;
    color: white;
}

.login-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-hero-subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Login form section */
.login-form-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--light-cyan) 0%, white 100%);
}

.login-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    max-width: 1200px;
    margin: 0 auto;
}

/* Login form card */
.login-form-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-form-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.form-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.form-subtitle {
    color: var(--marian-blue);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* Form styling */
.login-form .field {
    margin-bottom: var(--space-6);
}

.login-form .label {
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-2);
}

.login-form .control.has-icons-left {
    position: relative;
}

.login-form .input {
    border: 2px solid var(--non-photo-blue);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: all var(--duration-normal) var(--ease-out);
    padding-left: 3rem; /* Make room for the icon */
}

.login-form .input.is-large {
    height: 3.5rem; /* Ensure consistent height */
    line-height: 1.5;
}

.login-form .input:focus {
    border-color: var(--honolulu-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Icon positioning fix */
.login-form .control.has-icons-left .icon.is-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marian-blue);
    font-size: var(--text-base);
    z-index: 2;
    pointer-events: none;
}

/* Ensure icon stays centered when input is focused */
.login-form .control.has-icons-left .input:focus + .icon.is-left {
    color: var(--honolulu-blue);
}

.login-form .button.is-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--weight-semibold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all var(--duration-normal) var(--ease-out);
}

.login-form .button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Form footer */
.login-form-footer {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--non-photo-blue);
}

.forgot-password {
    text-align: center;
    margin-bottom: var(--space-6);
}

.forgot-link {
    color: var(--honolulu-blue);
    text-decoration: none;
    font-weight: var(--weight-medium);
    transition: color var(--duration-normal) var(--ease-out);
}

.forgot-link:hover {
    color: var(--federal-blue);
}

.new-client {
    text-align: center;
    padding: var(--space-4);
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
}

.new-client p {
    margin-bottom: var(--space-2);
    color: var(--marian-blue);
}

.signup-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--federal-blue);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    padding: var(--space-2) var(--space-4);
    border: 2px solid var(--federal-blue);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.signup-link:hover {
    color: white;
    background: var(--federal-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(3, 4, 94, 0.2);
}

/* Login benefits sidebar */
.login-benefits {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-6);
    text-align: center;
}

.benefit-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.benefit-item:hover {
    background: var(--gradient-light);
    transform: translateY(-2px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-lg);
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    margin-bottom: var(--space-1);
}

.benefit-content p {
    color: var(--marian-blue);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

/* Testimonial */
.testimonial {
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: var(--space-4);
}

.testimonial-quote i {
    font-size: var(--text-2xl);
    opacity: 0.7;
    margin-bottom: var(--space-2);
}

.testimonial-quote p {
    font-style: italic;
    line-height: var(--leading-relaxed);
}

/* Login page testimonial author - single source of truth */
.login-benefits .testimonial .testimonial-author {
    font-weight: var(--weight-semibold) !important;
    color: white !important;
    opacity: 1 !important;
    display: block !important;
}

.login-benefits .testimonial .testimonial-author strong {
    color: white !important;
}

/* Security notice */
.security-notice-section {
    padding: var(--space-12) 0;
    background: var(--federal-blue);
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    color: white;
    text-align: center;
}

.security-icon {
    font-size: var(--text-3xl);
    color: var(--vivid-sky-blue);
}

.security-content h4 {
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
}

.security-content p {
    opacity: 0.9;
    font-size: var(--text-sm);
}

/* Mobile responsive */
@media screen and (max-width: 1023px) {
    .login-form-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .login-hero-title {
        font-size: var(--text-4xl);
    }
    
    .login-form-card,
    .login-benefits {
        padding: var(--space-6);
    }
    
    .security-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .login-hero-section {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .login-hero-title {
        font-size: var(--text-3xl);
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
    }
}
/* =======
============================
   FAQ SECTION STYLES
   =================================== */

.faq-section {
    padding: var(--space-20) 0;
    background: var(--gradient-light);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--federal-blue);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--marian-blue);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

.faq-grid {
    display: grid;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-base);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: var(--space-6);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.faq-question:hover {
    background: rgba(0, 119, 182, 0.05);
}

.faq-question:focus {
    outline: 2px solid var(--honolulu-blue);
    outline-offset: -2px;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--federal-blue);
    line-height: var(--leading-snug);
    flex: 1;
    margin-right: var(--space-4);
}

.faq-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--text-sm);
    transition: all var(--duration-normal) var(--ease-out);
    flex-shrink: 0;
}

.faq-item.is-active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--gradient-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    background: rgba(0, 119, 182, 0.02);
}

.faq-item.is-active .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--marian-blue);
    line-height: var(--leading-relaxed);
    margin: 0;
    padding-top: var(--space-2);
}

/* Responsive FAQ Styles */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: var(--space-16) 0;
    }
    
    .faq-title {
        font-size: var(--text-3xl);
    }
    
    .faq-subtitle {
        font-size: var(--text-base);
    }
    
    .faq-question {
        padding: var(--space-5);
    }
    
    .faq-question-text {
        font-size: var(--text-base);
        margin-right: var(--space-3);
    }
    
    .faq-toggle-icon {
        width: 28px;
        height: 28px;
        font-size: var(--text-xs);
    }
    
    .faq-item.is-active .faq-answer {
        padding: 0 var(--space-5) var(--space-5);
    }
}

@media screen and (max-width: 480px) {
    .faq-question {
        padding: var(--space-4);
    }
    
    .faq-question-text {
        font-size: var(--text-sm);
    }
    
    .faq-item.is-active .faq-answer {
        padding: 0 var(--space-4) var(--space-4);
    }
}

/* Accessibility improvements for FAQ */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-toggle-icon,
    .faq-answer {
        transition: none;
    }
    
    .faq-item.is-active .faq-answer {
        max-height: none;
    }
}

/* High contrast mode for FAQ */
@media (prefers-contrast: high) {
    .faq-item {
        border: 2px solid black;
    }
    
    .faq-question-text {
        color: black !important;
        font-weight: var(--weight-bold);
    }
    
    .faq-toggle-icon {
        background: black !important;
        color: white !important;
    }
    
    .faq-answer p {
        color: black !important;
    }
}/* =======
============================
   MOBILE HAMBURGER MENU - ESSENTIAL STYLES
   =================================== */

/* Mobile Hamburger Button */
.navbar-burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    position: relative;
    z-index: 1001;
    margin-left: auto;
}

.navbar-burger span {
    display: block !important;
    width: 24px;
    height: 2px;
    background: white !important;
    border-radius: 1px;
    transition: all 0.3s ease;
    position: relative;
    margin: 2px 0;
}

/* Hamburger Animation */
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.navbar-menu {
    position: fixed !important;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #03045e 0%, #0077b6 100%) !important;
    transform: translateX(-100%);
    transition: transform 0.5s ease-out;
    overflow-y: auto;
    z-index: 999;
    display: block !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.navbar-menu.is-active {
    transform: translateX(0) !important;
}

/* Mobile Menu Items */
.navbar-end {
    display: flex !important;
    flex-direction: column;
    padding: 24px 16px;
    gap: 8px;
}

.navbar-item {
    display: flex !important;
    align-items: center;
    padding: 16px 24px !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent !important;
    min-height: 56px;
}

.navbar-item:hover,
.navbar-item:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #48cae4 !important;
    transform: translateX(8px);
}

.navbar-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 16px 24px;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .navbar-burger {
        display: none !important;
    }
    
    .navbar-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }
    
    .navbar-end {
        flex-direction: row !important;
        padding: 0 !important;
        gap: 8px;
        align-items: center;
    }
    
    .navbar-item {
        padding: 12px 16px !important;
        font-size: 16px;
        min-height: auto;
        border-radius: 4px;
    }
    
    .navbar-item:hover,
    .navbar-item:focus {
        transform: none;
    }
    
    .navbar-separator {
        display: none;
    }
}

/* Mobile-specific button styling */
@media (max-width: 767px) {
    .navbar-item .buttons {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .navbar-item .button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}