/* ===================================
   HOLISTIC MENTAL HEALTH SERVICES
   Complete Website Styles
   Organized: Each Section with All Styles, Animations & Mobile
   =================================== */

/* ===================================
   1. RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-teal: #5DBBC3;
    --color-purple: #7B88C4;
    --color-white: #FFFFFF;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-bg-light: #F9FAFB;
    --gradient-primary: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(93, 187, 195, 0.05) 0%, rgba(123, 136, 196, 0.05) 100%);
    --shadow-card: 0 4px 20px rgba(93, 187, 195, 0.15);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* Universal Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    color: var(--color-teal);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   2. PROGRESS NAVIGATION HEADER
   Desktop + Mobile + Animations
   =================================== */

.progress-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(93, 187, 195, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-nav-header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.header-logo:hover {
    transform: translateY(-1px);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(93, 187, 195, 0.15));
}

.desktop-progress-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 700px;
}

.progress-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 0;
}

.progress-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: linear-gradient(90deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    z-index: 0;
    border-radius: 2px;
}

.progress-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(93, 187, 195, 0.4);
}

.nav-dot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-circle {
    position: relative;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.dot-label {
    font-size: 11px;
    font-weight: 500;
    color: #9CA3AF;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-dot:hover .dot-circle {
    border-color: #5DBBC3;
    transform: scale(1.2);
}

.nav-dot:hover .dot-label {
    opacity: 1;
    transform: translateY(0);
    color: #5DBBC3;
}

.nav-dot.active .dot-circle {
    border-color: #5DBBC3;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(93, 187, 195, 0.12);
    animation: pulseActive 2.5s ease-in-out infinite;
}

.nav-dot.active .dot-label {
    opacity: 1;
    transform: translateY(0);
    color: #5DBBC3;
    font-weight: 600;
}

@keyframes pulseActive {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(93, 187, 195, 0.12);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(93, 187, 195, 0.18);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.action-icon {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(93, 187, 195, 0.08);
    border: 1px solid rgba(93, 187, 195, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5DBBC3;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-icon:hover {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 187, 195, 0.3);
}

.mobile-progress-nav {
    display: none;
}

.page-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(93, 187, 195, 0.08);
}

.page-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5DBBC3 0%, #7B88C4 100%);
    transition: width 0.1s linear;
}

/* Header Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 20px;
        gap: 20px;
    }
    
    .logo-image {
        width: 42px;
        height: 42px;
    }
    
    .desktop-progress-nav {
        display: none;
    }
    
    .mobile-progress-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }

    .mobile-section-info {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-section-label {
        color: #5DBBC3;
    }

    .mobile-section-count {
        color: #9CA3AF;
    }

    .mobile-progress-track {
        position: relative;
        width: 140px;
        height: 8px;
        display: flex;
        align-items: center;
    }

    .mobile-progress-line {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 2px;
        background: rgba(93, 187, 195, 0.15);
        border-radius: 2px;
    }

    .mobile-dots-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        width: 100%;
        z-index: 1;
    }

    .mobile-dot {
        width: 8px;
        height: 8px;
        background: #E5E7EB;
        border-radius: 50%;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .mobile-dot.active {
        background: linear-gradient(135deg, #5DBBC3, #7B88C4);
        transform: scale(1.4);
        box-shadow: 0 0 0 3px rgba(93, 187, 195, 0.2);
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ===================================
   3. LOCATIONS MODAL
   Desktop + Mobile + Animations
   =================================== */

.locations-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.locations-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #6B7280;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: #EF4444;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.05) 0%, rgba(123, 136, 196, 0.05) 100%);
    border-bottom: 1px solid rgba(93, 187, 195, 0.1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 36px;
    box-shadow: 0 8px 24px rgba(93, 187, 195, 0.3);
}

.modal-header h3 {
    font-size: 32px;
    color: #1F2937;
    margin-bottom: 8px;
    font-weight: 700;
}

.modal-header p {
    font-size: 16px;
    color: #6B7280;
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 250px);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.location-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(93, 187, 195, 0.2);
}

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

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    padding: 30px;
}

.location-details h4 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-info-item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
}

.location-info-item i {
    color: #5DBBC3;
    font-size: 16px;
    margin-top: 2px;
}

.location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-btn.primary {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(93, 187, 195, 0.3);
}

.location-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 187, 195, 0.4);
}

.location-btn.secondary {
    background: rgba(93, 187, 195, 0.1);
    color: #5DBBC3;
    border: 1px solid rgba(93, 187, 195, 0.2);
}

.location-btn.secondary:hover {
    background: rgba(93, 187, 195, 0.15);
}

/* Locations Modal Mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 40px 20px 20px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-actions {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   4. HERO SECTION
   Desktop + Mobile + Animations
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

/* Gradient Placeholder - Shows Instantly */
.hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
    z-index: 0;
    animation: fadeOut 0.8s ease-out 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

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

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
    /* Performance optimization */
    transform: translate3d(-50%, -50%, 0);
}

/* Reduce video quality on mobile for faster loading */
@media (max-width: 768px) {
    .hero-bg-video {
        display: none; /* Hide video on mobile, use gradient only */
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.7) 0%, rgba(17, 24, 39, 0.8) 100%);
    z-index: 1;
}

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

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0F2F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(93, 187, 195, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 187, 195, 0.4);
}

.btn-secondary {
    background: #FFFFFF;
    color: #5DBBC3;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    border-color: transparent;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

.liquid-glass-container {
    position: absolute;
    width: 450px;
    height: 450px;
    z-index: 0;
}

.liquid-glass-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(93, 187, 195, 0.2);
    animation: morphGlass 12s ease-in-out infinite;
    overflow: hidden;
    will-change: border-radius, transform;
}

