/* assets/style-op.css */
/* ===== Import Modern Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Reset & Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-purple: #8B5A8F;
    --primary-purple-dark: #6B4A6F;
    --primary-purple-light: #AB7AAF;
    --sage-green: #87A96B;
    --sage-green-dark: #677A4B;
    --coral-accent: #E6A08C;
    --warm-cream: #FDF6F0;
    --warm-beige: #F5E6D3;
    
    /* Text Colors */
    --text-primary: #2C2C2C;
    --text-secondary: #5C5C5C;
    --text-light: #8C8C8C;
    
    /* Shadows */
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Enhanced Typography Font Stack */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Sora', 'Outfit', sans-serif;
    --font-accent: 'Inter', 'Outfit', sans-serif;
}

/* ===== Base Styles ===== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-weight: 400;
    letter-spacing: -0.01em;
}

body.loaded {
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

/* Enhanced Typography - Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

h1 { 
    font-size: clamp(3rem, 5vw, 4.5rem);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 60%, rgba(139, 90, 143, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 900;
}

h2 { 
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

h3 { 
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
}

h4 { 
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h5 { 
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
}

h6 { 
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
}

/* Enhanced Paragraph Styles */
p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-size: 1.0625rem;
}

/* Enhanced Links */
a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 500;
    position: relative;
}

a:hover {
    color: var(--primary-purple-dark);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Organic Background ===== */
.organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--sage-green) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--coral-accent) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* ===== Scroll Animation Classes ===== */
.scroll-fade-up,
.scroll-fade-in,
.scroll-fade-right,
.scroll-fade-left,
.scroll-scale {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right {
    transform: translateX(-30px);
}

.scroll-fade-left {
    transform: translateX(30px);
}

.scroll-scale {
    transform: scale(0.8);
}

.scroll-fade-up.visible,
.scroll-fade-in.visible,
.scroll-fade-right.visible,
.scroll-fade-left.visible,
.scroll-scale.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Floating animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% {
        transform: translateY(-2px) rotate(0.5deg);
    }
    50% { 
        transform: translateY(-4px) rotate(0deg); 
    }
    75% {
        transform: translateY(-2px) rotate(-0.5deg);
    }
}

/* ===== Navigation ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 65px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition-base);
}

.logo-tagline {
    font-size: 0.8125rem;
    color: var(--primary-purple);
    font-weight: 700;
    border-left: 2px solid var(--primary-purple);
    padding-left: 0.3rem;
    line-height: 1.2;
    font-family: var(--font-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    white-space: nowrap;
    font-family: var(--font-accent);
    letter-spacing: -0.01em;
    font-size: 0.9375rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link:hover::after {
    width: 100%;
}

/* Active Navigation Link Styles */
.nav-link.active {
    color: var(--primary-purple);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
}

/* Alternative active style with background */
.nav-link.active-alt {
    background: rgba(139, 90, 143, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: -0.5rem -1rem;
}

.get-started-button {
    background: var(--primary-purple);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 90, 143, 0.3);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.get-started-button:hover {
    background: var(--primary-purple-dark);
    box-shadow: 0 8px 30px rgba(139, 90, 143, 0.5);
}

/* ===== Shine Effect for CTA Buttons ===== */
.get-started-button,
.cta-button.primary,
.submit-button {
    position: relative;
    overflow: hidden;
    animation: subtlePulse 4s ease-in-out infinite;
}

.get-started-button::before,
.cta-button.primary::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: none;
    animation: shine 12s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    10%, 100% {
        left: 100%;
    }
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(139, 90, 143, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(139, 90, 143, 0.4);
    }
}

/* Ensure text is above the shine effect */
.get-started-button *,
.cta-button.primary *,
.submit-button * {
    position: relative;
    z-index: 1;
}

/* Adjust hover states to work with pulse animation */
.get-started-button:hover,
.cta-button.primary:hover,
.submit-button:hover {
    animation: hoverPulse 0.3s ease-in-out forwards;
}

@keyframes hoverPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05) translateY(-3px);
    }
}

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Close Button */
.mobile-menu-header {
    display: none;
    position: relative;
    padding: 1.5rem 1rem;
    border-bottom: 2px solid var(--warm-cream);
    margin-bottom: 1rem;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.mobile-close-btn {
    display: none;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 1002;
}

.mobile-close-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.mobile-close-btn span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-btn span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    padding: 7rem 2rem 5rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(139, 90, 143, 0.05) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(135, 169, 107, 0.15);
    color: var(--sage-green);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.05;
    background: none;
    -webkit-text-fill-color: inherit;
}

