/* ==========================================================================
   HOLISTIC PSYCHOLOGICAL  - COMPLETE STYLES
   Professional Mental Health  - Manhattan, NY
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --primary-green: #00d884;
    --primary-blue: #0ea5e9;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    --gradient-soft: linear-gradient(135deg, rgba(0, 216, 132, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
     --font-signature: 'Brush Script MT', cursive;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
    position: fixed;
    top: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-2xl));
    max-width: 1400px;
    z-index: var(--z-fixed);
    transition: var(--transition-medium);
}

.header-island {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 216, 132, 0.15);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md) var(--space-3xl);
    transition: var(--transition-medium);
}

.header.scrolled .header-island {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 216, 132, 0.2);
    box-shadow: var(--shadow-xl);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition-fast);
    position: relative;
    padding: var(--space-xs) 0;
}

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

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

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

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

.header-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-medium);
}

.btn-call {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-call:hover {
    background: var(--gray-50);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-book {
    background: var(--gradient-primary);
    color: var(--white);
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
}

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

.mobile-menu-toggle,
.scroll-hamburger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span,
.scroll-hamburger-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

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

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

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: calc(var(--z-fixed) - 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-medium);
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

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

.mobile-brand-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.mobile-brand-location {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--gray-100);
    color: var(--primary-green);
}

.mobile-menu-close i {
    font-size: 1.5rem;
}

.mobile-nav {
    flex: 1;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--gradient-soft);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateX(4px);
}

.nav-link-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link-content i {
    font-size: 1.25rem;
}

.nav-arrow {
    font-size: 1.125rem;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover .nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.mobile-menu-footer {
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-contact-item:hover {
    background: var(--gradient-soft);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.contact-value {
    font-size: 0.9375rem;
    color: var(--gray-800);
    font-weight: 600;
}

.mobile-cta {
    margin-bottom: var(--space-lg);
}

.mobile-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.mobile-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.mobile-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.mobile-social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, transform 10s ease-out;
}

.hero-bg-1 {
    background-image: url('https://images.pexels.com/photos/635279/pexels-photo-635279.jpeg');
}

.hero-bg-2 {
    background-image: url('https://careersinpsychology.org/wp-content/uploads/2012/04/Child-Psychologist.jpg');
}

.hero-bg-3 {
    background-image: url('https://www.thechicagoschool.edu/insightadmin/2021/01/tcspp-how-to-clinical-psychologist.jpg');
}

.hero-bg-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 3;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.float-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 216, 132, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.float-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 10s;
}

.float-4 {
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2xl);
    padding-bottom: var(--space-4xl);
}

.logo-showcase {
    animation: fadeInDown 1s ease;
}

.hero-logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 
        0 0 80px rgba(0, 216, 132, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 2px 20px rgba(255, 255, 255, 0.8);
    border: 4px solid rgba(0, 216, 132, 0.3);
    animation: logoFloat 6s ease-in-out infinite;
    margin: 0 auto;
}

.hero-logo {
    width: 105%;
    height: 105%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    animation: logoRingRotate 12s linear infinite;
}

.logo-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(0, 216, 132, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

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

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

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

.hero-text {
    animation: fadeInUp 1s ease 0.2s both;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 216, 132, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-features {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 1.125rem;
    color: var(--primary-green);
}

/* Signatures Section */
.signatures-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl) var(--space-3xl);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease 0.8s both;
}

.signatures-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.signature-item {
    text-align: center;
    flex: 1;
}