@keyframes morphGlass {
    0%, 100% {
        border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
        transform: translate(-50%, -50%) rotate(5deg);
    }
    50% {
        border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
        transform: translate(-50%, -50%) rotate(-5deg);
    }
    75% {
        border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
        transform: translate(-50%, -50%) rotate(3deg);
    }
}

.glass-blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(93, 187, 195, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(93, 187, 195, 0.3);
    will-change: transform;
}

.blob-1 {
    width: 180px;
    height: 180px;
    top: -20%;
    right: -15%;
    animation: blobFloat1 15s ease-in-out infinite;
}

.blob-2 {
    width: 140px;
    height: 140px;
    bottom: -10%;
    left: -10%;
    animation: blobFloat2 12s ease-in-out infinite reverse;
}

.blob-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -20%;
    animation: blobFloat3 10s ease-in-out infinite;
}

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

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 25px) scale(1.15); }
    66% { transform: translate(25px, -15px) scale(0.95); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.2); }
}

.hero-logo {
    position: relative;
    width: 100%;
    max-width: 350px;
    z-index: 10;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .liquid-glass-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
        /* Gradient background always visible on mobile */
        background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    }
    
    .hero-placeholder {
        display: none; /* Not needed on mobile */
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .glass-blob {
        display: none;
    }
    
    .liquid-glass-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-logo {
        max-width: 200px;
    }
}

/* ===================================
   5. ABOUT SECTION (FOUNDER)
   Desktop + Mobile + Animations
   =================================== */

.about-redesign {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-redesign::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 187, 195, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatingSlow 20s ease-in-out infinite;
}

@keyframes floatingSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Founder Card - Centered Design */
.founder-card {
    max-width: 900px;
    margin: 0 auto 100px;
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(93, 187, 195, 0.1);
}

/* Founder Header with Compact Photo */
.founder-header {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.03) 0%, rgba(123, 136, 196, 0.03) 100%);
    border-bottom: 1px solid rgba(93, 187, 195, 0.1);
}

.founder-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.founder-photo-frame {
    width: 200px;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(93, 187, 195, 0.25);
    border: 4px solid #FFFFFF;
    position: relative;
    z-index: 2;
}

.founder-photo-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 24px;
    z-index: -1;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-photo-frame:hover .founder-photo {
    transform: scale(1.08);
}

.founder-badge-floating {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(93, 187, 195, 0.4);
    white-space: nowrap;
    z-index: 3;
}

.founder-badge-floating i {
    font-size: 14px;
}

.founder-intro {
    flex: 1;
}

.founder-name {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

.founder-title {
    font-size: 18px;
    color: #5DBBC3;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-title i {
    font-size: 20px;
}

.founder-credentials-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #FFFFFF;
    border: 2px solid rgba(93, 187, 195, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.credential-badge i {
    color: #5DBBC3;
    font-size: 15px;
}

.credential-badge:hover {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(93, 187, 195, 0.3);
}

.credential-badge:hover i {
    color: #FFFFFF;
}

/* Founder Bio */
.founder-bio {
    padding: 48px;
}

.bio-text {
    font-size: 17px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.bio-text strong {
    color: #1F2937;
    font-weight: 600;
}

.founder-quote-box {
    position: relative;
    padding: 32px 40px 32px 80px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.05) 0%, rgba(123, 136, 196, 0.05) 100%);
    border-left: 4px solid #5DBBC3;
    border-radius: 16px;
    margin-top: 32px;
}

.quote-icon {
    position: absolute;
    top: 32px;
    left: 28px;
    font-size: 32px;
    color: #5DBBC3;
    opacity: 0.3;
}

.quote-text {
    font-size: 19px;
    font-style: italic;
    color: #1F2937;
    line-height: 1.7;
    margin-bottom: 12px;
}

.quote-author {
    font-size: 15px;
    font-weight: 600;
    color: #5DBBC3;
    text-align: right;
}

/* Specializations */
.founder-specializations {
    padding: 0 48px 48px;
    border-top: 1px solid rgba(93, 187, 195, 0.1);
    padding-top: 40px;
}

.spec-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-title i {
    color: #5DBBC3;
    font-size: 22px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.04) 0%, rgba(123, 136, 196, 0.04) 100%);
    border: 1px solid rgba(93, 187, 195, 0.15);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-item i {
    color: #5DBBC3;
    font-size: 18px;
    flex-shrink: 0;
}

.spec-item:hover {
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    border-color: #5DBBC3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(93, 187, 195, 0.2);
}

/* Mission & Values */
.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.value-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(93, 187, 195, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(93, 187, 195, 0.3);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
}

/* Statistics Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 60px 80px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(93, 187, 195, 0.3);
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number::after {
    content: '+';
    font-size: 40px;
    margin-left: 4px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .founder-header {
        gap: 32px;
        padding: 40px;
    }
    
    .founder-photo-frame {
        width: 180px;
        height: 180px;
    }
    
    .founder-name {
        font-size: 32px;
    }
    
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-redesign {
        padding: 80px 0;
    }
    
    .founder-card {
        margin-bottom: 60px;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 28px;
    }
    
    .founder-photo-frame {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .founder-badge-floating {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .founder-name {
        font-size: 28px;
    }
    
    .founder-title {
        justify-content: center;
        font-size: 16px;
    }
    
    .founder-credentials-compact {
        justify-content: center;
    }
    
    .founder-bio {
        padding: 32px 24px;
    }
    
    .bio-text {
        font-size: 16px;
    }
    
    .founder-quote-box {
        padding: 28px 24px 28px 60px;
    }
    
    .quote-icon {
        font-size: 24px;
        left: 20px;
        top: 28px;
    }
    
    .quote-text {
        font-size: 17px;
    }
    
    .founder-specializations {
        padding: 32px 24px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .founder-header {
        padding: 28px 20px;
    }
    
    .founder-photo-frame {
        width: 140px;
        height: 140px;
    }
    
    .founder-name {
        font-size: 24px;
    }
    
    .founder-title {
        font-size: 15px;
    }
    
    .credential-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .founder-bio {
        padding: 24px 20px;
    }
    
    .bio-text {
        font-size: 15px;
    }
    
    .founder-quote-box {
        padding: 24px 20px 24px 50px;
    }
    
    .quote-icon {
        font-size: 20px;
        left: 16px;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .founder-specializations {
        padding: 24px 20px;
    }
    
    .spec-title {
        font-size: 18px;
    }
    
    .spec-item {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .stats-bar {
        padding: 32px 24px;
        gap: 32px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* ===================================
   6. SERVICES CAROUSEL SECTION
   Desktop + Mobile + Animations
   =================================== */