.hero h1 .highlight {
    position: relative;
    z-index: 1;
}

.hero h1 .highlight::before {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.1em;
    right: -0.1em;
    height: 0.3em;
    background: linear-gradient(135deg, rgba(139, 90, 143, 0.3) 0%, rgba(139, 90, 143, 0.15) 100%);
    z-index: -1;
    transform: skewY(-2deg);
    transition: all 0.3s ease;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 450;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition-base);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.cta-button.primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 6px 20px rgba(139, 90, 143, 0.3);
}

.cta-button.primary:hover {
    background: var(--primary-purple-dark);
    box-shadow: 0 10px 30px rgba(139, 90, 143, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-button.secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
    font-weight: 400;
}

/* ===== Hero Visual ===== */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    animation: fadeInLeft 1.2s ease;
}

.hero-trust-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-large);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--sage-green);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: default;
    z-index: 10;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

.hero-trust-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(135, 169, 107, 0.2);
}

.hero-trust-badge i {
    font-size: 1.25rem;
    color: var(--sage-green);
}

.hero-image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-5px) rotateY(-2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(139, 90, 143, 0.1) 100%
    );
    pointer-events: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    border: 1px solid rgba(139, 90, 143, 0.1);
}

.stat-card.visible {
    animation: statCardReveal 0.6s ease forwards;
}

@keyframes statCardReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: block;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 90, 143, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-purple);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ===== Section Defaults ===== */
section {
    padding: 5rem 2rem;
    scroll-margin-top: 65px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2 .highlight {
    position: relative;
    z-index: 1;
}

.section-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -0.1em;
    right: -0.1em;
    height: 0.15em;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 450;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ===== About Section ===== */
.about-section {
    background: var(--warm-beige);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    display: block;
}

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

.mission-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.mission-card p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: block;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 90, 143, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.value-card:hover::before {
    opacity: 1;
}

.value-card h4 {
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.value-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* ===== Services Section ===== */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(139, 90, 143, 0.05) 100%);
    border: 2px solid var(--primary-purple);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 90, 143, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--sage-green) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: rgba(139, 90, 143, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.service-features {
    color: var(--text-secondary);
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 450;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: 800;
}

/* ===== Process Section ===== */
.process-section {
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(135, 169, 107, 0.08) 100%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px;
}

.timeline-line {
    position: absolute;
    left: 59px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--sage-green) 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(139, 90, 143, 0.3);
    z-index: 1;
}

.timeline-item:last-child .timeline-marker {
    background: var(--sage-green);
    box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.0625rem;
}

/* ===== Success Stories Section ===== */
.success-section {
    background: white;
}