.signature-text {
    font-family: var(--font-signature);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
    white-space: nowrap;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.signature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.signature-credentials {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.signature-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0.8;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.divider-icon {
    color: var(--primary-green);
    font-size: 1.25rem;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(0, 216, 132, 0.5));
}

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

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    z-index: 5;
    animation: fadeIn 1s ease 1s both;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 991px) {
    .hero {
        min-height: 105vh;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding-bottom: var(--space-3xl);
    }
    
    .hero-logo-container {
        width: 320px;
        height: 320px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .signatures-container {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-xl) var(--space-lg);
    }
    
    .signature-divider {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .divider-line {
        width: 1px;
        height: 30px;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    }
    
    .scroll-indicator {
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 70px;
    }
    
    .hero-content {
        padding-bottom: var(--space-2xl);
        gap: var(--space-xl);
    }
    
    .hero-logo-container {
        width: 300px;
        height: 300px;
        padding: 14px;
    }
    
    .signatures-container {
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-md);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .signatures-container::before {
        background: transparent;
    }
    
    .signature-text {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .signature-title {
        font-size: 0.75rem;
    }
    
    .signature-credentials {
        font-size: 0.75rem;
    }
    
    .divider-line {
        height: 25px;
    }
    
    .divider-icon {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        padding: 0 var(--space-md);
    }
    
    .hero-content {
        padding-bottom: var(--space-xl);
    }
    
    .hero-logo-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .cta-button {
        padding: var(--space-md) var(--space-xl);
        font-size: 0.9375rem;
    }
    
    .signatures-container {
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .signature-text {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }
    
    .signature-title {
        font-size: 0.6875rem;
        margin-bottom: 1px;
    }
    
    .signature-credentials {
        font-size: 0.6875rem;
    }
    
    .divider-line {
        height: 20px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section-v3 {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 216, 132, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-container-v3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Header */
.about-header-v3 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-header-v3 .section-badge {
    margin-bottom: var(--space-lg);
}

.about-header-v3 .section-title {
    margin-bottom: 0;
}

/* Main Content */
.about-content-v3 {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: start;
}

/* Text Content */
.about-text-v3 {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-intro-v3 {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-weight: 500;
}

.about-description-v3 {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.about-description-v3 strong {
    color: var(--gray-800);
    font-weight: 700;
}

/* Values Grid */
.values-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-item-v3 {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.value-item-v3:hover {
    background: var(--gradient-soft);
    border-color: rgba(0, 216, 132, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.value-icon-v3 {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.value-item-v3:hover .value-icon-v3 {
    transform: scale(1.1) rotate(-5deg);
}

.value-title-v3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.value-text-v3 {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Inclusive Statement */
.inclusive-statement-v3 {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.15);
    position: relative;
    overflow: hidden;
}

.inclusive-statement-v3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer-inclusive 3s ease-in-out infinite;
}

@keyframes shimmer-inclusive {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

.inclusive-icon-v3 {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

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

.inclusive-title-v3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}

.inclusive-text-v3 {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #78350f;
}

/* Stats */
.about-stats-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-v3 {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-v3:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 216, 132, 0.15);
}

.stat-number-v3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-v3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* CTA Button */
.about-cta-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 100px;
    font-size: 1.0625rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 216, 132, 0.3);
    transition: all 0.3s ease;
}

.about-cta-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 216, 132, 0.4);
}

/* Image Content */
.about-image-v3 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.image-wrapper-v3 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper-v3 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper-v3:hover img {
    transform: scale(1.05);
}

.image-decoration-v3 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
}

/* Founders Card */
.founders-card-v3 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.founders-card-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 216, 132, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.founders-header-v3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.founders-header-v3 i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.founders-header-v3 span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founders-list-v3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.founder-v3 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar-v3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-green);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 216, 132, 0.3);
}

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

.founder-info-v3 {
    flex: 1;
}

.founder-name-v3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.founder-title-v3 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.founder-divider-v3 {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-v3 {
        grid-template-columns: 1fr 450px;
        gap: 48px;
    }
}

@media (max-width: 991px) {
    .about-section-v3 {
        padding: 80px 0;
    }
    
    .about-header-v3 {
        margin-bottom: 50px;
    }
    
    .about-content-v3 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-v3 {
        position: relative;
        top: 0;
    }
    
    .values-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-section-v3 {
        padding: 60px 0;
    }
    
    .about-container-v3 {
        padding: 0 var(--space-lg);
    }
    
    .about-header-v3 {
        margin-bottom: 40px;
    }
    
    .about-intro-v3 {
        font-size: 1.0625rem;
    }
    
    .values-grid-v3 {
        grid-template-columns: 1fr;
    }
    
    .inclusive-statement-v3 {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }
    
    .inclusive-icon-v3 {
        margin: 0 auto;
    }
    
    .about-stats-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-v3 {
        padding: 20px 12px;
    }
    
    .stat-number-v3 {
        font-size: 2rem;
    }
    
    .founders-card-v3 {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .about-text-v3 {
        gap: 24px;
    }
    
    .value-item-v3 {
        padding: 20px;
    }
    
    .inclusive-statement-v3 {
        padding: 20px;
    }
    
    .about-stats-v3 {
        grid-template-columns: 1fr;
    }
    
    .about-cta-v3 {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
    SERVICES
   ========================================================================== */
.services-carousel-section {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
}

/* Background Effects */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(0, 216, 132, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 40%);
}

.services-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
}

.services-carousel-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.carousel-header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.7s ease;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 216, 132, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #00d884;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00d884;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.carousel-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 16px;
}

.title-line {
    display: block;
    color: #1f2937;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-main-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.15s backwards;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover {
    border-color: #00d884;
    color: #00d884;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 216, 132, 0.12);
}

.filter-btn.active {
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 216, 132, 0.25);
}

.filter-btn i {
    font-size: 1rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
}

.carousel-container {
    position: relative;
    padding: 0 60px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 216, 132, 0.25);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-viewport {
    overflow: hidden;
    padding: 8px 0 20px;
}

.carousel-slides {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Cards - Compact & Sleek */
.service-card {
    flex: 0 0 calc(33.333% - 16px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card.hide {
    display: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 216, 132, 0.1);
}

.card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    transition: opacity 0.3s ease;
}

.service-card:hover .card-gradient {
    background: linear-gradient(180deg, 
        rgba(0, 216, 132, 0.05) 0%, 
        rgba(0, 216, 132, 0.15) 70%,
        rgba(0, 216, 132, 0.3) 100%
    );
}

.card-body {
    padding: 24px;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00d884;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.tag {
    padding: 4px 12px;
    background: rgba(0, 216, 132, 0.06);
    border: 1px solid rgba(0, 216, 132, 0.12);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #00d884;
    white-space: nowrap;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00d884;
    transition: all 0.25s ease;
    position: relative;
}

.card-action::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #00d884 0%, #0ea5e9 100%);
    transition: width 0.25s ease;
}

.card-action:hover {
    color: #0ea5e9;
    gap: 10px;
}

.card-action:hover::after {
    width: calc(100% - 18px);
}

/* Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination-dot {
    width: 7px;
    height: 7px;
    background: rgba(0, 216, 132, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pagination-dot:hover {
    background: rgba(0, 216, 132, 0.4);
    transform: scale(1.15);
}

.pagination-dot.active {
    width: 28px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00d884 0%, #0ea5e9 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 991px) {
    .services-carousel-section {
        padding: 60px 0;
    }

    .services-carousel-container {
        padding: 0 24px;
    }

    .carousel-header {
        margin-bottom: 36px;
    }

    .category-filter {
        margin-bottom: 36px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .services-carousel-section {
        padding: 50px 0;
    }

    .services-carousel-container {
        padding: 0 16px;
    }

    .carousel-main-title {
        font-size: 1.75rem;
    }

    .carousel-main-subtitle {
        font-size: 0.9375rem;
    }

    .category-filter {
        gap: 8px;
        margin-bottom: 28px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .filter-btn span {
        display: none;
    }

    .filter-btn i {
        font-size: 1.125rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .carousel-container {
        padding: 0 48px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn-prev {
        left: 0;
    }

    .carousel-btn-next {
        right: 0;
    }

    .card-body {
        padding: 20px;
    }

    .card-image {
        height: 160px;
    }

    .card-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.375rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .services-carousel-container {
        padding: 0 12px;
    }

    .carousel-container {
        padding: 0 42px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .card-image {
        height: 140px;
    }

    .card-body {
        padding: 18px;
    }
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-section-v3 {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.team-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 216, 132, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.team-container-v3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Header */
.team-header-v3 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.team-header-v3 .section-badge {
    margin-bottom: var(--space-lg);
}

.team-header-v3 .section-title {
    margin-bottom: var(--space-lg);
}

.team-header-v3 .section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Carousel Container */
.team-carousel-container-v3 {
    position: relative;
    padding: 0 80px;
    margin-bottom: 50px;
}

/* Navigation Buttons */
.team-nav-btn-v3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.team-nav-btn-v3:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 216, 132, 0.35);
}

.team-prev-v3 {
    left: 0;
}

.team-next-v3 {
    right: 0;
}

/* Carousel Viewport */
.team-carousel-viewport-v3 {
    overflow: hidden;
    padding: 24px 0 32px;
}

.team-carousel-slides-v3 {
    display: flex;
    gap: 28px;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide */
.team-slide-v3 {
    flex: 0 0 calc(33.333% - 19px);
    min-width: calc(33.333% - 19px);
}

/* Card */
.team-card-v3 {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-card-v3:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 216, 132, 0.3);
}

/* Card Image */
.card-image-v3 {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: var(--gray-100);
}

.card-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
}

