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

/* CSS Variables - Enhanced Green Brand Focus */
:root {
    /* Primary Brand Colors */
    --primary: rgb(0, 19, 54);
    --primary-dark: #454e7f;
    --primary-light: #454e7f;
    --primary-gradient: linear-gradient(135deg, #454e7f 0%, #05103f 100%);
    --primary-gradient-light: linear-gradient(135deg, #454e7f 0%, #454e7f 100%);
    --primary-glow: 0 0 30px rgb(69,78,127);

    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 50px 100px rgba(0, 0, 0, 0.25);
    --shadow-green: 0 10px 30px rgba(28, 12, 119, 0.3);
    --shadow-green-lg: 0 20px 40px rgba(22, 4, 104, 0.4);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.link-text { color: var(--gray-300)}

.contact-section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.contact-section-description { color: var(--gray-200); }
.contact-section-description-text { color: var(--gray-100); }

.contact-section-description-text-subtext { color: var(--gray-300); }
.contact-form-title-text{
    color: var(--gray-200);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.logo-container {
    position: relative;
    margin-bottom: var(--space-8);
}

.preloader-logo {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.loading-text {
    margin-bottom: var(--space-6);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-title{}

.loading-word {
    font-size: var(--font-size-xl);
    font-weight: 600;
    opacity: 0;
    position: absolute;
    animation: wordCycle 3s infinite;
}

.loading-word:nth-child(1) { animation-delay: 0s; }
.loading-word:nth-child(2) { animation-delay: 1s; }
.loading-word:nth-child(3) { animation-delay: 2s; }

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgb(69,78,127);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-full);
    animation: progressFill 3s ease-in-out;
}

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

@keyframes logoGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes wordCycle {
    0%, 33.33% { opacity: 1; transform: translateY(0); }
    33.34%, 66.66% { opacity: 0; transform: translateY(-20px); }
    66.67%, 100% { opacity: 0; transform: translateY(20px); }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.social-connect {
    background: var(--primary-gradient);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23social-pattern)"/></svg>');
}

.social-connect h4 {
    margin-bottom: var(--space-6);
    font-size: var(--font-size-xl);
    position: relative;
    z-index: 2;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link.twitter:hover {
    background: #1DA1F2;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-4);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.nav-logo {
    height: 70px;
    width: auto;
    transition: transform var(--transition-normal);
}

.nav-brand:hover .nav-logo {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: var(--font-size-xl);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.brand-tagline {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
    border-radius: var(--radius-full);
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
}

.emergency-btn {
    background: #EF4444;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.emergency-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: var(--space-1);
    padding: var(--space-2);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(190deg,  0%,  50%, #050455 100%); */
    padding: var(--space-24) 0 var(--space-20);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    font-size: var(--font-size-2xl);
    animation: shapeFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

.shape-1 { top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { top: 60%; right: 15%; animation-delay: 1s; }
.shape-3 { top: 30%; left: 80%; animation-delay: 2s; }
.shape-4 { top: 80%; left: 60%; animation-delay: 3s; }
.shape-5 { top: 10%; right: 30%; animation-delay: 4s; }
.shape-6 { top: 70%; left: 20%; animation-delay: 5s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(50, 34, 197, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-8);
    border: 1px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
    color: var(--primary-dark);
}

.badge-icon {
    color: #FFD700;
    font-size: var(--font-size-lg);
    animation: badgeIconPulse 2s ease-in-out infinite;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
    animation: badgeShine 3s infinite;
}

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

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    margin-bottom: var(--space-8);
    line-height: 1.1;
}

.title-line {
    display: block;
    font-weight: 800;
    animation: titleSlideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line.somali {
    font-size: var(--font-size-2xl);
    color: var(--gray-600);
    font-weight: 500;
    font-style: italic;
    animation-delay: 0.2s;
}

.title-line.english {
    font-size: var(--font-size-5xl);
    color: var(--gray-900);
    animation-delay: 0.4s;
}

.title-line.highlight {
    font-size: var(--font-size-5xl);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
}

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

.hero-description {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-10);
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover .btn-glow {
    left: 100%;
}

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

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

.btn-arrow {
    transition: transform var(--transition-normal);
}

.cta-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.stat-icon {
    font-size: var(--font-size-lg);
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.app-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.phone-container {
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2D3748, #1A202C);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 30px;
    pointer-events: none;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowFloat 6s ease-in-out infinite;
}

@keyframes shadowFloat {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.2; }
}

.screen-content {
    padding: var(--space-4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.time {
    color: var(--gray-900);
}

.indicators {
    display: flex;
    gap: var(--space-2);
    color: var(--gray-600);
}

.app-nav {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    position: relative;
}

.app-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
}

.app-nav h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary);
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -2px;
    animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.app-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-4);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.app-screen.active {
    opacity: 1;
    position: relative;
}

.welcome-card {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    text-align: center;
}

.welcome-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-1);
}

.welcome-card p {
    opacity: 0.9;
    margin-bottom: var(--space-3);
}

.mood-selector {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.mood-emoji {
    font-size: var(--font-size-xl);
    padding: var(--space-2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mood-emoji.active,
.mood-emoji:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.action-card {
    background: var(--gray-50);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.action-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.action-card i {
    font-size: var(--font-size-xl);
    color: var(--primary);
    margin-bottom: var(--space-2);
    transition: color var(--transition-fast);
}

.action-card:hover i {
    color: var(--white);
}

.action-card span {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.upcoming-session {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.upcoming-session h5 {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

.session-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.therapist-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.session-details {
    flex: 1;
}

.therapist-name {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--gray-900);
}

.session-time {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.join-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    cursor: pointer;
}

.app-features {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-bubble {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-md);
    animation: bubbleFloat 4s ease-in-out infinite;
}

.feature-1 { animation-delay: 0s; }
.feature-2 { animation-delay: 1s; }
.feature-3 { animation-delay: 2s; }

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

.feature-bubble i {
    color: var(--primary);
}

.trust-badges {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-600);
    animation: scrollBounce 2s infinite;
}

.scroll-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

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

/* Section Styles */
.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.title-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--gray-50);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.about-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border-top: 4px solid var(--primary);
}

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

.about-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.05);
    border-top-color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: var(--space-6);
    background: var(--white);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
}

.about-card.featured .card-icon {
    background: var(--white);
    color: var(--primary);
}

.card-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
}

.about-card.featured .card-header h3 {
    color: var(--white);
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.about-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.value-item i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-1);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
}

.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.8s;
}

.about-card:hover .card-glow {
    left: 100%;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    background: var(--primary-gradient);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.achievement-card {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

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

.achievement-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.achievement-label {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
    opacity: 0.9;
}

.achievement-growth {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
    transition: all var(--transition-normal);
}

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

.service-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.02);
    border-top-color: var(--white);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-label {
    position: absolute;
    top: -12px;
    right: var(--space-6);
    background: var(--white);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: labelPulse 2s infinite;
}

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

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-green);
}

.service-card.featured .service-icon {
    background: var(--white);
    color: var(--primary);
}

.service-badge {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.service-badge.popular {
    background: #F59E0B;
    color: var(--white);
}

.service-badge.affordable {
    background: #10B981;
    color: var(--white);
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--gray-600);
    font-weight: 500;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--primary);
    font-size: var(--font-size-sm);
    background: rgba(34, 197, 94, 0.1);
    padding: var(--space-1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-features i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.service-card.featured .service-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
}

.price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
}

.service-card.featured .price {
    color: var(--white);
}

.period {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 400;
}

.service-card.featured .period {
    color: rgba(255, 255, 255, 0.7);
}

.service-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-green);
}