.testimonials-slider {
    margin-bottom: 4rem;
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(139, 90, 143, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 2rem;
    color: var(--primary-purple);
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content blockquote {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 450;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .testimonial-author {
    text-align: right;
    justify-content: flex-end;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
}

.author-photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    text-align: center;
    padding: 0.5rem;
    border: 3px solid var(--primary-purple);
    font-family: var(--font-accent);
}

.author-info strong {
    display: block;
    color: var(--primary-purple);
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.rating {
    color: #FFD700;
    margin-top: 0.5rem;
}

.rating i {
    font-size: 0.875rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--warm-cream);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.testimonial-card .rating {
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.results-showcase {
    background: var(--warm-beige);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.results-showcase:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.results-showcase h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 800;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.result-card i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: block;
}

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

.result-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--warm-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-purple);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--text-primary);
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 1.0625rem;
}

.office-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.office-hours:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.office-hours h4 {
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.office-hours h4 i {
    font-size: 1rem;
}

.office-hours p {
    font-size: 1rem;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trust-badge {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trust-badge-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 90, 143, 0.1);
    border-radius: 25px;
    font-size: 0.875rem;
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    font-weight: 600;
}

.trust-badge-placeholder i {
    font-size: 1.25rem;
}

.contact-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.contact-cta:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

.contact-cta p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.contact-cta ul {
    margin-bottom: 2rem;
}

.contact-cta li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    font-weight: 450;
}

.contact-cta li i {
    color: var(--sage-green);
    font-size: 1rem;
    font-weight: 700;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo-circle {
    height: 80px;
    width: 90px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

.footer-logo-container i {
    font-size: 2rem;
    color: var(--primary-purple-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-weight: 450;
}

.footer-column a:hover {
    color: white;
    padding-left: 10px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-purple-light);
}

.footer-certifications {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.cert-badge {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.cert-badge-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-badge-placeholder i {
    font-size: 1rem;
    color: var(--primary-purple-light);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--primary-purple-light);
    font-weight: 500;
}

/* ===== 404 Page Styles ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(139, 90, 143, 0.05) 100%);
}

.error-content {
    max-width: 700px;
    text-align: center;
    position: relative;
}

.error-404 {
    font-size: clamp(6rem, 10vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.error-badge {
    display: inline-block;
    background: rgba(135, 169, 107, 0.15);
    color: var(--sage-green);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.error-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.error-message {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 450;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Quick Links */
.quick-links {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.quick-links:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

.quick-links-title {
    font-size: 1.25rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.link-item:hover {
    background: var(--warm-cream);
    color: var(--primary-purple);
    transform: translateX(5px);
}

.link-icon {
    width: 24px;
    height: 24px;
    background: rgba(135, 169, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green);
    font-weight: 800;
    font-size: 0.875rem;
}

/* Stethoscope SVG */
.stethoscope {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    right: -70px;
    opacity: 0.05;
    transform: rotate(-20deg);
    color: var(--primary-purple);
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text a {
    color: var(--primary-purple-light);
}

.footer-text a:hover {
    color: white;
}

/* ===== Form Modal Styles ===== */
.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    padding: 3rem;
}

.form-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--warm-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-purple);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 450;
}

/* Form Styles in Modal */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--warm-cream);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 450;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 90, 143, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    background: var(--primary-purple);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 6px 20px rgba(139, 90, 143, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-accent);
}

.submit-button:hover {
    background: var(--primary-purple-dark);
    box-shadow: 0 10px 30px rgba(139, 90, 143, 0.5);
}

.form-disclaimer {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-style: italic;
}

.form-disclaimer i {
    font-size: 1rem;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
}

/* ===== Policy Modal Styles ===== */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.policy-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.policy-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.policy-modal-content {
    position: relative;
    background: white;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.policy-modal.active .policy-modal-content {
    transform: scale(1) translateY(0);
}

.policy-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--warm-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.policy-modal-close:hover {
    background: var(--primary-purple);
    color: white;
    transform: rotate(90deg);
}

.policy-modal-body {
    overflow-y: auto;
    flex: 1;
}

.policy-hero {
    background: linear-gradient(135deg, rgba(139, 90, 143, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 90, 143, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.policy-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--sage-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.policy-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 450;
}

.policy-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.policy-content-wrapper {
    padding: 2rem;
}

.policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Policy Sidebar */
.policy-sidebar {
    position: sticky;
    top: 0;
    height: fit-content;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.policy-nav-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.policy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    background: rgba(139, 90, 143, 0.05);
    font-weight: 500;
}

.policy-nav-item:hover {
    background: rgba(139, 90, 143, 0.1);
    color: var(--primary-purple);
    transform: translateX(5px);
}

.policy-nav-item.active {
    background: var(--primary-purple);
    color: white;
    font-weight: 600;
}

.policy-nav-number {
    font-weight: 700;
    color: var(--primary-purple);
}

.policy-nav-item.active .policy-nav-number {
    color: white;
}

/* Policy Content */
.policy-main-content {
    padding-right: 2rem;
}

.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.policy-section h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, var(--primary-purple), var(--sage-green));
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-purple-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.policy-section ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.policy-section ul li::marker {
    color: var(--sage-green);
}

/* Policy Info Cards */
.policy-info-card {
    background: linear-gradient(135deg, rgba(139, 90, 143, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(139, 90, 143, 0.1);
    position: relative;
    overflow: hidden;
}

.policy-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--sage-green));
}

.policy-info-card h3 {
    font-weight: 700;
    color: var(--primary-purple-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* Policy Highlight Box */
.policy-highlight-box {
    background: rgba(139, 90, 143, 0.08);
    border-left: 4px solid var(--primary-purple);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.policy-highlight-box p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Policy Security Grid */
.policy-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.policy-security-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 209, 0.2);
    transition: all 0.3s ease;
}

.policy-security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.15);
    border-color: var(--sage-green);
}

.policy-security-item h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.policy-security-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.policy-security-item p {
    font-size: 1rem;
}

/* Policy Contact Section */
.policy-contact-section {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08) 0%, rgba(139, 90, 143, 0.08) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-contact-section h2 {
    padding-left: 0;
}

.policy-contact-section h2::before {
    display: none;
}

.policy-contact-section h3 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.policy-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.policy-contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 90, 143, 0.2);
    font-size: 1rem;
}