.services-carousel-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.services-carousel-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 136, 196, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

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

.service-carousel-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: calc(33.333% - 22px);
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(93, 187, 195, 0.25);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.service-card-content {
    padding: 32px 28px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: -55px;
    box-shadow: 0 8px 24px rgba(93, 187, 195, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

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

.service-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.service-card-content > p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 24px;
}

.service-highlights li {
    padding: 8px 0;
    color: #4B5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-highlights li i {
    color: #5DBBC3;
    font-size: 12px;
}

.service-learn-more {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #5DBBC3;
    border: 2px solid #5DBBC3;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-learn-more:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 187, 195, 0.3);
}

.service-learn-more i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-learn-more:hover i {
    transform: translateX(4px);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 187, 195, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5DBBC3;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(93, 187, 195, 0.3);
}

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

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

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

.carousel-indicator {
    width: 12px;
    height: 12px;
    background: rgba(93, 187, 195, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicator.active {
    background: var(--gradient-primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-indicator:hover {
    background: rgba(93, 187, 195, 0.4);
}

/* Services Mobile */
@media (max-width: 1200px) {
    .service-carousel-card {
        flex: 0 0 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
    
    .services-carousel-wrapper {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .services-carousel-section {
        padding: 80px 0;
    }
    
    .services-carousel-wrapper {
        padding: 0 50px;
    }
    
    .service-carousel-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-control {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ===================================
   7. SERVICE MODAL
   Desktop + Mobile + Animations
   =================================== */

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-content-wrapper {
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.modal-content-wrapper::-webkit-scrollbar-track {
    background: #F3F4F6;
}

.modal-content-wrapper::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

.modal-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FFFFFF;
    font-size: 42px;
    box-shadow: 0 8px 32px rgba(93, 187, 195, 0.3);
    animation: modalIconPulse 2s ease-in-out infinite;
}

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

.modal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E7EB;
}

.modal-section:last-child {
    border-bottom: none;
}

.modal-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-section h3 i {
    font-size: 28px;
    color: #5DBBC3;
}

.modal-section p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.modal-section ul li {
    padding: 12px 0 12px 32px;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.modal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.15) 0%, rgba(123, 136, 196, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #5DBBC3;
}

.modal-conditions {
    padding: 32px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.03) 0%, rgba(123, 136, 196, 0.03) 100%);
    border-radius: 16px;
    border-bottom: none;
    margin-bottom: 0;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.condition-tag {
    padding: 12px 18px;
    background: #FFFFFF;
    border: 1px solid rgba(93, 187, 195, 0.2);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.condition-tag:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 187, 195, 0.3);
}

.modal-footer {
    padding: 32px 40px;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(93, 187, 195, 0.3);
}

.modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(93, 187, 195, 0.4);
}

.footer-note {
    margin-top: 12px;
    font-size: 14px;
    color: #6B7280;
}

/* Modal Mobile */
@media (max-width: 768px) {
    .modal-container {
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 50px 24px 30px;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    
    .modal-section h3 {
        font-size: 20px;
    }
    
    .modal-footer {
        padding: 24px;
    }
    
    .modal-cta-btn {
        width: 100%;
        padding: 16px 32px;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   THERAPY P.L.U.S. SECTION
   Compact Card + Modal
   Desktop + Tablet + Mobile + Animations
   =================================== */

/* ---------- SECTION WRAPPER ---------- */

.therapy-plus-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.therapy-plus-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
        rgba(233, 30, 99, 0.04) 0%,
        rgba(156, 39, 176, 0.02) 50%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: tpFloat 20s ease-in-out infinite;
}

.therapy-plus-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(156, 39, 176, 0.04) 0%,
        rgba(233, 30, 99, 0.02) 50%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: tpFloat 25s ease-in-out infinite reverse;
}

@keyframes tpFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* ---------- EXCLUSIVE LABEL ---------- */

.exclusive-label {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}

.exclusive-label i {
    animation: tpHeartbeat 1.5s ease-in-out infinite;
}

@keyframes tpHeartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.2); }
    20%, 40% { transform: scale(1); }
}

/* ---------- RAINBOW TEXT ---------- */

.rainbow-text {
    background: linear-gradient(
        90deg,
        #E40303 0%, #FF8C00 16.66%, #FFED00 33.33%,
        #008026 50%, #004DFF 66.66%, #750787 83.33%, #E40303 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tpRainbowShift 8s ease infinite;
}

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

/* ---------- ROTATING RAINBOW BORDER ---------- */

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


/* =================================================
   COMPACT CARD
   ================================================= */

.tp-compact-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-compact-card:hover {
    box-shadow: 0 16px 56px rgba(233, 30, 99, 0.14);
    transform: translateY(-4px);
}

/* Rainbow top bar */
.tp-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787, #E40303
    );
    background-size: 200% 100%;
    animation: tpRainbowShift 8s ease infinite;
    z-index: 2;
}

.tp-compact-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px;
}

/* --- Logo --- */

.tp-compact-logo-wrap {
    flex-shrink: 0;
}

.tp-compact-logo-ring {
    width: 140px;
    height: 140px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-compact-card:hover .tp-compact-logo-ring {
    transform: scale(1.05);
}

.tp-compact-logo-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(
        135deg,
        #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787, #E40303
    );
    border-radius: 50%;
    z-index: -1;
    animation: rotateBorder 8s linear infinite;
}

.tp-compact-logo-ring .tp-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* --- Body --- */

.tp-compact-body {
    flex: 1;
    min-width: 0;
}

.tp-compact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-compact-tagline {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* --- Badges (shared between card & modal) --- */

.tp-compact-badges,
.tp-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(156, 39, 176, 0.08) 100%);
    border: 2px solid rgba(233, 30, 99, 0.18);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-badge i {
    color: #E91E63;
    font-size: 15px;
}

.tp-badge:hover {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.tp-badge:hover i {
    color: #FFFFFF;
}

/* --- Actions --- */

.tp-compact-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.tp-modal-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(233, 30, 99, 0.3);
    white-space: nowrap;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.tp-modal-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9C27B0, #E91E63);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tp-modal-trigger:hover::before {
    opacity: 1;
}

.tp-modal-trigger span,
.tp-modal-trigger i {
    position: relative;
    z-index: 1;
}

.tp-modal-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(233, 30, 99, 0.4);
}

