/* Global Styles and Variables */
:root {
    --primary-color: #024442;
    --secondary-color: #ffde59;
    --accent-color: #013a3a;
    --warning-color: #f39c12;
    --dark-color: #012e2e;
    --light-color: #f0fdf4;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --black: #000000;
    
    --gradient-primary: #ffde59;
    --gradient-secondary: #ffde59;
    --gradient-success: #ffde59;
    --gradient-info: #ffde59;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    --border-radius-full: 50%;
    
    --font-primary: 'Vazirmatn', 'Tahoma', 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;
    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary-color: #ffde59;
    --secondary-color: #024442;
    --accent-color: #f39c12;
    --warning-color: #f5b041;
    --dark-color: #1a1a2e;
    --light-color: #16213e;
    --text-color: #e8e8e8;
    --text-light: #b8b8b8;
    --white: #0f3460;
    --black: #ffffff;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

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

a:hover {
    color: var(--secondary-color);
}

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.brain-loader {
    animation: float 3s ease-in-out infinite;
}

.brain-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 2s ease-in-out forwards;
}

.pulse-circle {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

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

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

.loading-text {
    color: white;
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-xl);
    animation: fadeInOut 2s ease-in-out infinite;
}

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

/* Header and Navigation */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: var(--z-index-sticky);
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    color: var(--dark-color);
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.logo i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    animation: brain-pulse 3s ease-in-out infinite;
}

.logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(2, 68, 66, 0.3);
    transition: all var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 68, 66, 0.5);
    border-color: var(--secondary-color);
}

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

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

.logo-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.logo-subtitle {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-item {
    position: relative;
}

    .nav-link {
        color: var(--text-color);
        font-weight: 500;
        padding: var(--spacing-sm) 0;
        position: relative;
        transition: color var(--transition-fast);
    }

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: var(--z-index-dropdown);
    list-style: none;
    padding: var(--spacing-sm) 0;
    margin-top: var(--spacing-sm);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-color);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-right: calc(var(--spacing-lg) + 5px);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* User Account Section */
.user-account {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #024442;
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
}

.user-account:hover {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    border-color: #024442;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 68, 66, 0.3);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.user-account:hover .user-avatar {
    background: white;
    color: #024442;
    transform: scale(1.1);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.user-status {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
    margin: 0;
}

.user-account:hover .user-status {
    color: rgba(255, 255, 255, 0.8);
}

.user-dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.user-account:hover .user-dropdown-icon {
    transform: rotate(180deg);
}

.btn-appointment {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 222, 89, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    border-color: rgba(255, 222, 89, 0.6);
}

/* Desktop Navigation Menu - Minimal & Clean */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-menu .nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu .nav-item {
    margin: 0;
}

.desktop-menu .nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.desktop-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #024442;
    transition: width 0.3s ease;
}

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

.desktop-menu .nav-link:hover {
    color: #024442;
}

.desktop-menu .nav-link.active {
    color: #024442;
}

.desktop-menu .nav-link.active::after {
    width: 100%;
}

/* User Account Button - Minimal Green Style */
.user-account-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #024442;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #024442;
}

.user-account-desktop:hover {
    background: #024442;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 68, 66, 0.3);
}

.user-account-desktop i {
    font-size: 16px;
}

/* Hide user account button on mobile */
@media (max-width: 768px) {
    .user-account-desktop {
        display: none !important;
    }
}

/* Appointment Button - Original Green Style */
.btn-appointment {
    background: #024442;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #024442;
}

.btn-appointment:hover {
    background: #013a3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 68, 66, 0.3);
}

.btn-appointment i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

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

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

/* Hero Section - Completely Redesigned */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-3d-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.hero-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Floating 3D Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    animation: float-3d 20s infinite ease-in-out;
}

.float-element.el-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.el-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-element.el-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 10s;
}

.float-element.el-4 {
    top: 40%;
    right: 40%;
    animation-delay: 15s;
}

/* 3D Cube */
.cube {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 10s infinite linear;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(2, 68, 66, 0.3), rgba(255, 222, 89, 0.3));
    border: 1px solid rgba(2, 68, 66, 0.5);
    backdrop-filter: blur(10px);
}