.service-card.featured .service-btn {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

.service-btn i {
    transition: transform var(--transition-normal);
}

.service-btn:hover i {
    transform: translateX(3px);
}

/* Mobile App Section */
.app-section {
    background: var(--gray-50);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    margin-bottom: var(--space-16);
}

.phone-mockup-large {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-frame-large {
    width: 350px;
    height: 700px;
    background: linear-gradient(145deg, #2D3748, #1A202C);
    border-radius: 50px;
    padding: 25px;
    box-shadow: var(--shadow-2xl);
    animation: phoneLargeFloat 8s ease-in-out infinite;
}

@keyframes phoneLargeFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-30px) rotateY(3deg); }
}

.phone-screen-large {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.app-interface-large {
    padding: var(--space-6);
    height: 100%;
    position: relative;
}

.screen-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.screen-header h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.screen-header p {
    color: var(--gray-600);
}

.mood-check {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    text-align: center;
    margin-bottom: var(--space-6);
}

.mood-check h5 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
}

.mood-options {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.mood-option {
    font-size: var(--font-size-2xl);
    padding: var(--space-3);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mood-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quick-access {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.access-btn {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.access-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.access-btn i {
    color: var(--primary);
    font-size: var(--font-size-xl);
    transition: color var(--transition-fast);
}

.access-btn:hover i {
    color: var(--white);
}

.calendar-view {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.calendar-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
}

.calendar-day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.calendar-day.active,
.calendar-day:hover {
    background: var(--primary);
    color: var(--white);
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.time-slot {
    background: var(--gray-100);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.time-slot.active,
.time-slot:hover {
    background: var(--primary);
    color: var(--white);
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.message {
    display: flex;
}

.message.therapist {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
}

.message.therapist .message-bubble {
    background: var(--gray-100);
    color: var(--gray-800);
}

.message.user .message-bubble {
    background: var(--primary);
    color: var(--white);
}

.app-features-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.feature-detailed {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-2xl);
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-green);
}

.feature-detailed h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.feature-detailed p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-3);
}

.feature-highlight {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    display: inline-block;
}

.app-cta {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="app-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23app-pattern)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

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

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

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.waitlist-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--font-size-lg);
}

.count-number {
    font-weight: 800;
    font-size: var(--font-size-2xl);
}

.count-text {
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.quote-mark {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-3xl);
    font-weight: 800;
    box-shadow: var(--shadow-green);
}

.rating {
    display: flex;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
    margin-top: var(--space-6);
}

.rating i {
    color: #FFD700;
    font-size: var(--font-size-lg);
    animation: starTwinkle 2s ease-in-out infinite;
}

.rating i:nth-child(1) { animation-delay: 0s; }
.rating i:nth-child(2) { animation-delay: 0.2s; }
.rating i:nth-child(3) { animation-delay: 0.4s; }
.rating i:nth-child(4) { animation-delay: 0.6s; }
.rating i:nth-child(3) { animation-delay: 0.4s; }
.rating i:nth-child(4) { animation-delay: 0.6s; }
.rating i:nth-child(5) { animation-delay: 0.8s; }

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

.testimonial blockquote {
    font-size: var(--font-size-xl);
    line-height: 1.7;
    color: var(--gray-800);
    margin-bottom: var(--space-8);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.author-info span {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
    display: block;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

/* .nav-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
} */

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-green-lg);
}

.testimonial-dots {
    display: flex;
    gap: var(--space-3);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: var(--shadow-green);
}

/* Contact Section - Complete */
.contact {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-intro {
    margin-bottom: var(--space-8);
}

.contact-intro h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.contact-intro h3 i {
    color: var(--primary);
    font-size: var(--font-size-xl);
}

.contact-intro p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: var(--font-size-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    margin-bottom: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left var(--transition-normal);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-green);
    position: relative;
    z-index: 2;
}

/* Indicate clickable contact cards */
.contact-item.is-clickable { cursor: pointer; }

.contact-details h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.contact-details p {
    color: var(--gray-300);
    font-size: var(--font-size-base);
}

.contact-details a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-details a:hover {
    color: var(--primary);
}

.emergency-notice {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-top: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: emergencyRotate 4s linear infinite;
}

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

.emergency-notice h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: relative;
    z-index: 2;
}

.emergency-notice h4 i {
    animation: emergencyBlink 1s ease-in-out infinite;
}

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

.emergency-notice p {
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.emergency-btn {
    background: var(--white);
    color: #DC2626;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.emergency-btn:hover {
    background: var(--gray-100);
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.05), transparent);
    animation: formRotate 30s linear infinite;
}

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