.policy-contact-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-purple), var(--sage-green));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 90, 143, 0.3);
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalBackdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    /* Policy Modal Responsive */
    .policy-layout {
        grid-template-columns: 1fr;
    }
    
    .policy-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid var(--warm-cream);
    }
    
    .policy-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Navigation */
    #navbar {
        min-height: 60px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu-header {
        display: flex !important;
    }
    
    .mobile-close-btn {
        display: block !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        justify-content: flex-start;
        align-items: stretch;
        left: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.125rem;
        display: block;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--text-primary) !important;
        font-weight: 500;
    }
    
    .nav-link:first-of-type {
        border-top: none;
    }
    
    .nav-link:hover {
        background: var(--warm-cream);
        color: var(--primary-purple) !important;
    }
    
    /* Mobile active state for nav links */
    .nav-link.active {
        background: var(--primary-purple);
        color: white !important;
        font-weight: 600;
    }
    
    .get-started-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem !important;
        font-size: 1.125rem;
        display: block;
        margin: 2rem auto 0;
        max-width: 280px;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1; /* Move image above text on mobile */
        padding-top: 0;
    }
    
    .hero-trust-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 1rem;
        display: inline-flex;
        animation: none;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image-container:hover {
        transform: none; /* Disable 3D effect on mobile */
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-trust-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 1rem;
        display: inline-flex;
        animation: none;
    }
    
    /* Sections */
    section {
        padding: 3rem 1rem;
        scroll-margin-top: 60px;
    }
    
    .services-grid,
    .values-grid,
    .testimonials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 80px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        left: -45px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-featured {
        padding: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.125rem;
    }
    
    .author-photo {
        width: 50px;
        height: 50px;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* Modal */
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Policy Modal Mobile */
    .policy-modal-content {
        margin: 0.5rem;
        max-height: 100vh;
        border-radius: 15px;
    }
    
    .policy-hero {
        padding: 2rem 1.5rem;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-content-wrapper {
        padding: 1.5rem;
    }
    
    .policy-nav {
        grid-template-columns: 1fr;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .policy-main-content {
        padding-right: 0;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-security-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* 404 Content */
    .error-container {
        padding: 5rem 1rem 3rem;
    }
    
    .error-404 {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1.125rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stethoscope {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -50px;
    }
    
    .quick-links {
        padding: 2rem 1.5rem;
    }
}

/* ===== Mobile Menu Backdrop ===== */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 769px) {
    .menu-backdrop {
        display: none !important;
        pointer-events: none !important;
    }
    
    .mobile-close-btn {
        display: none !important;
    }
    
    .mobile-menu-header {
        display: none !important;
    }
}

/* Form Message Styles */
.error-message {
    color: #665d5c;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #f5edfb;
    border-radius: 5px;
    border-left: 3px solid #9a62d9;
    animation: slideDown 0.3s ease;
    font-weight: 500;
}

.success-message {
    color: #27ae60;
    font-size: 1.125rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #e8f8f5;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #27ae60;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.1);
}

.success-message strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Form States */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e0d5e9;
}

.form-group select:invalid {
    color: var(--text-light);
}

.form-group select option:first-child {
    color: var(--text-light);
}

.form-group select:valid,
.form-group select:focus {
    color: var(--text-primary);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus):not(:placeholder-shown) {
    border-color: rgba(39, 174, 96, 0.3);
}

/* Button States */
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button:disabled:hover {
    transform: none;
}

/* Success state for button */
.submit-button[style*="background: rgb(39, 174, 96)"] {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* Error state for button */
.submit-button[style*="background: rgb(231, 76, 60)"] {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 100px;
        margin-bottom: 1rem;
    }
}

/* Loading spinner for button (optional enhancement) */
.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.cookie-settings {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cookie-settings:hover {
    background: var(--primary-purple);
    color: white;
}

.cookie-accept {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 90, 143, 0.3);
}

.cookie-accept:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 143, 0.4);
}

.cookie-save {
    background: var(--sage-green);
    color: white;
}

.cookie-save:hover {
    background: var(--sage-green-dark);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.cookie-modal-content {
    position: relative;
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.75rem;
}

.cookie-modal-close {
    width: 40px;
    height: 40px;
    background: var(--warm-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: var(--primary-purple);
    color: white;
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-category {
    background: var(--warm-cream);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-category-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-category-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-toggle label {
    display: block;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    text-indent: -9999px;
}

.cookie-toggle label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + label {
    background: var(--primary-purple);
}

.cookie-toggle input[type="checkbox"]:checked + label::after {
    transform: translateX(24px);
}

.cookie-toggle.disabled label {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

/* Link in footer for cookie preferences */
.footer-column a.cookie-preferences {
    cursor: pointer;
}