.tp-modal-trigger i {
    transition: transform 0.3s ease;
}

.tp-modal-trigger:hover i {
    transform: translateX(4px);
}

.tp-compact-phone {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.tp-compact-phone:hover {
    color: #E91E63;
}

.tp-compact-phone i {
    color: #E91E63;
}


/* =================================================
   MODAL
   ================================================= */

.tp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay */
.tp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Container */
.tp-modal-container {
    position: relative;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.92) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.tp-modal.active .tp-modal-container {
    transform: scale(1) translateY(0);
}

/* Rainbow top bar */
.tp-modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787, #E40303
    );
    background-size: 200% 100%;
    animation: tpRainbowShift 8s ease infinite;
    z-index: 2;
}

/* Close button */
.tp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #6B7280;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-modal-close:hover {
    background: #E91E63;
    color: #FFFFFF;
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Scroll wrapper */
.tp-modal-scroll {
    max-height: 90vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.tp-modal-scroll::-webkit-scrollbar {
    width: 8px;
}

.tp-modal-scroll::-webkit-scrollbar-track {
    background: #F3F4F6;
}

.tp-modal-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    border-radius: 4px;
}

/* ---------- MODAL HEADER ---------- */

.tp-modal-header {
    text-align: center;
    padding: 56px 40px 36px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.04), rgba(156, 39, 176, 0.04));
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.tp-modal-logo-wrap {
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tp-modal-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(
        135deg,
        #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787, #E40303
    );
    border-radius: 50%;
    z-index: -1;
    animation: rotateBorder 8s linear infinite;
}

.tp-modal-logo-wrap .tp-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.tp-modal-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-modal-subtitle {
    font-size: 18px;
    color: #6B7280;
    font-style: italic;
    margin-bottom: 0;
}

.tp-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

/* ---------- MODAL BODY ---------- */

.tp-modal-body {
    padding: 48px;
}

.tp-modal-section {
    margin-bottom: 8px;
}

.tp-modal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 16px;
}

.tp-modal-section p:last-child {
    margin-bottom: 0;
}

.tp-modal-lead {
    font-size: 17px !important;
    line-height: 1.8;
    color: #374151 !important;
}

.tp-modal-lead strong {
    color: #1F2937;
}

/* --- Divider --- */

.tp-modal-divider {
    height: 4px;
    background: linear-gradient(
        90deg,
        #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787, #E40303
    );
    border-radius: 2px;
    margin: 36px 0;
    background-size: 200% 100%;
    animation: tpRainbowShift 8s ease infinite;
}

/* --- Section Titles --- */

.tp-modal-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-modal-section-title i {
    font-size: 24px;
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Services Grid --- */

.tp-modal-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.tp-modal-service {
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.02), rgba(156, 39, 176, 0.02));
    border: 2px solid rgba(233, 30, 99, 0.1);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-modal-service:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(156, 39, 176, 0.08));
    border-color: #E91E63;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.12);
}

.tp-modal-service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
    transition: transform 0.3s ease;
}

.tp-modal-service:hover .tp-modal-service-icon {
    transform: scale(1.08) rotate(3deg);
}

.tp-modal-service h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.tp-modal-service p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Features List --- */

.tp-modal-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.tp-modal-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.02), rgba(156, 39, 176, 0.02));
    border-radius: 14px;
    border-left: 4px solid #E91E63;
    transition: all 0.3s ease;
}

.tp-modal-feature:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.06), rgba(156, 39, 176, 0.06));
    transform: translateX(6px);
}

.tp-modal-feature > i {
    font-size: 22px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 2px;
}

.tp-modal-feature strong {
    display: block;
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 4px;
}