.team-card-v3:hover .card-image-v3 img {
    transform: scale(1.06);
}

.image-overlay-v3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card-v3:hover .image-overlay-v3 {
    opacity: 1;
}

/* Available Badge */
.available-badge-v3 {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pulse-dot-v3 {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse-v3 2s ease-in-out infinite;
}

@keyframes pulse-v3 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.25);
    }
}

/* Card Content */
.card-content-v3 {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.member-name-v3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 4px;
}

.credentials-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.cred-badge {
    padding: 5px 13px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cred-badge.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.cred-badge.secondary {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.member-bio-v3 {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 4px;
}

/* Specialties */
.specialties-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.spec-tag {
    padding: 7px 15px;
    background: var(--gradient-soft);
    border: 1px solid rgba(0, 216, 132, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-green);
    transition: all 0.25s ease;
}

.spec-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Card Footer */
.card-footer-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.experience-v3 {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.experience-v3 i {
    font-size: 1.125rem;
    color: var(--primary-green);
}

.book-btn-v3 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: transparent;
    border: 2px solid var(--primary-green);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.book-btn-v3:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateX(3px);
}

/* Join Card */
.join-card-v3 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.join-card-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 216, 132, 0.12) 0%, transparent 70%);
    animation: rotate-bg-v3 20s linear infinite;
}

@keyframes rotate-bg-v3 {
    0% {
        transform: rotate(0deg) scale(1.5);
    }
    100% {
        transform: rotate(360deg) scale(1.5);
    }
}

.join-content-v3 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    gap: 20px;
    min-height: 360px;
}

.join-icon-v3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 16px 32px rgba(0, 216, 132, 0.4);
    animation: float-v3 3s ease-in-out infinite;
}

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

.join-title-v3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.join-desc-v3 {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 280px;
}

.join-benefits-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 320px;
}

.benefit-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-v3 i {
    font-size: 1.125rem;
    color: var(--primary-green);
}

.join-btn-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 216, 132, 0.4);
    transition: all 0.3s ease;
}

.join-btn-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 216, 132, 0.5);
}

/* Dots */
.team-dots-v3 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 80px;
}