.form-header {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.form-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-3);
}

.form-header p {
    color: var(--gray-600);
    font-size: var(--font-size-base);
}

.form-group {
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-green);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Social Proof */
.social-proof {
    margin-top: var(--space-12);
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-proof h4 {
    color: var(--gray-300);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.social-item i {
    font-size: var(--font-size-2xl);
    color: var(--primary);
}

.social-item span {
    font-weight: 600;
    color: var(--white);
}

.social-item small {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}


/* Responsive Design for Testimonials and Contact */
@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: var(--space-8);
    }
    
    .testimonial-text {
        font-size: var(--font-size-lg);
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .contact-form {
        padding: var(--space-6);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .contact-item {
        padding: var(--space-4);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .quote-mark {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-2xl);
        top: -30px;
    }
    
    .testimonial-text {
        font-size: var(--font-size-base);
        padding: var(--space-4) var(--space-2);
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .contact-intro h3 {
        font-size: var(--font-size-xl);
    }
    
    .emergency-notice {
        padding: var(--space-4);
    }
    
    .form-header h3 {
        font-size: var(--font-size-xl);
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-content {
    display: grid;
    /* Give the links area more room and allow columns to stretch */
    grid-template-columns: minmax(320px, 1.4fr) minmax(640px, 2fr);
    gap: var(--space-16);
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.7;
    /* Let the paragraph stretch; avoid early wrapping */
    max-width: none;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transform: scale(0);
    transition: transform var(--transition-normal);
    border-radius: 50%;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: var(--space-8);
}

.footer-section h4 {
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-4);
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-section ul li i {
    color: #FFFFFF;
    opacity: 0.95;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    position: relative;
    z-index: 2;
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: var(--space-6);
    width: 350px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-modal);
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--transition-bounce);
    border: 1px solid var(--gray-200);
    /* Prevent the hidden widget from blocking clicks */
    pointer-events: none;
}

/* Contact section (light variant) overrides */
.contact-section .contact-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'form info';
    grid-auto-flow: dense;
    gap: var(--space-12);
}

.contact-section .contact-form-container { grid-area: form !important; }
.contact-section .contact-info { grid-area: info !important; }

/* Ensure anchor scrolling doesn't hide form beneath sticky navbar */
.contact-section #contact-form {
    scroll-margin-top: 100px;
}

/* Force the grid order so the form is on the left (desktop) */
.contact-section .contact-form-container { grid-column: 1; }
.contact-section .contact-info { grid-column: 2; }

@media (max-width: 1024px) {
    .contact-section .contact-content {
        grid-template-columns: 1fr;
        grid-template-areas: 'form' 'info';
    }
}

/* Improve contact header contrast on dark background */
.contact-section .form-header h3 { color: var(--white); }
.contact-section .form-header p { color: var(--gray-300); }

/* Contact section headline contrast */
.contact-section .section-title { color: var(--white); }
.contact-section .section-description { color: var(--gray-300); }

/* Ensure strong contrast on contact info */
.contact-section .contact-details h4 { color: var(--white) !important; }
.contact-section .contact-details p,
.contact-section .contact-details span { color: rgba(255,255,255,0.9) !important; }
.contact-section .contact-details a { color: #FFFFFF !important; text-decoration: underline; font-weight: 600; }
.contact-section .contact-details a:hover { color: var(--primary-light) !important; }

/* Space between contact cards */
.contact-section .contact-info .contact-item + .contact-item {
    margin-top: var(--space-4);
}

/* Therapists Section */
.therapists-section {
    background: var(--gray-50);
}

.therapist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.therapist-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.highlight-card {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-md);
}

.highlight-card i { color: var(--primary); font-size: var(--font-size-xl); }
.highlight-card h4 { margin: 0 0 var(--space-1); color: var(--gray-900); }
.highlight-card p { margin: 0; color: var(--gray-600); }

.therapist-form-container .form-header h3 { color: var(--gray-900); }
.therapist-form-container .form-header p { color: var(--gray-600); }

@media (max-width: 1024px) {
    .therapist-grid { grid-template-columns: 1fr; }
}

/* Footer visual enhancements */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0.9;
}