.tp-modal-feature span {
    display: block;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* --- Quote --- */

.tp-modal-quote {
    position: relative;
    padding: 32px 40px 32px 76px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
    border-left: 4px solid #E91E63;
    border-radius: 16px;
    margin-top: 36px;
}

.tp-modal-quote > i {
    position: absolute;
    top: 32px;
    left: 28px;
    font-size: 30px;
    color: #E91E63;
    opacity: 0.25;
}

.tp-modal-quote p {
    font-size: 18px;
    font-style: italic;
    color: #1F2937;
    line-height: 1.7;
    margin-bottom: 12px;
}

.tp-modal-quote-author {
    font-size: 14px;
    font-weight: 600;
    color: #E91E63;
    text-align: right;
}

/* ---------- MODAL CTA ---------- */

.tp-modal-cta {
    padding: 40px 48px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.tp-modal-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tp-modal-cta-content h4 {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.tp-modal-cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.tp-modal-cta-buttons {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.tp-modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.tp-modal-cta-btn.primary {
    background: #FFFFFF;
    color: #E91E63;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.tp-modal-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.tp-modal-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.tp-modal-cta-btn.secondary:hover {
    background: #FFFFFF;
    color: #E91E63;
}


/* =================================================
   RESPONSIVE — TABLET
   ================================================= */

@media (max-width: 1024px) {
    .tp-compact-inner {
        gap: 32px;
        padding: 40px;
    }

    .tp-compact-logo-ring {
        width: 120px;
        height: 120px;
    }

    .tp-compact-title {
        font-size: 28px;
    }

    .tp-modal-body {
        padding: 40px;
    }

    .tp-modal-cta {
        padding: 36px 40px;
    }
}


/* =================================================
   RESPONSIVE — MOBILE
   ================================================= */

@media (max-width: 768px) {
    .therapy-plus-section {
        padding: 80px 0;
    }

    /* Card stacks vertically */
    .tp-compact-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }

    .tp-compact-logo-ring {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .tp-compact-title {
        font-size: 28px;
    }

    .tp-compact-tagline {
        font-size: 15px;
    }

    .tp-compact-badges {
        justify-content: center;
    }

    .tp-compact-actions {
        width: 100%;
    }

    .tp-modal-trigger {
        width: 100%;
        justify-content: center;
    }

    /* Modal */
    .tp-modal-container {
        width: 98%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .tp-modal-header {
        padding: 48px 24px 28px;
    }

    .tp-modal-header h2 {
        font-size: 28px;
    }

    .tp-modal-logo-wrap {
        width: 100px;
        height: 100px;
    }

    .tp-modal-subtitle {
        font-size: 16px;
    }

    .tp-modal-body {
        padding: 32px 24px;
    }

    .tp-modal-section-title {
        font-size: 20px;
    }

    .tp-modal-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tp-modal-quote {
        padding: 28px 24px 28px 56px;
    }

    .tp-modal-quote > i {
        font-size: 22px;
        left: 20px;
        top: 28px;
    }

    .tp-modal-quote p {
        font-size: 16px;
    }

    .tp-modal-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }

    .tp-modal-cta-content h4 {
        font-size: 22px;
    }

    .tp-modal-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .tp-modal-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =================================================
   RESPONSIVE — SMALL MOBILE
   ================================================= */

@media (max-width: 480px) {
    .tp-compact-inner {
        padding: 28px 20px;
    }

    .tp-compact-logo-ring {
        width: 100px;
        height: 100px;
    }

    .tp-compact-title {
        font-size: 24px;
    }

    .tp-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .tp-modal-trigger {
        font-size: 15px;
        padding: 14px 28px;
    }

    .tp-modal-header {
        padding: 44px 20px 24px;
    }

    .tp-modal-header h2 {
        font-size: 24px;
    }

    .tp-modal-logo-wrap {
        width: 90px;
        height: 90px;
    }

    .tp-modal-body {
        padding: 24px 20px;
    }

    .tp-modal-section-title {
        font-size: 18px;
    }

    .tp-modal-service {
        padding: 20px 16px;
    }

    .tp-modal-service-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .tp-modal-service h5 {
        font-size: 15px;
    }

    .tp-modal-service p {
        font-size: 13px;
    }

    .tp-modal-feature {
        padding: 14px 16px;
    }

    .tp-modal-quote {
        padding: 24px 20px 24px 48px;
    }

    .tp-modal-quote > i {
        font-size: 18px;
        left: 16px;
    }

    .tp-modal-quote p {
        font-size: 15px;
    }

    .tp-modal-cta {
        padding: 28px 20px;
    }

    .tp-modal-cta-content h4 {
        font-size: 20px;
    }

    .tp-modal-cta-content p {
        font-size: 14px;
    }

    .tp-modal-cta-btn {
        font-size: 14px;
        padding: 14px 24px;
    }
}

/* ===================================
   8. APPROACH SECTION
   Desktop + Mobile + Animations
   =================================== */

.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 187, 195, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatingSlow 20s ease-in-out infinite;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 136, 196, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatingSlow 25s ease-in-out infinite reverse;
}

/* Category Filter Buttons */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.faq-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-category-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-category-btn:hover {
    border-color: #5DBBC3;
    color: #5DBBC3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(93, 187, 195, 0.2);
}

.faq-category-btn:hover i {
    transform: scale(1.15);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(93, 187, 195, 0.3);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 1;
    transform: scale(1);
}

.faq-item.hidden {
    display: none;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(93, 187, 195, 0.15);
    border-color: rgba(93, 187, 195, 0.2);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.03) 0%, rgba(123, 136, 196, 0.03) 100%);
}

.faq-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5DBBC3;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    transform: scale(1.05);
}

.faq-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #5DBBC3;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(93, 187, 195, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle i {
    font-size: 16px;
    color: #5DBBC3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: #FFFFFF;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer-content {
    padding: 0 32px 32px 100px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content p {
    margin-bottom: 16px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    list-style: none;
    margin: 16px 0;
}

.faq-answer-content ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    line-height: 1.7;
}

.faq-answer-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.15) 0%, rgba(123, 136, 196, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #5DBBC3;
}

.faq-answer-content strong {
    color: #1F2937;
    font-weight: 600;
}