.cube-face.front { transform: translateZ(30px); }
.cube-face.back { transform: rotateY(180deg) translateZ(30px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
.cube-face.right { transform: rotateY(90deg) translateZ(30px); }
.cube-face.top { transform: rotateX(90deg) translateZ(30px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes rotate-cube {
    from { transform: rotateX(0) rotateY(0); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

/* 3D Sphere */
.sphere {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 222, 89, 0.8), rgba(2, 68, 66, 0.2));
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 222, 89, 0.5);
    animation: pulse-sphere 3s infinite ease-in-out;
}

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

/* Pyramid */
.pyramid {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(2, 68, 66, 0.4);
    animation: rotate-pyramid 8s infinite linear;
}

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

/* DNA Helix */
.dna-helix {
    width: 100px;
    height: 200px;
    position: relative;
    animation: rotate-helix 10s infinite linear;
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(2, 68, 66, 0.3) 25%, 
        rgba(255, 222, 89, 0.5) 50%, 
        rgba(2, 68, 66, 0.3) 75%, 
        transparent 100%);
    border-radius: 50%;
}

.helix-strand:nth-child(2) {
    transform: rotateY(90deg);
}

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

@keyframes float-3d {
    0%, 100% {
        transform: translate(0, 0) rotateZ(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotateZ(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotateZ(180deg);
    }
    75% {
        transform: translate(40px, 20px) rotateZ(270deg);
    }
}

/* Particle System */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 68, 66, 0.1) 0%, transparent 70%);
    animation: wave-expand 4s infinite ease-out;
}

.particle-wave:nth-child(2) {
    animation-delay: 1.3s;
}

.particle-wave:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes wave-expand {
    0% {
        transform: scale(0) translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        transform: scale(2) translate(-25%, -25%);
        opacity: 0;
    }
}

/* Neural Canvas */
#neuralCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Main Content */
.hero-main-content {
    position: relative;
    z-index: 10;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.hero-left {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 68, 66, 0.1);
    border: 1px solid rgba(2, 68, 66, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    color: #ffde59;
    font-weight: 600;
    font-size: 14px;
}

.hero-modern-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-word {
    color: white;
}

.title-accent {
    color: #ffde59;
    position: relative;
    display: inline-block;
    animation: glow-text 2s ease-in-out infinite;
}

.title-gradient {
    background: #ffde59;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s linear infinite;
}

@keyframes glow-text {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 222, 89, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 222, 89, 0.8); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #ffde59;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(2, 68, 66, 0.4);
    color: white;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-primary:hover .cta-glow {
    opacity: 1;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover .play-button {
    background: white;
    color: #024442;
    transform: scale(1.1);
}

.hero-cta-secondary:hover {
    color: #ffde59;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.trust-item i {
    color: #ffde59;
}

/* Right Interactive Brain */
.hero-right {
    position: relative;
}

.interactive-brain-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.brain-3d-model {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    animation: float 6s ease-in-out infinite;
}

.brain-hemisphere {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.left-hemisphere {
    left: 0;
}

.right-hemisphere {
    right: 0;
}

.brain-section {
    position: relative;
    padding: 15px;
    background: rgba(2, 68, 66, 0.1);
    border: 1px solid rgba(2, 68, 66, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.brain-section:hover {
    background: rgba(2, 68, 66, 0.2);
    transform: scale(1.05);
}

.section-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.5), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brain-section:hover .section-glow {
    opacity: 1;
}

.brain-connection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.synapse {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffde59;
    animation: synapse-fire 2s infinite;
}

.synapse:nth-child(1) {
    transform: rotate(0deg);
}

.synapse:nth-child(2) {
    transform: rotate(60deg);
    animation-delay: 0.7s;
}

.synapse:nth-child(3) {
    transform: rotate(120deg);
    animation-delay: 1.4s;
}

@keyframes synapse-fire {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    animation: float-card 4s ease-in-out infinite;
}

.stat-card.card-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.stat-card.card-2 {
    bottom: 30%;
    left: -50px;
    animation-delay: 1s;
}

.stat-card.card-3 {
    bottom: 10%;
    right: 20px;
    animation-delay: 2s;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(2, 68, 66, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffde59;
    margin-bottom: 10px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Interactive Orbs */
.interactive-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.8), rgba(2, 68, 66, 0.2));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: orb-float 6s infinite ease-in-out;
}

.orb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 222, 89, 0.8);
}

.orb-1 { top: 25%; left: 20%; animation-delay: 0s; }
.orb-2 { top: 45%; right: 25%; animation-delay: 1.5s; }
.orb-3 { bottom: 35%; left: 30%; animation-delay: 3s; }
.orb-4 { bottom: 20%; right: 15%; animation-delay: 4.5s; }

@keyframes orb-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Bottom Wave */
.hero-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.hero-bottom-wave svg {
    width: 100%;
    height: 100%;
}

/* Mouse Follow Gradient - Removed */
.mouse-follow-gradient {
    display: none;
}

/* Simplified Hero Styles */
/* New Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.highlight {
    color: #f1c40f;
}

.highlight-gradient {
    background: linear-gradient(90deg, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #024442;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #024442;
}

/* Hero Stats - Non-floating */
.hero-stats {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.brain-svg {
    width: 100%;
    height: auto;
}

.service-float {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #024442;
    animation: float 4s ease-in-out infinite;
}

.service-float.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.service-float.card-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1.5s;
}

.service-float.card-3 {
    bottom: 20%;
    left: 10px;
    animation-delay: 3s;
}



/* Featured Therapists Section */
.featured-therapists-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-therapists-section .section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.featured-therapists-section .section-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.featured-therapists-section .section-desc {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.featured-therapists-section .therapists-carousel-container {
    position: relative;
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
}

.featured-therapists-section .therapists-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.featured-therapists-section .therapist-card {
    min-width: 300px;
    flex-shrink: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-therapists-section .therapist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.featured-therapists-section .therapist-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featured-therapists-section .therapist-content {
    padding: 25px;
    text-align: center;
}

.featured-therapists-section .therapist-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-therapists-section .therapist-content p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.featured-therapists-section .therapist-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.featured-therapists-section .therapist-tags span {
    background: #e8f4f8;
    color: #2980b9;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-therapists-section .btn-appointment {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.featured-therapists-section .btn-appointment:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.featured-therapists-section .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 20px;
}

.featured-therapists-section .carousel-btn {
    background: rgba(52, 152, 219, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.featured-therapists-section .carousel-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.featured-therapists-section .carousel-btn i {
    font-size: 1.2rem;
    color: white;
}

.featured-therapists-section .prev-btn {
    margin-right: 0;
}

.featured-therapists-section .next-btn {
    margin-left: 0;
}

@media (max-width: 768px) {
    .featured-therapists-section .therapist-card {
        min-width: 280px;
        width: 280px;
    }
    
    .featured-therapists-section .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .featured-therapists-section .carousel-btn i {
        font-size: 1rem;
    }
    
    .featured-therapists-section .carousel-controls {
        padding: 0 10px;
    }
}

.therapists-showcase {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.therapists-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
    width: max-content;
    padding: 0 25px;
    position: relative;
    overflow: visible;
}

/* Standardized Therapist Card Styles */
.therapist-showcase-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2, 68, 66, 0.3);
    border: 2px solid rgba(255, 222, 89, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 68, 66, 0.4);
    border-color: rgba(255, 222, 89, 0.6);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    border-color: #ccc;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    transform: scale(1.2);
    border-color: rgba(255, 222, 89, 0.5);
    box-shadow: 0 2px 8px rgba(2, 68, 66, 0.3);
}

.carousel-dot:hover {
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    transform: scale(1.1);
    border-color: rgba(255, 222, 89, 0.3);
}


.therapist-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(2, 68, 66, 0.15);
    border-color: rgba(2, 68, 66, 0.2);
}

.therapist-showcase-card:hover .therapist-image-wrapper {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.therapist-showcase-card:hover .therapist-image-wrapper::before {
    background: rgba(0, 0, 0, 0.1);
}

.therapist-image-wrapper {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.therapist-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background 0.3s ease;
}

.therapist-avatar {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #024442;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.therapist-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffde59;
    color: #024442;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.therapist-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.therapist-header {
    margin-bottom: 8px;
}

.therapist-name {
    color: #2c3e50;
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.therapist-title {
    color: #024442;
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.therapist-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.specialty-tag {
    background: linear-gradient(135deg, #e8f5e9 0%, #f0fdf4 100%);
    color: #024442;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(2, 68, 66, 0.1);
}

.therapist-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #f39c12;
    font-size: 12px;
}

.therapist-rating span {
    color: #7f8c8d;
    font-size: 12px;
}

.therapist-bio {
    color: #5a6c7d;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    flex: 1;
}

.therapist-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
}

.btn-view-profile,
.btn-book {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid transparent;
    min-height: 36px;
}

.btn-view-profile {
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
    color: #024442;
    border-color: #e5e7eb;
}

.btn-view-profile:hover {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    border-color: #024442;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 68, 66, 0.3);
}

.btn-view-profile i {
    font-size: 11px;
}

.btn-view-profile span {
    font-size: 12px;
    font-weight: 600;
}

.btn-book {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    border-color: rgba(255, 222, 89, 0.3);
    box-shadow: 0 2px 8px rgba(2, 68, 66, 0.2);
}

.btn-book:hover {
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    border-color: rgba(255, 222, 89, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 68, 66, 0.4);
}

.btn-book i {
    font-size: 11px;
}

.btn-book span {
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .therapists-showcase {
        padding: 0 10px;
    }
    
    .therapist-showcase-card {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
    }
    
    .therapists-carousel {
        padding: 0 15px;
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .therapist-showcase-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        margin: 0;
    }
    
    .therapists-carousel {
        padding: 0 10px;
        gap: 10px;
    }
    
    .therapist-image-wrapper {
        height: 250px;
    }
    
    .therapist-info {
        padding: 15px;
        gap: 10px;
    }
    
    .therapist-name {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .therapist-title {
        font-size: 13px;
    }
    
    .therapist-specialties {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .specialty-tag {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .therapist-bio {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    
    .therapist-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-view-profile,
    .btn-book {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 8px;
        min-height: 40px;
    }
    
    .btn-view-profile i,
    .btn-book i {
        font-size: 12px;
    }
    
    .btn-view-profile span,
    .btn-book span {
        font-size: 13px;
    }
    
    .therapist-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .service-float {
        display: none;
    }
}

@media (max-width: 992px) {
    .therapists-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .therapist-showcase-card {
        max-width: 100%;
    }
    
    .therapist-image-wrapper {
        height: 240px;
    }
    
    .therapist-info {
        padding: 18px;
    }
    
    .therapist-info h3 {
        font-size: 19px;
    }
    
    .therapist-title {
        font-size: 13px;
    }
    
    .therapist-bio {
        font-size: 13px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .btn-view-profile,
    .btn-book {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* New Hero Styles */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #ffde59;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    top: 60%;
    right: 30%;
    animation: float 7s ease-in-out infinite;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-text-section {
    max-width: 600px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 68, 66, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(2, 68, 66, 0.2);
    margin-bottom: 24px;
}

.label-icon {
    font-size: 18px;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    color: #024442;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.title-primary {
    display: block;
    color: #374151;
}

.title-secondary {
    display: block;
    background: #024442;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(2, 68, 66, 0.39);
    border: 2px solid rgba(255, 222, 89, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(2, 68, 66, 0.5);
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    border-color: rgba(255, 222, 89, 0.6);
}

.hero-btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.hero-btn-outline:hover {
    border-color: #024442;
    color: #024442;
    transform: translateY(-2px);
}

.hero-visual-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.hero-main-visual {
    width: 280px;
    height: 280px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.circle-content {
    text-align: center;
    color: white;
}

.circle-content i {
    font-size: 48px;
    margin-bottom: 8px;
    display: block;
}

.circle-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

.circle-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.circle-content span {
    font-size: 16px;
    font-weight: 600;
}

.hero-card {
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 68, 66, 0.4);
}

.hero-card .card-icon {
    width: 64px !important;
    height: 64px !important;
    background: #ffde59 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 26px !important;
    box-shadow: 0 6px 16px rgba(2, 68, 66, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    min-width: 64px !important;
    min-height: 64px !important;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.card-icon i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.card-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid #e5e7eb;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #024442;
    font-size: 20px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(2, 68, 66, 0.3);
    }
    50% {
        box-shadow: 0 25px 50px rgba(2, 68, 66, 0.5);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-content-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-section {
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual-section {
        order: 2;
        margin: 0 auto;
    }
    
    .hero-main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }
    
    .hero-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding: 24px 0;
        justify-items: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        width: 100%;
        max-width: 80px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .feature-text {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .hero-logo-container {
        gap: 30px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .hero-main-visual {
        width: 180px;
        height: 180px;
    }
    
    .hero-logo-image {
        width: 160px;
        height: 160px;
    }
    
    .hero-card {
        padding: 16px 12px;
        min-width: auto;
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .hero-card .card-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 22px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
    
    .card-number {
        font-size: 16px;
    }
    
    .card-label {
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-label {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .label-icon {
        font-size: 14px;
    }
    
    .label-text {
        font-size: 12px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-content-main {
        gap: 30px;
    }
    
    .hero-logo-container {
        gap: 25px;
    }
    
    .hero-main-visual {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo-image {
        width: 120px;
        height: 120px;
    }
    
    .hero-card {
        padding: 14px 10px;
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .hero-card .card-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 20px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        min-width: 55px !important;
        min-height: 55px !important;
    }
    
    .card-number {
        font-size: 15px;
    }
    
    .card-label {
        font-size: 11px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: white;
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: white;
    bottom: 30%;
    right: 20%;
    animation-delay: 7s;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: var(--spacing-3xl) 0;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    color: white;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    color: #f5576c;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.hero-image {
    position: relative;
}

.animated-brain-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-animation {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

.brain-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(2, 68, 66, 0.3));
}

.brain-group {
    animation: rotate-slow 20s linear infinite;
    transform-origin: center;
}

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

.brain-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffde59;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 80%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 2s; }
.particle:nth-child(4) { top: 60%; left: 80%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 85%; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { top: 30%; left: 30%; animation-delay: 6s; }
.particle:nth-child(8) { top: 70%; left: 40%; animation-delay: 7s; }

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0);
    }
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: relative;
    width: 100%;
    height: 100px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i {
    font-size: var(--font-size-xl);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-color);
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-1 i { color: var(--accent-color); }

.card-2 {
    top: 40%;
    left: -30px;
    animation-delay: 1s;
}

.card-2 i { color: var(--primary-color); }

.card-3 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.card-3 i { color: var(--secondary-color); }

.card-4 {
    bottom: 10%;
    left: -30px;
    animation-delay: 3s;
}

.card-4 i { color: var(--primary-color); }

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    font-size: var(--font-size-2xl);
    opacity: 0.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

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

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

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

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(2, 68, 66, 0.2);
    border: 2px solid rgba(255, 222, 89, 0.3);
    font-weight: 600;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 68, 66, 0.3);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-color: rgba(255, 222, 89, 0.6);
    color: var(--primary-color);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
}

/* Quick Access Section */
.quick-access-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-color);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.quick-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.quick-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-3xl);
}

.quick-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.quick-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.card-link:hover {
    gap: var(--spacing-md);
}

/* Services Section */
.services-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(2, 68, 66, 0.3);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 68, 66, 0.4);
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.highlight-gradient {
    background: #ffde59;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shine 3s ease-in-out infinite;
    font-weight: 700;
}

@keyframes gradient-shine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

.service-card {
    background: white;
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.service-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 12px 35px rgba(2, 68, 66, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

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

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--text-color);
}

.service-features i {
    color: var(--secondary-color);
    font-size: var(--font-size-sm);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    gap: var(--spacing-md);
}

/* Why Us Section */
.why-us-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.why-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

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

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-xl);
}

.why-card h3 {
    color: var(--dark-color);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.why-card p {
    color: var(--text-light);
    margin: 0;
}

/* Process Section */
.process-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 2px;
    height: 100%;
    background: var(--light-color);
}

.timeline-item {
    position: relative;
    padding: var(--spacing-xl) 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-left: var(--spacing-2xl);
    margin-right: auto;
    text-align: left;
}

.timeline-item:nth-child(even) {
    padding-right: var(--spacing-2xl);
    margin-left: 50%;
    text-align: right;
}

.timeline-number {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-xl);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.timeline-content h3 {
    color: var(--dark-color);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

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

/* Testimonials Section */
.testimonials-preview {
    padding: var(--spacing-3xl) 0;
    background: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: var(--font-size-5xl);
    color: var(--light-color);
    font-family: serif;
}

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

.rating {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.rating i {
    color: var(--warning-color);
    font-size: var(--font-size-lg);
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-color);
}

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

.author-info h4 {
    color: var(--dark-color);
    font-size: var(--font-size-base);
    margin: 0;
}

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

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 222, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 222, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-3xl);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    border: 3px solid rgba(255, 222, 89, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 222, 89, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.cta-content p {
    color: #ffde59;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: white;
    text-align: right;
}

.footer-top {
    padding: var(--spacing-3xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    text-align: right;
}

.footer-column {
    text-align: right;
}

.footer-column h3 {
    color: white;
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(2, 68, 66, 0.3);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    padding: var(--spacing-xs) 0;
}

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

.footer-links a:hover {
    color: white;
    padding-right: var(--spacing-sm);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    text-align: right;
}

.footer-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: var(--z-index-fixed);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-full);
    color: white;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-box.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    color: white;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.chat-message {
    display: flex;
    gap: var(--spacing-sm);
    animation: fadeIn 0.3s ease;
}

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

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.message-content {
    background: var(--light-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    max-width: 80%;
}

.chat-message.user {
    flex-direction: row-reverse;
}

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

.chat-input {
    display: flex;
    padding: var(--spacing-md);
    border-top: 1px solid var(--light-color);
    gap: var(--spacing-sm);
}

.chat-input input {
    flex: 1;
    padding: var(--spacing-sm);
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
}

.chat-input button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chat-input button:hover {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xl);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: var(--z-index-fixed);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-control.error {
    border-color: var(--accent-color);
}

.form-error {
    color: var(--accent-color);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

.form-success {
    color: var(--secondary-color);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.pt-1 { padding-top: var(--spacing-sm); }
.pt-2 { padding-top: var(--spacing-md); }
.pt-3 { padding-top: var(--spacing-lg); }
.pt-4 { padding-top: var(--spacing-xl); }
.pt-5 { padding-top: var(--spacing-2xl); }

.pb-1 { padding-bottom: var(--spacing-sm); }
.pb-2 { padding-bottom: var(--spacing-md); }
.pb-3 { padding-bottom: var(--spacing-lg); }
.pb-4 { padding-bottom: var(--spacing-xl); }
.pb-5 { padding-bottom: var(--spacing-2xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }
.gap-4 { gap: var(--spacing-xl); }
.gap-5 { gap: var(--spacing-2xl); }

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 0 !important;
        padding-left: var(--spacing-3xl) !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    .process-timeline::before {
        right: auto;
        left: 20px;
    }
    
    .timeline-number {
        right: auto;
        left: 20px;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .user-account {
        min-width: 120px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .user-status {
        font-size: 10px;
    }
    
    .user-dropdown-icon {
        font-size: 9px;
    }

    .user-account {
        min-width: 100px;
        padding: 5px 8px;
        gap: 5px;
    }
    
    .user-avatar {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .user-name {
        font-size: 11px;
    }
    
    .user-status {
        font-size: 9px;
    }
    
    .user-dropdown-icon {
        font-size: 8px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .quick-cards,
    .services-grid,
    .why-us-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-2xl);
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-image {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: right;
    }
    
    .footer-column {
        text-align: right;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: right;
    }
    
    .footer-bottom-content p {
        text-align: right;
    }
    
    .chat-box {
        width: 90vw;
        max-width: 350px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .feature-badge {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Therapist Cards */
    .therapists-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .therapist-showcase-card {
        border-radius: 10px;
    }
    
    .therapist-image-wrapper {
        height: 240px;
    }
    
    .therapist-info {
        padding: 12px;
        gap: 8px;
    }
    
    .therapist-name {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .therapist-title {
        font-size: 12px;
    }
    
    .therapist-specialties {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .specialty-tag {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .therapist-bio {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .therapist-actions {
        gap: 8px;
    }
    
    .btn-view-profile,
    .btn-book {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 6px;
        min-height: 36px;
    }
    
    .btn-view-profile i,
    .btn-book i {
        font-size: 11px;
    }
    
    .btn-view-profile span,
    .btn-book span {
        font-size: 12px;
    }
    
    .therapist-badge {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .therapists-showcase {
        gap: 12px;
        padding: 0;
    }
    
    .therapist-showcase-card {
        flex: 0 0 250px;
        min-width: 250px;
        max-width: 250px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    .therapists-carousel {
        padding: 0 5px;
        gap: 8px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .therapist-image-wrapper {
        height: 220px;
    }
    
    .therapist-info {
        padding: 10px;
        gap: 6px;
    }
    
    .therapist-name {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .therapist-title {
        font-size: 11px;
    }
    
    .therapist-specialties {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .specialty-tag {
        padding: 2px 6px;
        font-size: 10px;
    }
    
    .therapist-bio {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .therapist-actions {
        gap: 6px;
    }
    
    .btn-view-profile,
    .btn-book {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 5px;
        min-height: 32px;
    }
    
    .btn-view-profile i,
    .btn-book i {
        font-size: 10px;
    }
    
    .btn-view-profile span,
    .btn-book span {
        font-size: 11px;
    }
    
    .therapist-badge {
        top: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 10px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .chat-widget,
    .back-to-top,
    .hero-background,
    .floating-shapes {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: inherit;
        text-decoration: underline;
    }
}

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

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--border-radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Section Intro - New Structure */
.section-intro {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #024442;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 68, 66, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.section-intro:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-width: 6px;
}

.section-number {
    font-size: 48px;
    font-weight: 900;
    color: #024442;
    line-height: 1;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

.section-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.section-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .section-intro {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
        padding: 25px 20px;
        border-left: none;
        border-top: 4px solid #024442;
        border-radius: 15px;
    }
    
    .section-intro:hover {
        transform: translateY(-3px);
        border-top-width: 6px;
    }
    
    .section-number {
        font-size: 36px;
        min-width: auto;
    }
    
    .section-heading {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 6px;
    }
    
    .section-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-intro {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .section-number {
        font-size: 28px;
    }
}

/* Availability Indicators */
.availability-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.availability-indicator span {
    font-size: 10px;
}

/* Calendar Day with Availability */
.day-item {
    position: relative;
}

.day-item.has-availability .availability-indicator {
    background: rgba(34, 197, 94, 0.9);
}

.day-item.no-availability .availability-indicator {
    background: rgba(239, 68, 68, 0.9);
}

/* Time Slot Disabled State */
.time-slot.disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.disabled:hover {
    background-color: #f3f4f6;
    transform: none;
    box-shadow: none;
}

/* Real-time Availability Updates */
.availability-refresh {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-refresh:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.availability-refresh i {
    font-size: 18px;
}

/* Loading State for Availability */
.availability-loading {
    opacity: 0.7;
    pointer-events: none;
}

.availability-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Therapists Section */
.therapists-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-desc {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}





.therapist-image-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.therapist-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}


.therapist-specialties {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.specialty-tag {
    background: #e8f4f8;
    color: #2980b9;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.therapist-bio {
    color: #7f8c8d;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .therapist-showcase-card {
        min-width: 280px;
        width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .therapists-carousel {
        padding: 0 15px;
        gap: 15px;
    }
}


/* Swiper Styles */
.therapists-swiper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 25px;
}

.therapists-swiper .swiper-wrapper {
    align-items: stretch;
}

.therapists-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Swiper Navigation Buttons */
.therapists-swiper .swiper-button-next,
.therapists-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2, 68, 66, 0.3);
    border: 2px solid rgba(255, 222, 89, 0.3);
    margin-top: -25px;
}

.therapists-swiper .swiper-button-next:hover,
.therapists-swiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 68, 66, 0.4);
    border-color: rgba(255, 222, 89, 0.6);
}

.therapists-swiper .swiper-button-next:after,
.therapists-swiper .swiper-button-prev:after {
    display: none;
}

.therapists-swiper .swiper-button-next i,
.therapists-swiper .swiper-button-prev i {
    font-size: 1.2rem;
    color: white;
}

/* Swiper Pagination */
.therapists-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.therapists-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 1;
}

.therapists-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #024442 0%, #013a3a 100%);
    transform: scale(1.2);
    border-color: rgba(255, 222, 89, 0.5);
    box-shadow: 0 2px 8px rgba(2, 68, 66, 0.3);
}

.therapists-swiper .swiper-pagination-bullet:hover {
    background: linear-gradient(135deg, #013a3a 0%, #024442 100%);
    transform: scale(1.1);
    border-color: rgba(255, 222, 89, 0.3);
}

/* Mobile Responsive for Swiper */
@media (max-width: 768px) {
    .therapists-swiper {
        padding: 0 15px;
    }
    
    .therapists-swiper .swiper-button-next,
    .therapists-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .therapists-swiper .swiper-pagination {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .therapists-swiper {
        padding: 0 10px;
    }
    
    .therapists-swiper .swiper-button-next,
    .therapists-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .therapists-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(2, 68, 66, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #024442;
    transform: scale(1.2);
}