.team-dot-v3 {
    width: 8px;
    height: 8px;
    background: rgba(0, 216, 132, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot-v3:hover {
    background: rgba(0, 216, 132, 0.5);
    transform: scale(1.2);
}

.team-dot-v3.active {
    width: 32px;
    border-radius: 100px;
    background: var(--gradient-primary);
}

/* CTA */
.team-cta-v3 {
    background: var(--gradient-soft);
    border: 2px solid rgba(0, 216, 132, 0.2);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
}

.cta-title-v3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.cta-desc-v3 {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 100px;
    font-size: 1.0625rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 216, 132, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 216, 132, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .team-slide-v3 {
        flex: 0 0 calc(50% - 14px);
        min-width: calc(50% - 14px);
    }
}

@media (max-width: 991px) {
    .team-section-v3 {
        padding: 80px 0;
    }
    
    .team-carousel-container-v3 {
        padding: 0 70px;
    }
    
    .team-nav-btn-v3 {
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .team-section-v3 {
        padding: 60px 0;
    }
    
    .team-header-v3 {
        margin-bottom: 50px;
    }
    
    .team-carousel-container-v3 {
        padding: 0 55px;
    }
    
    .team-nav-btn-v3 {
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
    }
    
    .team-slide-v3 {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .card-image-v3 {
        height: 400px;
    }
    
    .card-content-v3 {
        padding: 24px;
    }
    
    .card-footer-v3 {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .book-btn-v3 {
        width: 100%;
        justify-content: center;
    }
    
    .join-benefits-v3 {
        grid-template-columns: 1fr;
    }
    
    .team-cta-v3 {
        padding: 48px 32px;
    }
}

@media (max-width: 480px) {
    .team-carousel-container-v3 {
        padding: 0 48px;
    }
    
    .team-nav-btn-v3 {
        width: 42px;
        height: 42px;
        font-size: 1.375rem;
    }
    
    .card-image-v3 {
        height: 360px;
    }
}

/* ==========================================================================
   REVIEWS & INSTAGRAM SECTION - FIXED OVERFLOW
   ========================================================================== */

.reviews-insta-v3 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0fdf9 100%);
    position: relative;
    overflow: hidden;
}

.reviews-insta-v3::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 216, 132, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-insta-v3::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-insta-container-v3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.reviews-insta-header-v3 {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-insta-v3 .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(0, 216, 132, 0.2);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #00d884;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.reviews-insta-v3 .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.reviews-insta-v3 .title-highlight {
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-insta-v3 .section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
}

/* Grid Layout */
.reviews-insta-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0;
}

/* Column Base Styles - FIXED */
.reviews-column-v3,
.instagram-column-v3 {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    min-height: 600px;
    max-height: 600px; /* FIXED: Add max-height */
    overflow: hidden; /* FIXED: Prevent overflow */
}

.reviews-column-v3:hover,
.instagram-column-v3:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 216, 132, 0.2);
    transform: translateY(-4px);
}

/* Column Header */
.column-header-v3 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
    flex-shrink: 0; /* FIXED: Prevent header from shrinking */
}

.icon-wrapper-v3 {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    flex-shrink: 0;
}

.reviews-icon-wrapper-v3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.instagram-icon-wrapper-v3 {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.3);
}

.header-text-v3 {
    flex: 1;
    min-width: 0;
    overflow: hidden; /* FIXED: Prevent text overflow */
}

.column-title-v3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap; /* FIXED */
    overflow: hidden; /* FIXED */
    text-overflow: ellipsis; /* FIXED */
}

/* Rating Display */
.rating-display-v3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stars-display-v3 {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.125rem;
}

.rating-number-v3 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.125rem;
}

.review-count-v3 {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Instagram Handle */
.instagram-handle-v3 {
    color: #00d884;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    word-break: break-word;
    display: block; /* FIXED */
    overflow: hidden; /* FIXED */
    text-overflow: ellipsis; /* FIXED */
}

.instagram-handle-v3:hover {
    color: #0ea5e9;
}

/* Reviews Carousel - FIXED */
.reviews-carousel-v3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0; /* FIXED: Allow proper flexbox shrinking */
    overflow: hidden; /* FIXED: Prevent overflow */
}

.reviews-track-v3 {
    position: relative;
    flex: 1;
    min-height: 300px; /* FIXED: Set minimum height */
    max-height: 380px; /* FIXED: Set maximum height */
    overflow: hidden; /* FIXED: Prevent overflow */
}

.review-card-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(30px);
    overflow: hidden; /* FIXED: Prevent card overflow */
}

.review-card-v3.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.review-stars-v3 {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.125rem;
    flex-shrink: 0; /* FIXED */
}

.review-text-v3 {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    overflow-y: auto; /* FIXED: Allow scrolling if needed */
    overflow-x: hidden; /* FIXED: Prevent horizontal overflow */
    word-wrap: break-word; /* FIXED: Break long words */
    word-break: break-word; /* FIXED: Break long words */
    max-height: 200px; /* FIXED: Limit height */
    padding-right: 0.5rem; /* FIXED: Space for scrollbar */
}

/* Custom scrollbar for review text */
.review-text-v3::-webkit-scrollbar {
    width: 4px;
}

.review-text-v3::-webkit-scrollbar-track {
    background: transparent;
}

.review-text-v3::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.review-text-v3::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.reviewer-info-v3 {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0; /* FIXED: Prevent shrinking */
}

.reviewer-avatar-v3 {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem;
}

.reviewer-details-v3 {
    flex: 1;
    min-width: 0;
    overflow: hidden; /* FIXED */
}