/* Insurance List */
.insurance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.insurance-item {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.05) 0%, rgba(123, 136, 196, 0.05) 100%);
    border: 1px solid rgba(93, 187, 195, 0.2);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #1F2937;
    font-size: 14px;
    transition: all 0.3s ease;
}

.insurance-item:hover {
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 187, 195, 0.15);
}

/* Steps List */
.steps-list {
    margin: 20px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(93, 187, 195, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 2px;
}

.step-content strong {
    display: block;
    color: #1F2937;
    font-size: 16px;
    margin-bottom: 6px;
}

/* Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.hours-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.05) 0%, rgba(123, 136, 196, 0.05) 100%);
    border: 1px solid rgba(93, 187, 195, 0.15);
    border-radius: 14px;
    text-align: center;
}

.hours-item strong {
    display: block;
    color: #1F2937;
    font-size: 16px;
    margin-bottom: 8px;
}

.hours-item span {
    display: block;
    color: #5DBBC3;
    font-weight: 600;
    font-size: 15px;
}

/* Locations List */
.locations-list {
    margin: 20px 0;
}

.location-quick {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}

.location-quick:last-child {
    border-bottom: none;
}

.location-quick i {
    color: #5DBBC3;
    font-size: 18px;
    margin-top: 2px;
}

.location-quick strong {
    display: block;
    color: #1F2937;
    font-size: 16px;
    margin-bottom: 4px;
}

.location-quick span {
    display: block;
    color: #6B7280;
    font-size: 14px;
}

/* FAQ CTA */
.faq-cta {
    max-width: 800px;
    margin: 80px auto 0;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 12px 40px rgba(93, 187, 195, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-cta-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-cta-content {
    flex: 1;
}

.faq-cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
}

.faq-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.faq-cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #FFFFFF;
    color: #5DBBC3;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    background: #F8FAFC;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-categories {
        gap: 10px;
        margin-bottom: 40px;
    }

    .faq-category-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .faq-category-btn i {
        font-size: 14px;
    }

    .faq-question {
        padding: 24px 20px;
        gap: 16px;
    }

    .faq-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-toggle i {
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 20px 24px 20px;
        font-size: 15px;
    }

    .insurance-list {
        grid-template-columns: 1fr;
    }

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

    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 24px;
    }

    .faq-cta-content h3 {
        font-size: 24px;
    }

    .faq-cta-content p {
        font-size: 15px;
    }

    .faq-cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-categories {
        flex-direction: column;
    }

    .faq-category-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 20px 16px;
        gap: 12px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 16px 20px 16px;
        font-size: 14px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .faq-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .faq-cta-content h3 {
        font-size: 22px;
    }
}

/* ===================================
   9. TEAM SECTION
   Desktop + Mobile + Animations
   =================================== */

.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 136, 196, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Team Carousel Wrapper */
.team-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

.team-carousel {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Team Card - Keep Original Design */
.team-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: calc(33.333% - 22px);
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(93, 187, 195, 0.2);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.9) 0%, rgba(123, 136, 196, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-social {
    display: flex;
    gap: 16px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5DBBC3;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social a:hover {
    background: #5DBBC3;
    color: #FFFFFF;
    transform: scale(1.1);
}

.team-info {
    padding: 32px 28px;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.team-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #5DBBC3;
    margin-bottom: 16px;
}

.team-info p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.08) 0%, rgba(123, 136, 196, 0.08) 100%);
    color: #5DBBC3;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-tag:hover {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Carousel Controls */
.team-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 187, 195, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5DBBC3;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-control:hover {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(93, 187, 195, 0.3);
}

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

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