.footer-links .footer-section {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transition: none !important;
    pointer-events: none; /* only anchors clickable */
}

.footer-links .footer-section:hover { transform: none !important; background: transparent !important; }
.footer-links .footer-section a { pointer-events: auto; }

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-section ul li a:hover {
    color: #FFFFFF;
}

.footer .social-icon {
    background: rgba(255, 255, 255, 0.08);
}

.footer .social-icon:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

/* Ensure footer social icons themselves are bright */
.footer .social-icon i { color: #FFFFFF; }

.whatsapp-widget.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.widget-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.widget-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
}

.widget-details h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

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

.widget-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: 50%;
    transition: background var(--transition-normal);
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.widget-body {
    padding: var(--space-6);
}

.chat-message {
    background: var(--gray-50);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    position: relative;
}

.chat-message::before {
    content: '';
    position: absolute;
    top: -8px;
    left: var(--space-4);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--gray-50);
}

.chat-message p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.quick-reply {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 500;
    color: var(--gray-700);
}

.quick-reply:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.quick-reply i {
    color: var(--primary);
    transition: color var(--transition-normal);
}

.quick-reply:hover i {
    color: var(--white);
}

.chat-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-green);
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
    animation: floatPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.float-notification {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--gray-800);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    opacity: 0;
    animation: notificationShow 4s infinite;
}