.reviewer-name-v3 {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    white-space: nowrap; /* FIXED */
    overflow: hidden; /* FIXED */
    text-overflow: ellipsis; /* FIXED */
}

.review-date-v3 {
    font-size: 0.8125rem;
    color: #9ca3af;
}

/* Review Navigation */
.reviews-nav-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0; /* FIXED: Prevent shrinking */
}

.review-nav-btn-v3 {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-nav-btn-v3:hover {
    background: linear-gradient(135deg, #00d884 0%, #0ea5e9 100%);
    color: #ffffff;
    border-color: transparent;
}

.review-dots-v3 {
    display: flex;
    gap: 0.5rem;
}

.review-dot-v3 {
    width: 8px;
    height: 8px;
    background: rgba(0, 216, 132, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot-v3:hover {
    background: rgba(0, 216, 132, 0.5);
    transform: scale(1.2);
}

.review-dot-v3.active {
    width: 32px;
    border-radius: 100px;
    background: linear-gradient(90deg, #00d884 0%, #0ea5e9 100%);
}

/* Instagram Widget - FIXED */
.instagram-widget-v3 {
    flex: 1;
    min-height: 300px; /* FIXED: Set minimum height */
    max-height: 380px; /* FIXED: Set maximum height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden; /* FIXED: Prevent overflow */
}

.instagram-widget-v3 > div {
    width: 100%;
    height: 100%;
    overflow: hidden; /* FIXED */
}

/* Action Buttons */
.google-review-btn-v3,
.instagram-follow-btn-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0; /* FIXED: Prevent shrinking */
}

.google-review-btn-v3 {
    background: #ffffff;
    color: #4285f4;
    border: 2px solid #4285f4;
}

.google-review-btn-v3:hover {
    background: #4285f4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.google-logo-v3 {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.instagram-follow-btn-v3 {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.instagram-follow-btn-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

.google-review-btn-v3 i,
.instagram-follow-btn-v3 i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ========================================================================== */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .reviews-insta-v3 {
        padding: 5rem 0;
    }
    
    .reviews-insta-container-v3 {
        padding: 0 1.25rem;
    }
    
    .reviews-insta-header-v3 {
        margin-bottom: 3rem;
    }
    
    .reviews-insta-grid-v3 {
        gap: 1.5rem;
    }
    
    .reviews-column-v3,
    .instagram-column-v3 {
        padding: 1.75rem;
        min-height: 550px;
        max-height: 550px; /* FIXED */
    }
    
    .column-title-v3 {
        font-size: 1.375rem;
    }
    
    .reviews-track-v3 {
        min-height: 280px; /* FIXED */
        max-height: 330px; /* FIXED */
    }
    
    .instagram-widget-v3 {
        min-height: 280px; /* FIXED */
        max-height: 330px; /* FIXED */
        padding: 1.25rem;
    }
}

/* Tablets (991px and below) */
@media (max-width: 991px) {
    .reviews-insta-v3 {
        padding: 4rem 0;
    }
    
    .reviews-insta-header-v3 {
        margin-bottom: 2.5rem;
    }
    
    .reviews-insta-v3 .section-title {
        font-size: 2rem;
    }
    
    .reviews-insta-v3 .section-description {
        font-size: 1rem;
    }
    
    .reviews-insta-grid-v3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-column-v3,
    .instagram-column-v3 {
        min-height: auto;
        max-height: none; /* FIXED: Remove height restriction on tablet */
    }
    
    .reviews-track-v3,
    .instagram-widget-v3 {
        max-height: 400px; /* FIXED */
    }
}

/* Mobile Landscape (767px and below) */
@media (max-width: 767px) {
    .reviews-insta-v3 {
        padding: 3rem 0;
    }
    
    .reviews-insta-container-v3 {
        padding: 0 1rem;
    }
    
    .reviews-insta-header-v3 {
        margin-bottom: 2rem;
    }
    
    .reviews-insta-v3 .section-badge {
        padding: 0.375rem 1.25rem;
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .reviews-insta-v3 .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .reviews-insta-v3 .section-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .reviews-insta-grid-v3 {
        gap: 1.5rem;
    }
    
    .reviews-column-v3,
    .instagram-column-v3 {
        padding: 1.5rem;
        border-radius: 1.25rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        max-height: none; /* FIXED: Remove max-height on mobile */
    }
    
    .column-header-v3 {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1.25rem;
    }
    
    .icon-wrapper-v3 {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.5rem;
        border-radius: 0.875rem;
    }
    
    .column-title-v3 {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
        white-space: normal; /* FIXED: Allow wrapping on mobile */
    }
    
    .rating-display-v3 {
        gap: 0.5rem;
    }
    
    .stars-display-v3 {
        font-size: 1rem;
    }
    
    .rating-number-v3 {
        font-size: 1rem;
    }
    
    .review-count-v3 {
        font-size: 0.875rem;
    }
    
    .instagram-handle-v3 {
        font-size: 0.9375rem;
        white-space: normal; /* FIXED: Allow wrapping on mobile */
    }
    
    .reviews-track-v3 {
        min-height: 350px;
        max-height: 450px; /* FIXED: Increase max-height on mobile */
    }
    
    .review-text-v3 {
        max-height: 220px; /* FIXED: Increase max-height on mobile */
    }
    
    .instagram-widget-v3 {
        min-height: 350px;
        max-height: 450px; /* FIXED: Increase max-height on mobile */
        padding: 1rem;
        border-radius: 0.875rem;
    }
    
    .google-review-btn-v3,
    .instagram-follow-btn-v3 {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        gap: 0.625rem;
    }
    
    .google-logo-v3 {
        width: 18px;
        height: 18px;
    }
    
    .google-review-btn-v3 i,
    .instagram-follow-btn-v3 i {
        font-size: 1rem;
    }
}

/* Mobile Portrait (640px and below) */
@media (max-width: 640px) {
    .reviews-insta-v3 {
        padding: 2.5rem 0;
    }
    
    .reviews-insta-v3::before,
    .reviews-insta-v3::after {
        width: 300px;
        height: 300px;
    }
    
    .reviews-insta-container-v3 {
        padding: 0 0.875rem;
    }
    
    .reviews-insta-header-v3 {
        margin-bottom: 1.75rem;
    }
    
    .reviews-insta-v3 .section-title {
        font-size: 1.625rem;
    }
    
    .reviews-insta-grid-v3 {
        gap: 1.25rem;
    }
    
    .reviews-column-v3,
    .instagram-column-v3 {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .column-header-v3 {
        gap: 0.875rem;
        padding-bottom: 1rem;
    }
    
    .icon-wrapper-v3 {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.375rem;
        border-radius: 0.75rem;
    }
    
    .column-title-v3 {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .rating-display-v3 {
        gap: 0.375rem;
    }
    
    .stars-display-v3 {
        font-size: 0.9375rem;
        gap: 0.1875rem;
    }
    
    .rating-number-v3 {
        font-size: 0.9375rem;
    }
    
    .review-count-v3 {
        font-size: 0.8125rem;
    }
    
    .instagram-handle-v3 {
        font-size: 0.875rem;
    }
    
    .reviews-track-v3 {
        min-height: 300px;
        max-height: 400px; /* FIXED */
    }
    
    .review-card-v3 {
        padding: 1.25rem;
    }
    
    .review-text-v3 {
        max-height: 180px; /* FIXED */
        font-size: 0.875rem;
    }
    
    .instagram-widget-v3 {
        min-height: 300px;
        max-height: 400px; /* FIXED */
        padding: 0.875rem;
        border-radius: 0.75rem;
    }
    
    .google-review-btn-v3,
    .instagram-follow-btn-v3 {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .reviews-insta-v3 {
        padding: 2rem 0;
    }
    
    .reviews-insta-container-v3 {
        padding: 0 0.75rem;
    }
    
    .reviews-insta-header-v3 {
        margin-bottom: 1.5rem;
    }
    
    .reviews-insta-v3 .section-badge {
        padding: 0.3125rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
    }
    
    .reviews-insta-v3 .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .reviews-insta-v3 .section-description {
        font-size: 0.875rem;
    }
    
    .reviews-insta-grid-v3 {
        gap: 1rem;
    }
    
    .reviews-column-v3,
    .instagram-column-v3 {
        padding: 1rem;
        border-radius: 0.875rem;
    }
    
    .column-header-v3 {
        gap: 0.75rem;
        padding-bottom: 0.875rem;
        border-bottom-width: 1.5px;
    }
    
    .icon-wrapper-v3 {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.25rem;
        border-radius: 0.625rem;
    }
    
    .column-title-v3 {
        font-size: 1rem;
        margin-bottom: 0.1875rem;
    }
    
    .rating-display-v3 {
        gap: 0.3125rem;
        flex-wrap: wrap;
    }
    
    .stars-display-v3 {
        font-size: 0.875rem;
        gap: 0.125rem;
    }
    
    .rating-number-v3 {
        font-size: 0.875rem;
    }
    
    .review-count-v3 {
        font-size: 0.75rem;
        width: 100%;
        margin-top: 0.125rem;
    }
    
    .instagram-handle-v3 {
        font-size: 0.8125rem;
    }
    
    .reviews-track-v3 {
        min-height: 280px;
        max-height: 380px; /* FIXED */
    }
    
    .review-card-v3 {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .review-stars-v3 {
        font-size: 1rem;
    }
    
    .review-text-v3 {
        font-size: 0.875rem;
        max-height: 160px; /* FIXED */
    }
    
    .reviewer-info-v3 {
        gap: 0.75rem;
        padding-top: 0.875rem;
    }
    
    .reviewer-avatar-v3 {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 0.8125rem;
    }
    
    .reviewer-name-v3 {
        font-size: 0.875rem;
    }
    
    .review-date-v3 {
        font-size: 0.75rem;
    }
    
    .review-nav-btn-v3 {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.125rem;
    }
    
    .review-dot-v3 {
        width: 6px;
        height: 6px;
    }
    
    .review-dot-v3.active {
        width: 24px;
    }
    
    .instagram-widget-v3 {
        min-height: 280px;
        max-height: 380px; /* FIXED */
        padding: 0.75rem;
        border-radius: 0.625rem;
    }
    
    .google-review-btn-v3,
    .instagram-follow-btn-v3 {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
        flex-wrap: nowrap;
    }
    
    .google-logo-v3 {
        width: 16px;
        height: 16px;
    }
    
    .google-review-btn-v3 i,
    .instagram-follow-btn-v3 i {
        font-size: 0.9375rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .reviews-insta-v3 {
        padding: 1.75rem 0;
    }
    
    .reviews-insta-container-v3 {
        padding: 0 0.625rem;
    }
    
    .reviews-column-v3,
    .instagram-column-v3 {
        padding: 0.875rem;
    }
    
    .column-header-v3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.625rem;
    }
    
    .icon-wrapper-v3 {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.125rem;
    }
    
    .column-title-v3 {
        font-size: 0.9375rem;
    }
    
    .reviews-track-v3 {
        min-height: 260px;
        max-height: 360px; /* FIXED */
    }
    
    .review-card-v3 {
        padding: 0.875rem;
    }
    
    .review-text-v3 {
        max-height: 140px; /* FIXED */
    }
    
    .instagram-widget-v3 {
        min-height: 260px;
        max-height: 360px; /* FIXED */
        padding: 0.625rem;
    }
    
    .google-review-btn-v3,
    .instagram-follow-btn-v3 {
        width: 100%;
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
    }
}

/* Loading State for Widgets */
.instagram-widget-v3:empty::after {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #9ca3af;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .reviews-column-v3,
    .instagram-column-v3 {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .reviews-column-v3 {
        animation-delay: 0.1s;
    }
    
    .instagram-column-v3 {
        animation-delay: 0.2s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section-v3 {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 216, 132, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container-v3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Header */
.contact-header-v3 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-header-v3 .section-badge {
    margin-bottom: var(--space-lg);
}

.contact-header-v3 .section-title {
    margin-bottom: var(--space-lg);
}

.contact-header-v3 .section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Contact Grid */
.contact-grid-v3 {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

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

.info-card-v3 {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-card-v3:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 216, 132, 0.3);
}

.info-icon-v3 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-card-v3:hover .info-icon-v3 {
    transform: scale(1.1) rotate(-5deg);
}

.location-icon-v3 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.phone-icon-v3 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.email-icon-v3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.hours-icon-v3 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.info-content-v3 {
    flex: 1;
}

.info-title-v3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.info-text-v3 {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.info-link-v3 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.info-link-v3:hover {
    color: var(--primary-blue);
    gap: 10px;
}

.info-link-v3 i {
    font-size: 1rem;
}

/* Hours List */
.hours-list-v3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.day-v3 {
    color: var(--gray-700);
    font-weight: 500;
}

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

/* Quick Info */
.quick-info-v3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--gradient-soft);
    border: 1px solid rgba(0, 216, 132, 0.15);
    border-radius: 16px;
}

.quick-info-item-v3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.quick-info-item-v3 i {
    font-size: 1.25rem;
    color: var(--primary-green);
}

/* Contact Form Column */
.contact-form-v3 {
    display: flex;
    flex-direction: column;
}

.form-wrapper-v3 {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

.form-header-v3 {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.form-title-v3 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-subtitle-v3 {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Elfsight Form Container */
.elfsight-form-container-v3 {
    flex: 1;
    min-height: 500px;
}

.elfsight-form-container-v3 > div {
    width: 100%;
    height: 100%;
}

/* Form Footer */
.form-footer-v3 {
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.privacy-note-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.privacy-note-v3 i {
    font-size: 1.125rem;
    color: var(--primary-green);
}

/* Emergency Notice */
.emergency-notice-v3 {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.1);
}

.emergency-icon-v3 {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
    animation: pulse-emergency 2s ease-in-out infinite;
}

@keyframes pulse-emergency {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.emergency-content-v3 {
    flex: 1;
}

.emergency-title-v3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 8px;
}

.emergency-text-v3 {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #7f1d1d;
}

.emergency-text-v3 strong {
    font-weight: 700;
    color: #991b1b;
}

.emergency-text-v3 a {
    color: #991b1b;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.emergency-text-v3 a:hover {
    color: #7f1d1d;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid-v3 {
        grid-template-columns: 360px 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .contact-section-v3 {
        padding: 80px 0;
    }
    
    .contact-header-v3 {
        margin-bottom: 60px;
    }
    
    .contact-grid-v3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-v3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-info-v3 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .contact-section-v3 {
        padding: 60px 0;
    }
    
    .contact-container-v3 {
        padding: 0 var(--space-lg);
    }
    
    .contact-header-v3 {
        margin-bottom: 50px;
    }
    
    .contact-info-v3 {
        grid-template-columns: 1fr;
    }
    
    .info-card-v3 {
        padding: 24px;
    }
    
    .info-icon-v3 {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .form-wrapper-v3 {
        padding: 32px 24px;
    }
    
    .form-title-v3 {
        font-size: 1.625rem;
    }
    
    .emergency-notice-v3 {
        flex-direction: column;
        padding: 28px;
        text-align: center;
    }
    
    .emergency-icon-v3 {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .info-card-v3 {
        padding: 20px;
        gap: 16px;
    }
    
    .info-icon-v3 {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }
    
    .form-wrapper-v3 {
        padding: 28px 20px;
    }
    
    .form-title-v3 {
        font-size: 1.5rem;
    }
    
    .emergency-notice-v3 {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   LUXURY PSYCHOLOGY FOOTER
   ========================================================================== */

.luxury-footer {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    margin-top: 0;
    overflow: hidden;
}

/* Wave Decoration */
.footer-wave {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    color: #f0fdf9;
}

/* Main Footer */
.footer-main {
    position: relative;
    background: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 100%);
    padding: 80px 0 60px;
}

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

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 216, 132, 0.15);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.logo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00d884;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(0, 216, 132, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d884;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #00d884, #0ea5e9);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 216, 132, 0.3);
}

/* Links Columns */
.footer-links-column,
.footer-contact-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-column-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d884, #0ea5e9);
    border-radius: 2px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 0.9375rem;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
    width: fit-content;
}

.footer-link-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d884, #0ea5e9);
    transition: all 0.3s ease;
}

.footer-link-item:hover {
    color: #00d884;
    padding-left: 20px;
}

.footer-link-item:hover::before {
    width: 12px;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d884;
    font-size: 1.125rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

.contact-text a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #00d884;
}

/* Payment & Insurance Section */
.footer-payment-section {
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.05), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(0, 216, 132, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-header i {
    font-size: 1.75rem;
    color: #00d884;
}

.payment-header h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.payment-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 216, 132, 0.2);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.payment-badge i {
    font-size: 1.25rem;
    color: #00d884;
}

.payment-badge:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #00d884;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 216, 132, 0.2);
}

.partner-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: #ffffff;
    border-color: rgba(0, 216, 132, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-label {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #6b7280;
    font-weight: 500;
}

/* Credentials Banner */
.credentials-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(0, 216, 132, 0.2);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
}

.credential-item i {
    font-size: 1.5rem;
    color: #00d884;
}

.credential-divider {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(0, 216, 132, 0.3), transparent);
}

/* Bottom Bar */
.footer-bottom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 28px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.current-year {
    color: #00d884;
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.legal-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #00d884;
}

.legal-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.footer-designer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.designer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 216, 132, 0.15), rgba(14, 165, 233, 0.15));
    border: 1px solid rgba(0, 216, 132, 0.3);
    border-radius: 8px;
    color: #00d884;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designer-link:hover {
    background: linear-gradient(135deg, #00d884, #0ea5e9);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 216, 132, 0.4);
}

.designer-link i {
    font-size: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
    }

    .footer-contact-column {
        grid-column: 1 / -1;
    }

    .footer-payment-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Tablets (991px and below) */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 50px;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

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

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-payment-section {
        padding: 32px;
    }

    .credentials-banner {
        padding: 24px;
        gap: 16px;
    }

    .credential-divider {
        display: none;
    }
}

/* Mobile Landscape (767px and below) */
@media (max-width: 767px) {
    .footer-wave {
        height: 60px;
    }

    .footer-wave svg {
        height: 60px;
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-payment-section {
        padding: 28px;
        gap: 28px;
        margin-bottom: 40px;
    }

    .partner-logos {
        gap: 16px;
    }

    .partner-logo {
        flex: 1;
        min-width: calc(50% - 8px);
    }

    .credentials-banner {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .credential-item {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        padding: 24px 0;
    }

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

    .footer-copyright,
    .footer-legal-links,
    .footer-designer-credit {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Portrait (640px and below) */
@media (max-width: 640px) {
    .footer-brand-name {
        font-size: 1.375rem;
    }

    .footer-logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .footer-payment-section {
        padding: 24px;
    }

    .payment-header h4 {
        font-size: 1.25rem;
    }

    .payment-badges {
        gap: 10px;
    }

    .payment-badge {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }

    .partner-logo {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        min-width: 100%;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .footer-wave {
        height: 50px;
    }

    .footer-wave svg {
        height: 50px;
    }

    .footer-main {
        padding: 40px 0 32px;
    }

    .footer-grid {
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand-name {
        font-size: 1.25rem;
    }

    .footer-logo-wrapper {
        width: 64px;
        height: 64px;
    }

    .footer-payment-section {
        padding: 20px;
        margin-bottom: 32px;
    }

    .payment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .payment-header i {
        font-size: 1.5rem;
    }

    .payment-header h4 {
        font-size: 1.125rem;
    }

    .payment-description {
        font-size: 0.875rem;
    }

    .credentials-banner {
        padding: 20px;
    }

    .credential-item {
        font-size: 0.875rem;
    }

    .credential-item i {
        font-size: 1.375rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-legal-links {
        flex-wrap: wrap;
    }

    .designer-link {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .footer-container {
        padding: 0 0.875rem;
    }

    .payment-badges {
        flex-direction: column;
    }

    .payment-badge {
        width: 100%;
        justify-content: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .legal-divider {
        display: none;
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: var(--z-sticky);
}

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

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

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1200px) {
    .header-island {
        padding: var(--space-md) var(--space-xl);
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
}

@media (max-width: 991px) {

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

@media (max-width: 767px) {
    :root {
        --space-4xl: 4rem;
    }
    
    .header {
        top: var(--space-md);
        width: calc(100% - var(--space-xl));
    }
    
    .header-island {
        padding: var(--space-sm) var(--space-lg);
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-subtitle {
        font-size: 0.6875rem;
    }
   
    .cta-button {
        width: 100%;
        justify-content: center;
    }
   
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: var(--space-lg);
        right: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .mobile-menu-panel {
        max-width: 100%;
    }
}