/* Carousel Indicators */
.team-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.team-indicator {
    width: 12px;
    height: 12px;
    background: rgba(93, 187, 195, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-indicator.active {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    width: 32px;
    border-radius: 6px;
}

.team-indicator:hover {
    background: rgba(93, 187, 195, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .team-card {
        flex: 0 0 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
    
    .team-carousel-wrapper {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-carousel-wrapper {
        padding: 0 50px;
    }
    
    .team-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .team-image {
        height: 300px;
    }
    
    .team-control {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .team-carousel-wrapper {
        padding: 0 45px;
    }
    
    .team-control {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .team-image {
        height: 280px;
    }
    
    .team-info {
        padding: 28px 24px;
    }
    
    .team-info h3 {
        font-size: 22px;
    }
    
    .team-info p {
        font-size: 14px;
    }
}

/* ===================================
   10. TESTIMONIALS SECTION - PREMIUM REDESIGN
   Desktop + Mobile + Animations
   =================================== */

.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 187, 195, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatingSlow 20s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 136, 196, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatingSlow 25s ease-in-out infinite reverse;
}

@keyframes floatingSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Trust Bar */
.trust-bar {
    max-width: 1000px;
    margin: 0 auto 80px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(93, 187, 195, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1F2937;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-item span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, #E5E7EB 50%, transparent 100%);
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 90px;
    overflow: hidden; /* Hide cards outside visible area */
}

.testimonials-track {
    display: flex;
    gap: 32px; /* Space between cards */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Testimonial Card - Premium Design */
.testimonial-card {
    flex: 0 0 calc(100% - 0px); /* Account for no gap on single card view */
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    background: #FFFFFF;
    border-radius: 28px;
    padding: 56px 48px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(93, 187, 195, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 28px 28px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(93, 187, 195, 0.18);
}

/* Verified Badge */
.testimonial-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-badge i {
    font-size: 14px;
    color: #10B981;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.08) 0%, rgba(123, 136, 196, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #5DBBC3;
}

/* Stars Rating */
.testimonial-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: 40px;
}

.testimonial-stars i {
    font-size: 22px;
    color: #FFB800;
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.2);
    animation: starPulse 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.4s; }

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

/* Testimonial Title */
.testimonial-title {
    font-size: 26px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    font-style: normal;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(93, 187, 195, 0.15);
    gap: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(93, 187, 195, 0.3);
    flex-shrink: 0;
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: avatarGlow 3s ease-in-out infinite;
}

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

.author-info strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 6px;
}

.author-info span {
    display: block;
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Service Tag */
.testimonial-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.08) 0%, rgba(123, 136, 196, 0.08) 100%);
    border: 1px solid rgba(93, 187, 195, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #5DBBC3;
    white-space: nowrap;
}

.testimonial-service-tag i {
    font-size: 14px;
}

/* Navigation Controls */
.testimonial-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(93, 187, 195, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #5DBBC3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-control:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px rgba(93, 187, 195, 0.35);
}

.testimonial-control:active {
    transform: translateY(-50%) scale(1.05);
}

.testimonial-control.prev {
    left: 0;
}

.testimonial-control.next {
    right: 0;
}

/* Pagination Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: rgba(93, 187, 195, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dot.active {
    background: var(--gradient-primary);
    width: 36px;
    border-radius: 6px;
}

.testimonial-dot.active::before {
    border-color: rgba(93, 187, 195, 0.3);
}

.testimonial-dot:hover {
    background: rgba(93, 187, 195, 0.4);
    transform: scale(1.2);
}

/* CTA Section */
.testimonials-cta {
    max-width: 900px;
    margin: 80px auto 0;
    background: var(--gradient-primary);
    border-radius: 28px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 12px 48px rgba(93, 187, 195, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #FFFFFF;
    color: #5DBBC3;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    background: #F8FAFC;
}

.cta-button i {
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .trust-bar {
        padding: 28px 32px;
    }
    
    .trust-item strong {
        font-size: 24px;
    }
    
    .trust-item i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 24px;
        flex-wrap: wrap;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-item {
        width: calc(50% - 12px);
    }
    
    .testimonials-wrapper {
        padding: 0 70px;
    }
    
    .testimonials-track {
        gap: 24px; /* Slightly smaller gap on mobile */
    }
    
    .testimonial-card {
        padding: 44px 32px;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .testimonial-badge {
        top: 20px;
        right: 20px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .testimonial-title {
        font-size: 22px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .testimonial-control {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .testimonials-cta {
        flex-direction: column;
        text-align: center;
        padding: 44px 32px;
        gap: 28px;
    }
    
    .cta-content h3 {
        font-size: 26px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .trust-bar {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-wrapper {
        padding: 0 60px;
    }
    
    .testimonials-track {
        gap: 20px; /* Even smaller gap on small mobile */
    }
    
    .testimonial-card {
        padding: 36px 24px;
    }
    
    .testimonial-quote-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        top: 20px;
        left: 20px;
    }
    
    .testimonial-stars {
        margin-top: 32px;
    }
    
    .testimonial-stars i {
        font-size: 18px;
    }
    
    .author-avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .author-info strong {
        font-size: 16px;
    }
    
    .author-info span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        padding: 0 52px;
    }
    
    .testimonials-track {
        gap: 16px; /* Minimal gap on tiny screens */
    }
    
    .testimonial-card {
        padding: 32px 20px;
    }
    
    .testimonial-title {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-control {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .cta-content h3 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
}

/* ===================================
   11. CONTACT SECTION
   Desktop + Mobile
   =================================== */

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 187, 195, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 136, 196, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Contact Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Contact Form Panel */
.contact-form-panel {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(93, 187, 195, 0.3);
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #6B7280;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: #1F2937;
    background: #FAFAFA;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9CA3AF;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5DBBC3;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(93, 187, 195, 0.1);
}

.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-form .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #5DBBC3;
}

.contact-form .checkbox-group label {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(93, 187, 195, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(93, 187, 195, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Contact Info Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quick-contact-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.qc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.qc-icon.phone-icon {
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.15) 0%, rgba(93, 187, 195, 0.1) 100%);
    color: #5DBBC3;
}

.qc-icon.email-icon {
    background: linear-gradient(135deg, rgba(123, 136, 196, 0.15) 0%, rgba(123, 136, 196, 0.1) 100%);
    color: #7B88C4;
}

.qc-icon.hours-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #10B981;
}

.qc-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qc-label {
    font-size: 13px;
    font-weight: 500;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qc-value {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.qc-value.qc-email {
    font-size: 15px;
    word-break: break-all;
}

a.qc-value:hover {
    color: #5DBBC3;
}

.quick-contact-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E5E7EB 50%, transparent 100%);
}

.insurance-banner {
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.08) 0%, rgba(123, 136, 196, 0.08) 100%);
    border: 1px solid rgba(93, 187, 195, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.insurance-banner i {
    font-size: 32px;
    color: #5DBBC3;
}

.insurance-banner strong {
    display: block;
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 4px;
}

.insurance-banner span {
    font-size: 14px;
    color: #6B7280;
}

/* Locations Section */
.locations-section {
    position: relative;
    z-index: 1;
}

.locations-header {
    text-align: center;
    margin-bottom: 40px;
}

.locations-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.locations-header h3 i {
    color: #5DBBC3;
}

.locations-header p {
    font-size: 16px;
    color: #6B7280;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.location-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(93, 187, 195, 0.2);
    border-color: rgba(93, 187, 195, 0.3);
}

.location-card.main-office {
    border-color: rgba(93, 187, 195, 0.3);
}

.location-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.location-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #5DBBC3;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    transform: scale(1.1);
}

.location-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.location-address {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    color: #FFFFFF;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 12px;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 187, 195, 0.3);
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-link:hover {
    border-color: #5DBBC3;
    color: #5DBBC3;
}

.phone-link i {
    color: #5DBBC3;
}

/* Partner Location Card */
.partner-location-card {
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.05) 0%, rgba(123, 136, 196, 0.08) 100%);
    border: 2px solid rgba(123, 136, 196, 0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #E91E8C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.partner-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.partner-logo {
    width: 140px;
    height: 140px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-info {
    flex: 1;
}

.partner-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.partner-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #7B88C4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.partner-address {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.partner-address i {
    color: #E91E8C;
    margin-top: 4px;
}

.partner-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #FFFFFF;
    border: 2px solid #5DBBC3;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #5DBBC3;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.partner-directions-btn:hover {
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateX(4px);
}

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

@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .partner-address {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form-panel {
        padding: 32px 24px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-card {
        padding: 28px 20px;
    }
    
    .partner-location-card {
        padding: 28px;
    }
    
    .partner-logo {
        width: 120px;
        height: 120px;
    }
    
    .partner-info h4 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .quick-contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .qc-value.qc-email {
        font-size: 13px;
    }
}

/* ===================================
   12. FOOTER
   Desktop + Mobile
   =================================== */

.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #FFFFFF;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    transform: scale(1.1);
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

/* Footer Bottom - Updated Layout */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.crisis-line {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.crisis-line a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.crisis-line a:hover {
    color: #5DBBC3;
}

/* Design Credits - Modern & Sleek */
.design-credits {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-credits:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(93, 187, 195, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(93, 187, 195, 0.15);
}

.credits-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.credits-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credits-logo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.credits-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.design-credits:hover .credits-logo {
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    transform: rotate(5deg) scale(1.1);
}

.credits-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.design-credits:hover .credits-text {
    color: #FFFFFF;
    background: linear-gradient(135deg, #5DBBC3, #7B88C4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .crisis-line {
        flex-direction: column;
        gap: 8px;
    }
    
    .design-credits {
        width: 100%;
        justify-content: center;
    }
    
    .credits-label {
        font-size: 11px;
    }
    
    .credits-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .design-credits {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        text-align: center;
    }
    
    .credits-link {
        flex-direction: column;
        gap: 6px;
    }
}

/* ===================================
   FLOATING BUTTONS - FIXED & OPTIMIZED
   =================================== */

/* Back to Top Button - LEFT SIDE */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(93, 187, 195, 0.3);
}

.back-to-top-btn i {
    font-size: 20px;
    color: #5DBBC3;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
    color: #7B88C4;
}

/* Progress Circle */
.btt-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.btt-progress svg {
    width: 100%;
    height: 100%;
}

.btt-progress-circle {
    fill: none;
    stroke: url(#bttGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.1s linear;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(93, 187, 195, 0.1) 0%, rgba(123, 136, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top-btn:hover::before {
    opacity: 1;
}

/* FAB Container - RIGHT SIDE */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Backdrop */
.fab-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.fab-container.active .fab-backdrop {
    opacity: 1;
    visibility: visible;
}

/* Main FAB Button */
.fab-main {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(93, 187, 195, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    order: 2;
}

.fab-main:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(93, 187, 195, 0.5);
}

.fab-main:active {
    transform: scale(0.95);
}

/* FAB Icons */
.fab-icon-open,
.fab-icon-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-icon-open {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.fab-container.active .fab-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.fab-container.active .fab-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fab-main i {
    font-size: 24px;
    color: #FFFFFF;
}

/* Pulse Animation */
.fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #5DBBC3 0%, #7B88C4 100%);
    animation: fabPulse 2s ease-in-out infinite;
    z-index: -1;
}

.fab-container.active .fab-pulse {
    animation: none;
    opacity: 0;
}

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

/* FAB Actions - Appear ABOVE Main Button */
.fab-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
    pointer-events: none;
    order: 1;
}

.fab-container.active .fab-actions {
    pointer-events: all;
}

/* Individual Action Items */
.fab-action {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.fab-container.active .fab-action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.fab-container.active .fab-action:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-container.active .fab-action:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-container.active .fab-action:nth-child(3) {
    transition-delay: 0.15s;
}

/* Action Buttons */
.fab-action-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.fab-action:hover .fab-action-btn {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fab-action-btn i {
    font-size: 20px;
}

.fab-action-btn .pt-icon {
    width: 24px;
    height: 24px;
}

/* Call Button - Green */
.fab-action-btn.call {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
}

/* Email Button - Purple */
.fab-action-btn.email {
    background: linear-gradient(135deg, #7B88C4 0%, #6366F1 100%);
    color: #FFFFFF;
}

/* Psychology Today Button - Blue */
.fab-action-btn.psychology-today {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: #FFFFFF;
}

/* Action Labels */
.fab-action-label {
    background: #FFFFFF;
    color: #1F2937;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-action:hover .fab-action-label {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .back-to-top-btn,
    .fab-main {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    
    .back-to-top-btn {
        left: 20px;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-btn i,
    .fab-main i {
        font-size: 20px;
    }
    
    .fab-action-btn {
        width: 48px;
        height: 48px;
    }
    
    .fab-action-btn i {
        font-size: 18px;
    }
    
    .fab-action-label {
        display: none;
    }
    
    .fab-actions {
        gap: 14px;
        margin-bottom: 14px;
    }
    
    /* Full screen backdrop on mobile */
    .fab-container.active .fab-backdrop {
        background: rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 480px) {
    .back-to-top-btn,
    .fab-main {
        width: 46px;
        height: 46px;
        bottom: 16px;
    }
    
    .back-to-top-btn {
        left: 16px;
    }
    
    .fab-container {
        bottom: 16px;
        right: 16px;
    }
    
    .fab-action-btn {
        width: 44px;
        height: 44px;
    }
}

/* ===================================
   14. GLOBAL ANIMATIONS
   =================================== */

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