.float-notification::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--white);
}

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

@keyframes notificationShow {
    0%, 70%, 100% { opacity: 0; transform: translateY(-50%) translateX(-10px); }
    10%, 60% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }

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

    .app-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-8);
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

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

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: var(--space-20) 0 var(--space-16);
    }

    .title-line.english,
    .title-line.highlight {
        font-size: var(--font-size-4xl);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

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

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

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

    .phone-frame {
        width: 250px;
        height: 500px;
    }

    .phone-frame-large {
        width: 280px;
        height: 560px;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

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

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

    .whatsapp-widget {
        width: 320px;
        right: var(--space-4);
    }

    .whatsapp-float {
        bottom: var(--space-4);
        right: var(--space-4);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    .section {
        padding: var(--space-16) 0;
    }

    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }

    .title-line.english,
    .title-line.highlight {
        font-size: var(--font-size-3xl);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

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

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .phone-frame-large {
        width: 220px;
        height: 440px;
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .whatsapp-widget {
        width: 280px;
        right: var(--space-2);
    }

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

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-widget,
    .whatsapp-float,
    .floating-shapes,
    .gradient-orb {
        display: none !important;
    }

    .hero {
        background: var(--white) !important;
        min-height: auto !important;
        padding: var(--space-8) 0 !important;
    }

    .section {
        padding: var(--space-8) 0 !important;
    }

    * {
        box-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




/* NAV + LOGO FIX (targets the real class in your HTML) */
/* .navbar{ padding-block:10px; } */

.nav-container{ gap:16px; align-items:center; }

.nav-brand{ display:flex; align-items:center; gap:10px; min-height:48px; }

/* <-- this is the class your <img> has */
.nav-brand .app-logo{
  height: clamp(42px, 4.5vw, 56px);
  width: auto;
  display:block;        /* avoid baseline gap */
  object-fit: contain;
  vertical-align: middle;
}

.nav-menu{ gap:28px; }
.nav-menu .nav-link{ line-height:1; padding-block:10px; }

@media (max-width:768px){
  .nav-brand .app-logo{ height:38px; }
  .nav-menu{ gap:18px; }
}
