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

:root {
    /* Colors from logo */
    --primary-blue: #4FC3F7;
    --secondary-blue: #29B6F6;
    --primary-pink: #F48FB1;
    --secondary-pink: #EC407A;
    --primary-purple: #9575CD;
    --secondary-purple: #7E57C2;
    
    /* Neutral colors */
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E0E7FF;
    --dark-gray: #64748B;
    --black: #1E293B;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    --gradient-pink: linear-gradient(135deg, #F48FB1 0%, #EC407A 100%);
    --gradient-purple: linear-gradient(135deg, #9575CD 0%, #7E57C2 100%);
    --gradient-multi: linear-gradient(135deg, #9575CD 0%, #4FC3F7 50%, #F48FB1 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(79, 195, 247, 0.3);
}

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

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* ===================================
   Preloader
   =================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.logo-container {
    width: 290px;
    height: 290px;
    margin: 0 auto 2rem;
    animation: subtleFadeIn 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(79, 195, 247, 0.12));
}

@keyframes subtleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-bar {
    width: 240px;
    height: 3px;
    background: #E8EBF0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #4FC3F7, #29B6F6);
    border-radius: 10px;
    animation: loadingProgress 2s ease-in-out infinite;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
        opacity: 0.8;
    }
    50% {
        width: 70%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.8;
    }
}

.loading-text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 500;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* ===================================
   Progress Tracker Header Styles
   =================================== */

.progress-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.progress-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--black);
    z-index: 2;
}

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

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-tracker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

.mobile-tracker {
    display: none;
}

.progress-track {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0.5rem 0;
}

/* Progress Line (connecting dots) */
.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--medium-gray);
    border-radius: 10px;
    transform: translateY(-50%);
    z-index: 0;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-blue);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Progress Dots */
.progress-dot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.dot-circle {
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--medium-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.dot-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.dot-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hover States */
.progress-dot:hover .dot-circle {
    border-color: var(--primary-blue);
    transform: scale(1.2);
}

.progress-dot:hover .dot-label {
    opacity: 1;
    transform: translateY(0);
}

/* Active State */
.progress-dot.active .dot-circle {
    border-color: var(--primary-blue);
    border-width: 3px;
    background: var(--white);
    transform: scale(1.3);
}

.progress-dot.active .dot-circle::before {
    transform: translate(-50%, -50%) scale(1);
}

.progress-dot.active .dot-label {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary-blue);
    font-weight: 600;
}

/* Completed State */
.progress-dot.completed .dot-circle {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.progress-dot.completed .dot-circle::before {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1);
}

.mobile-tracker {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.current-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.mobile-dot {
    width: 10px;
    height: 10px;
    background: var(--medium-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.mobile-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Active mobile dot */
.mobile-dot.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.4);
}

.mobile-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Completed mobile dot */
.mobile-dot.completed {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Touch area for mobile */
.mobile-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--medium-gray);
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-multi);
    width: 0%;
    transition: width 0.1s ease;
}

@media (max-width: 1024px) {
    .progress-track {
        gap: 2rem;
    }
    
    .dot-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.875rem 1.5rem;
    }

    /* Hide desktop tracker, show mobile tracker */
    .desktop-tracker {
        display: none;
    }
    
    .mobile-tracker {
        display: flex;
    }
    
    .nav-logo-text {
        font-size: 1.125rem;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .nav-logo-text {
        font-size: 1rem;
    }
    
    .current-section-label {
        font-size: 0.7rem;
    }
    
    .mobile-dots {
        gap: 0.4rem;
    }
    
    .mobile-dot {
        width: 8px;
        height: 8px;
    }
}

.progress-header.vertical-mobile .mobile-tracker {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.progress-header.vertical-mobile .current-section-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem;
}

.progress-header.vertical-mobile .mobile-dots {
    flex-direction: column;
    gap: 0.75rem;
}

.progress-header.vertical-mobile .mobile-dot {
    width: 12px;
    height: 12px;
}

/* ===================================
   Hero Section
   =================================== */

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

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

/* Background Image Collage */
.hero-collage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    z-index: 0;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    animation: fadeInScale 1.2s ease-out both;
    z-index: 0;
}

.collage-large {
    grid-row: 1 / 3;
    animation-delay: 0.3s;
}

.collage-top {
    animation-delay: 0.5s;
}

.collage-bottom {
    animation-delay: 0.7s;
}

/* Hide mobile image on desktop */
.collage-mobile {
    display: none;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 0.4;
        transform: scale(1);
    }
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-blue);
    opacity: 0.08;
    animation: particleFloat 20s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 70px;
    height: 70px;
    top: 65%;
    left: 85%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 75%;
    left: 15%;
    animation-delay: 4s;
    background: var(--gradient-pink);
}

.particle:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 75%;
    animation-delay: 1s;
    background: var(--gradient-purple);
}

.particle:nth-child(5) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.85);
    }
}

/* Hero Content Layer */
.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: var(--spacing-md);
    z-index: 3;
    position: relative;
}

.hero-logo {
    width: 230px;
    height: 230px;
    margin: 0 auto 1.5rem;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(79, 195, 247, 0.25));
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(79, 195, 247, 0.1));
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    opacity: 0.85;
}

.hero-typed-container {
    min-height: 50px;
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.typed-prefix {
    font-weight: 400;
    color: var(--dark-gray);
}

#typed-text {
    font-weight: 600;
    color: var(--primary-blue);
}

.hero-services-overlay {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.service-card-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(79, 195, 247, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(79, 195, 247, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card-overlay:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(79, 195, 247, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(79, 195, 247, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(79, 195, 247, 0.3);
    transition: all 0.4s ease;
}

.service-card-overlay:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(79, 195, 247, 0.4);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-overlay p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    border-width: 2px;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.875rem;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

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

@media (max-width: 1200px) {
    .hero-services-overlay {
        gap: 1.5rem;
    }
    
    .service-card-overlay {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-services-overlay {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .service-card-overlay h3 {
        font-size: 1.125rem;
    }
    
    .service-card-overlay p {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-typed-container {
        font-size: 1.125rem;
    }
    
    /* MOBILE: Show only single image, hide collage */
    .hero-collage-bg {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0;
        padding: 0;
    }
    
    /* Hide all desktop images on mobile */
    .collage-desktop {
        display: none;
    }
    
    /* Show mobile-specific image */
    .collage-mobile {
        display: block;
        grid-row: 1;
        height: 100%;
        border-radius: 0;
        animation: fadeInScaleMobile 1.2s ease-out both;
    }
    
    /* NO PARALLAX on mobile - fixed background */
    .hero-background {
        transform: none !important;
    }
    
    @keyframes fadeInScaleMobile {
        from {
            opacity: 0;
            transform: scale(1);
        }
        to {
            opacity: 0.35;
            transform: scale(1);
        }
    }
    
    .hero-services-overlay {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 500px;
    }
    
    .service-card-overlay {
        padding: 2rem 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 110px;
        height: 150px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .service-card-overlay {
        padding: 1.75rem 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-card-overlay h3 {
        font-size: 1.075rem;
    }
    
    /* Slightly higher opacity on very small screens */
    .collage-mobile {
        animation: fadeInScaleSmallMobile 1.2s ease-out both;
    }
    
    @keyframes fadeInScaleSmallMobile {
        from {
            opacity: 0;
            transform: scale(1);
        }
        to {
            opacity: 0.3;
            transform: scale(1);
        }
    }
}

/* ============================================
   ABOUT SECTION - PLACEHOLDER DESIGN
   ============================================ */

.about-section-placeholder {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section-placeholder::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section-placeholder::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(149, 117, 205, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header - Scoped to About */
.about-section-placeholder .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-placeholder .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-section-placeholder .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-section-placeholder .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   MAIN CONTENT GRID
   ============================================ */

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.about-content-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

/* Card Icons */
.about-content-card .card-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
    transition: all 0.4s ease;
}

.about-content-card:hover .card-icon-large {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.4);
}

.about-content-card .card-icon-large svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.about-content-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Alternative gradient for second card */
.about-content-card.approach-card .card-icon-large {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    box-shadow: 0 8px 25px rgba(149, 117, 205, 0.3);
}

.about-content-card.approach-card:hover .card-icon-large {
    box-shadow: 0 12px 35px rgba(149, 117, 205, 0.4);
}

/* ============================================
   VALUES SECTION - ROW ON DESKTOP, 2x2 ON MOBILE
   ============================================ */

.about-section-placeholder .values-section {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin: 60px 0;
}

.about-section-placeholder .values-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-section-placeholder .values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

.about-section-placeholder .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.about-section-placeholder .value-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.about-section-placeholder .value-item:hover {
    transform: translateY(-5px);
}

.about-section-placeholder .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.about-section-placeholder .value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: scale(1.05);
}

.about-section-placeholder .value-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-blue);
    transition: stroke 0.3s ease;
}

.about-section-placeholder .value-item:hover .value-icon svg {
    stroke: white;
}

.about-section-placeholder .value-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.about-section-placeholder .value-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   EXCELLENCE BANNER
   ============================================ */

.about-section-placeholder .excellence-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(79, 195, 247, 0.3);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-section-placeholder .excellence-banner::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%;
}

.about-section-placeholder .banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about-section-placeholder .banner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section-placeholder .banner-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: white;
}

.about-section-placeholder .banner-text h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-section-placeholder .banner-text p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.about-section-placeholder .about-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.about-section-placeholder .about-cta-section h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-section-placeholder .about-cta-section p {
    color: var(--dark-gray);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 35px;
}

.about-section-placeholder .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (max-width: 1024px) {
    .about-content-grid {
        gap: 25px;
    }

    .about-section-placeholder .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .about-section-placeholder .banner-content {
        gap: 25px;
    }

    .about-section-placeholder .banner-icon {
        width: 70px;
        height: 70px;
    }

    .about-section-placeholder .banner-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .about-section-placeholder {
        padding: 60px 0;
    }

    .about-section-placeholder .section-title {
        font-size: 2rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }

    .about-content-card {
        padding: 40px 30px;
    }

    .about-content-card h3 {
        font-size: 1.5rem;
    }

    .about-section-placeholder .values-section {
        padding: 50px 30px;
        margin: 40px 0;
    }

    .about-section-placeholder .values-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    /* 2x2 GRID ON MOBILE */
    .about-section-placeholder .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-section-placeholder .excellence-banner {
        padding: 40px 30px;
        margin: 40px 0;
    }

    .about-section-placeholder .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-section-placeholder .banner-text h3 {
        font-size: 1.5rem;
    }

    .about-section-placeholder .banner-text p {
        font-size: 1rem;
    }

    .about-section-placeholder .about-cta-section {
        padding: 50px 30px;
    }

    .about-section-placeholder .about-cta-section h3 {
        font-size: 1.875rem;
    }

    .about-section-placeholder .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-section-placeholder .cta-buttons .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .about-content-card {
        padding: 35px 25px;
    }

    .about-content-card .card-icon-large {
        width: 70px;
        height: 70px;
    }

    .about-content-card .card-icon-large svg {
        width: 35px;
        height: 35px;
    }

    .about-section-placeholder .values-section {
        padding: 40px 20px;
    }

    /* KEEP 2x2 GRID ON SMALL MOBILE */
    .about-section-placeholder .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-section-placeholder .value-icon {
        width: 60px;
        height: 60px;
    }

    .about-section-placeholder .value-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-section-placeholder .value-item h4 {
        font-size: 1.125rem;
    }

    .about-section-placeholder .value-item p {
        font-size: 0.875rem;
    }

    .about-section-placeholder .excellence-banner {
        padding: 35px 25px;
    }

    .about-section-placeholder .banner-icon {
        width: 60px;
        height: 60px;
    }

    .about-section-placeholder .banner-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-section-placeholder .about-cta-section {
        padding: 40px 25px;
    }

    .about-section-placeholder .about-cta-section h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   SERVICES CAROUSEL SECTION
   ============================================ */

.services-section-carousel {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section-carousel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 117, 205, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.carousel-wrapper {
    position: relative;
    margin: 60px 0 40px;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.carousel-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.carousel-card:hover .card-glow {
    opacity: 1;
}

/* Card Icon */
.card-icon-wrapper {
    margin-bottom: 25px;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

.card-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

/* Gradient Variations */
.gradient-1 {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    box-shadow: 0 6px 24px rgba(79, 195, 247, 0.3);
}

.gradient-2 {
    background: linear-gradient(135deg, #F48FB1, #EC407A);
    box-shadow: 0 6px 24px rgba(244, 143, 177, 0.3);
}

.gradient-3 {
    background: linear-gradient(135deg, #9575CD, #7E57C2);
    box-shadow: 0 6px 24px rgba(149, 117, 205, 0.3);
}

.gradient-4 {
    background: linear-gradient(135deg, #4DB6AC, #26A69A);
    box-shadow: 0 6px 24px rgba(77, 182, 172, 0.3);
}

.gradient-5 {
    background: linear-gradient(135deg, #FF8A65, #FF7043);
    box-shadow: 0 6px 24px rgba(255, 138, 101, 0.3);
}

.gradient-6 {
    background: linear-gradient(135deg, #7986CB, #5C6BC0);
    box-shadow: 0 6px 24px rgba(121, 134, 203, 0.3);
}

/* Card Number */
.card-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.08;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    font-family: var(--font-display);
    transition: opacity 0.4s ease;
}

.carousel-card:hover .card-number {
    opacity: 0.15;
}

/* Card Content */
.carousel-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.carousel-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Card Button */
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    font-family: var(--font-primary);
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-btn:hover svg {
    transform: translateX(3px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.carousel-nav:hover svg {
    stroke: white;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

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

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.modal-content-wrapper {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10;
}

.service-modal.active .modal-content-wrapper {
    transform: scale(1);
}

/* Custom Scrollbar */
.modal-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.modal-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

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

/* Modal Close Button */
.modal-close {
    position: sticky;
    top: 20px;
    left: 100%;
    margin-left: -70px;
    margin-bottom: -50px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 20;
}

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

.modal-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.modal-close:hover svg {
    stroke: white;
}

/* Modal Header */
.modal-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.modal-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon svg {
    width: 45px;
    height: 45px;
    stroke: white;
}

.modal-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Modal Body */
.modal-body {
    padding: 40px;
}

.modal-section {
    margin-bottom: 35px;
}

.modal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-section h3::before {
    content: '';
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 3px;
}

.modal-section p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Before/After Grid */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.before-after-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.before-after-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
    transform: translateY(-3px);
}

.before-after-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.before-after-card.before h4 {
    color: #EC407A;
}

.before-after-card.after h4 {
    color: #4CAF50;
}

.before-after-card ul {
    list-style: none;
    padding: 0;
}

.before-after-card ul li {
    padding: 10px 0 10px 30px;
    color: var(--dark-gray);
    line-height: 1.6;
    position: relative;
}

.before-after-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.2;
}

.before-after-card.after ul li::before {
    background: #4CAF50;
}

/* Process Steps */
.process-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 20px;
    margin: 35px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(79, 195, 247, 0.1);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Modal CTA */
.modal-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.modal-cta h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-cta h3::before {
    display: none;
}

.modal-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: var(--font-primary);
}

.modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.modal-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.modal-cta-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .carousel-card {
        min-width: calc(50% - 15px);
    }
}

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

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

    .carousel-card {
        min-width: 100%;
        padding: 35px 25px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-body {
        padding: 30px 25px;
    }

    .modal-header {
        padding: 50px 25px 30px;
    }

    .modal-header h2 {
        font-size: 1.75rem;
    }

    .modal-close {
        margin-left: -60px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 45px;
    }

    .carousel-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .carousel-card h3 {
        font-size: 1.25rem;
    }

    .carousel-card p {
        font-size: 0.9rem;
    }

    .card-number {
        font-size: 3rem;
    }

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

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-icon {
        width: 75px;
        height: 75px;
    }

    .modal-icon svg {
        width: 38px;
        height: 38px;
    }

    .process-steps {
        padding: 25px 20px;
    }
}

/* ============================================
   SERVICES CAROUSEL SECTION - SCOPED STYLES
   ============================================ */

.services-section-carousel {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section-carousel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 117, 205, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header - Scoped to Services */
.services-section-carousel .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section-carousel .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-section-carousel .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.services-section-carousel .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-section-carousel .carousel-wrapper {
    position: relative;
    margin: 60px 0 40px;
    padding: 0 60px;
}

.services-section-carousel .carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.services-section-carousel .carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.services-section-carousel .carousel-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.services-section-carousel .carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-section-carousel .carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.services-section-carousel .carousel-card:hover::before {
    transform: scaleX(1);
}

/* Card Glow Effect */
.services-section-carousel .card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services-section-carousel .carousel-card:hover .card-glow {
    opacity: 1;
}

/* Card Icon */
.services-section-carousel .card-icon-wrapper {
    margin-bottom: 25px;
}

.services-section-carousel .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

.services-section-carousel .card-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

/* Gradient Variations */
.services-section-carousel .gradient-1 {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    box-shadow: 0 6px 24px rgba(79, 195, 247, 0.3);
}

.services-section-carousel .gradient-2 {
    background: linear-gradient(135deg, #F48FB1, #EC407A);
    box-shadow: 0 6px 24px rgba(244, 143, 177, 0.3);
}

.services-section-carousel .gradient-3 {
    background: linear-gradient(135deg, #9575CD, #7E57C2);
    box-shadow: 0 6px 24px rgba(149, 117, 205, 0.3);
}

.services-section-carousel .gradient-4 {
    background: linear-gradient(135deg, #4DB6AC, #26A69A);
    box-shadow: 0 6px 24px rgba(77, 182, 172, 0.3);
}

.services-section-carousel .gradient-5 {
    background: linear-gradient(135deg, #FF8A65, #FF7043);
    box-shadow: 0 6px 24px rgba(255, 138, 101, 0.3);
}

.services-section-carousel .gradient-6 {
    background: linear-gradient(135deg, #7986CB, #5C6BC0);
    box-shadow: 0 6px 24px rgba(121, 134, 203, 0.3);
}

/* Card Number */
.services-section-carousel .card-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.08;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    font-family: var(--font-display);
    transition: opacity 0.4s ease;
}

.services-section-carousel .carousel-card:hover .card-number {
    opacity: 0.15;
}

/* Card Content */
.services-section-carousel .carousel-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.services-section-carousel .carousel-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Card Button */
.services-section-carousel .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    font-family: var(--font-primary);
}

.services-section-carousel .card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.services-section-carousel .card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.services-section-carousel .card-btn:hover svg {
    transform: translateX(3px);
}

.services-section-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.services-section-carousel .carousel-nav:hover {
    background: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.services-section-carousel .carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.services-section-carousel .carousel-nav:hover svg {
    stroke: white;
}

.services-section-carousel .carousel-prev {
    left: 0;
}

.services-section-carousel .carousel-next {
    right: 0;
}

.services-section-carousel .carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

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

.services-section-carousel .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.services-section-carousel .carousel-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.services-section-carousel .carousel-dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.service-modal .modal-content-wrapper {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10;
}

.service-modal.active .modal-content-wrapper {
    transform: scale(1);
}

/* Custom Scrollbar */
.service-modal .modal-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.service-modal .modal-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

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

/* Modal Close Button */
.service-modal .modal-close {
    position: sticky;
    top: 20px;
    left: 100%;
    margin-left: -70px;
    margin-bottom: -50px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 20;
}

.service-modal .modal-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

.service-modal .modal-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.service-modal .modal-close:hover svg {
    stroke: white;
}

/* Modal Header */
.service-modal .modal-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.service-modal .modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.service-modal .modal-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-modal .modal-icon svg {
    width: 45px;
    height: 45px;
    stroke: white;
}

.service-modal .modal-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.service-modal .modal-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Modal Body */
.service-modal .modal-body {
    padding: 40px;
}

.service-modal .modal-section {
    margin-bottom: 35px;
}

.service-modal .modal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-modal .modal-section h3::before {
    content: '';
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 3px;
}

.service-modal .modal-section p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Before/After Grid */
.service-modal .before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.service-modal .before-after-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-modal .before-after-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
    transform: translateY(-3px);
}

.service-modal .before-after-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-modal .before-after-card.before h4 {
    color: #EC407A;
}

.service-modal .before-after-card.after h4 {
    color: #4CAF50;
}

.service-modal .before-after-card ul {
    list-style: none;
    padding: 0;
}

.service-modal .before-after-card ul li {
    padding: 10px 0 10px 30px;
    color: var(--dark-gray);
    line-height: 1.6;
    position: relative;
}

.service-modal .before-after-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.2;
}

.service-modal .before-after-card.after ul li::before {
    background: #4CAF50;
}

/* Process Steps */
.service-modal .process-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 20px;
    margin: 35px 0;
}

.service-modal .process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(79, 195, 247, 0.1);
}

.service-modal .process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-modal .step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-modal .step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.service-modal .step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Modal CTA */
.service-modal .modal-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.service-modal .modal-cta h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-modal .modal-cta h3::before {
    display: none;
}

.service-modal .modal-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.service-modal .modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: var(--font-primary);
    text-decoration: none;
}

.service-modal .modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.service-modal .modal-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-modal .modal-cta-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .services-section-carousel .carousel-card {
        min-width: calc(50% - 15px);
    }
}

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

    .services-section-carousel .section-title {
        font-size: 2rem;
    }

    .services-section-carousel .carousel-wrapper {
        padding: 0 50px;
    }

    .services-section-carousel .carousel-card {
        min-width: 100%;
        padding: 35px 25px;
    }

    .services-section-carousel .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .services-section-carousel .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .service-modal .before-after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-modal .modal-body {
        padding: 30px 25px;
    }

    .service-modal .modal-header {
        padding: 50px 25px 30px;
    }

    .service-modal .modal-header h2 {
        font-size: 1.75rem;
    }

    .service-modal .modal-close {
        margin-left: -60px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .services-section-carousel .carousel-wrapper {
        padding: 0 45px;
    }

    .services-section-carousel .carousel-card {
        padding: 30px 20px;
    }

    .services-section-carousel .card-icon {
        width: 60px;
        height: 60px;
    }

    .services-section-carousel .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .services-section-carousel .carousel-card h3 {
        font-size: 1.25rem;
    }

    .services-section-carousel .carousel-card p {
        font-size: 0.9rem;
    }

    .services-section-carousel .card-number {
        font-size: 3rem;
    }

    .services-section-carousel .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .service-modal .modal-header h2 {
        font-size: 1.5rem;
    }

    .service-modal .modal-icon {
        width: 75px;
        height: 75px;
    }

    .service-modal .modal-icon svg {
        width: 38px;
        height: 38px;
    }

    .service-modal .process-steps {
        padding: 25px 20px;
    }
}

/* ============================================
   TEAM SECTION CAROUSEL - SCOPED STYLES
   ============================================ */

.team-section-carousel {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-section-carousel::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header - Scoped to Team */
.team-section-carousel .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-section-carousel .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-section-carousel .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.team-section-carousel .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   TEAM CAROUSEL WRAPPER
   ============================================ */

.team-carousel-wrapper {
    position: relative;
    margin: 60px 0 40px;
    padding: 0 60px;
}

.team-carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.team-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

/* ============================================
   TEAM CAROUSEL CARDS
   ============================================ */

.team-carousel-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.team-card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============================================
   TEAM PHOTO
   ============================================ */

.team-photo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-carousel-card:hover .team-photo img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.3);
    border-color: rgba(79, 195, 247, 0.2);
}

/* Owner Badge */
.owner-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(149, 117, 205, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(149, 117, 205, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(149, 117, 205, 0.6);
    }
}

/* ============================================
   TEAM INFO
   ============================================ */

.team-info {
    text-align: center;
    flex-grow: 1;
    margin-bottom: 20px;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-info .credentials {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info .specialty {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.team-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.05), rgba(149, 117, 205, 0.05));
    transition: all 0.3s ease;
}

.team-email:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    transform: translateY(-2px);
}

.team-email svg {
    width: 16px;
    height: 16px;
    transition: stroke 0.3s ease;
}

.team-email:hover svg {
    stroke: white;
}

/* ============================================
   LEARN MORE BUTTON
   ============================================ */

.team-learn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    font-family: var(--font-primary);
}

.team-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.team-learn-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.team-learn-more:hover svg {
    transform: translateX(3px);
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */

.team-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.team-carousel-nav:hover {
    background: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.team-carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.team-carousel-nav:hover svg {
    stroke: white;
}

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

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

.team-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   CAROUSEL DOTS
   ============================================ */

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

.team-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.team-carousel-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.team-carousel-dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   TEAM MODALS
   ============================================ */

.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.team-modal .modal-content-wrapper {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10;
}

.team-modal.active .modal-content-wrapper {
    transform: scale(1);
}

/* Custom Scrollbar */
.team-modal .modal-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.team-modal .modal-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

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

/* Modal Close Button */
.team-modal .modal-close {
    position: sticky;
    top: 20px;
    left: 100%;
    margin-left: -70px;
    margin-bottom: -50px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 20;
}

.team-modal .modal-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

.team-modal .modal-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.team-modal .modal-close:hover svg {
    stroke: white;
}

/* Modal Header */
.team-modal .modal-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.team-modal .modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.team-modal .modal-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

.team-modal .modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 35px rgba(79, 195, 247, 0.3);
}

.team-modal .modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.team-modal .modal-credentials {
    font-size: 1.125rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-modal .modal-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-modal .modal-email:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
}

.team-modal .modal-email svg {
    width: 18px;
    height: 18px;
}

.team-modal .modal-email:hover svg {
    stroke: white;
}

/* Modal Body */
.team-modal .modal-body {
    padding: 40px;
}

.team-modal .bio-section {
    margin-bottom: 30px;
}

.team-modal .bio-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-modal .bio-section h3::before {
    content: '';
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-purple));
    border-radius: 3px;
}

.team-modal .bio-section p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

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

/* Highlights Box */
.team-modal .highlights-box {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.05), rgba(149, 117, 205, 0.05));
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
    margin: 30px 0;
}

.team-modal .highlights-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.team-modal .highlights-box ul {
    list-style: none;
    padding: 0;
}

.team-modal .highlights-box ul li {
    padding: 8px 0 8px 30px;
    color: var(--dark-gray);
    line-height: 1.6;
    position: relative;
}

.team-modal .highlights-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

@media (max-width: 1200px) {
    .team-carousel-card {
        min-width: calc(50% - 15px);
    }
}

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

    .team-section-carousel .section-title {
        font-size: 2rem;
    }

    .team-carousel-wrapper {
        padding: 0 50px;
    }

    .team-carousel-card {
        min-width: 100%;
    }

    .team-card-inner {
        padding: 25px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-info h3 {
        font-size: 1.25rem;
    }

    .team-info .specialty {
        min-height: auto;
    }

    .team-carousel-nav {
        width: 40px;
        height: 40px;
    }

    .team-carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .team-modal .modal-body {
        padding: 30px 25px;
    }

    .team-modal .modal-header {
        padding: 50px 25px 30px;
    }

    .team-modal .modal-header h2 {
        font-size: 1.75rem;
    }

    .team-modal .modal-close {
        margin-left: -60px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .team-carousel-wrapper {
        padding: 0 45px;
    }

    .team-card-inner {
        padding: 25px 20px;
    }

    .team-photo {
        width: 110px;
        height: 110px;
    }

    .team-carousel-nav {
        width: 36px;
        height: 36px;
    }

    .team-modal .modal-header h2 {
        font-size: 1.5rem;
    }

    .team-modal .modal-photo {
        width: 120px;
        height: 120px;
    }

    .team-modal .highlights-box {
        padding: 25px 20px;
    }
}

/* ============================================
   FAQ SECTION - COMPLETE SCOPED STYLES
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 117, 205, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.faq-section .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-section .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-section .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-section .featured-faqs {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-section .faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.faq-section .faq-question:hover {
    color: var(--primary-blue);
}

.faq-section .faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.faq-section .faq-answer p {
    padding: 0 30px 25px;
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.faq-section .faq-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.faq-section .category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.faq-section .category-tab svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-gray);
    transition: stroke 0.3s ease;
}

.faq-section .category-tab:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(149, 117, 205, 0.1));
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.faq-section .category-tab:hover svg {
    stroke: var(--primary-blue);
}

.faq-section .category-tab.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.faq-section .category-tab.active svg {
    stroke: white;
}

.faq-section .categorized-faqs {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .faq-category-content {
    display: none;
}

.faq-section .faq-category-content.active {
    display: block;
    animation: faqFadeInUp 0.4s ease;
}

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

/* ============================================
   INSURANCE SECTION - COMPLETE SCOPED STYLES
   ============================================ */

.insurance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.insurance-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.insurance-section .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.insurance-section .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.insurance-section .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.insurance-section .insurance-notice {
    background: linear-gradient(135deg, 
        rgba(79, 195, 247, 0.08) 0%, 
        rgba(149, 117, 205, 0.08) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(79, 195, 247, 0.2);
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.insurance-section .notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
}

.insurance-section .notice-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.insurance-section .notice-content {
    flex-grow: 1;
}

.insurance-section .notice-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.insurance-section .notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.insurance-section .notice-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid;
}

.insurance-section .notice-item.accepted {
    border-left-color: #4CAF50;
}

.insurance-section .notice-item.not-accepted {
    border-left-color: #EC407A;
}

.insurance-section .notice-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.insurance-section .notice-item.accepted svg {
    stroke: #4CAF50;
}

.insurance-section .notice-item.not-accepted svg {
    stroke: #EC407A;
}

.insurance-section .notice-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.insurance-section .notice-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.insurance-section .insurance-logos-wrapper {
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.insurance-section .insurance-logos-wrapper::before,
.insurance-section .insurance-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.insurance-section .insurance-logos-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
}

.insurance-section .insurance-logos-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #f8f9fa 0%, transparent 100%);
}

.insurance-section .insurance-scroll-container {
    overflow: hidden;
    padding: 30px 0;
}

.insurance-section .insurance-scroll-track {
    display: flex;
    gap: 60px;
    animation: insuranceInfiniteScroll 40s linear infinite;
}

.insurance-section .insurance-scroll-track:hover {
    animation-play-state: paused;
}

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

.insurance-section .insurance-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    background: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.insurance-section .insurance-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.insurance-section .insurance-text-logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.insurance-section .insurance-text-logo .small-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.insurance-section .insurance-logo-item:hover .insurance-text-logo {
    color: var(--primary-purple);
    transform: scale(1.05);
}

.insurance-section .insurance-list-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.insurance-section .insurance-list-container h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
}

.insurance-section .insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.insurance-section .insurance-provider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.05), rgba(149, 117, 205, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(79, 195, 247, 0.1);
    transition: all 0.3s ease;
}

.insurance-section .insurance-provider:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(149, 117, 205, 0.1));
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.insurance-section .insurance-provider svg {
    width: 20px;
    height: 20px;
    stroke: #4CAF50;
    flex-shrink: 0;
}

.insurance-section .insurance-provider span {
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.insurance-section .insurance-disclaimer {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px;
    border-top: 2px solid var(--medium-gray);
}

.insurance-section .insurance-disclaimer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.insurance-section .insurance-disclaimer a:hover {
    color: var(--primary-purple);
}

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

    .faq-section .section-title,
    .insurance-section .section-title {
        font-size: 2rem;
    }

    .faq-section .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-section .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }

    .faq-section .faq-categories {
        gap: 10px;
    }

    .faq-section .category-tab {
        padding: 10px 18px;
        font-size: 0.875rem;
    }

    .insurance-section .insurance-notice {
        flex-direction: column;
        padding: 30px 25px;
        gap: 20px;
    }

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

    .insurance-section .insurance-scroll-track {
        gap: 40px;
    }

    .insurance-section .insurance-logo-item {
        width: 140px;
        height: 70px;
    }

    .insurance-section .insurance-list-container {
        padding: 35px 25px;
    }

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

@media (max-width: 480px) {
    .faq-section .faq-question {
        font-size: 0.95rem;
        padding: 18px;
    }

    .insurance-section .insurance-notice {
        padding: 25px 20px;
    }

    .insurance-section .insurance-logo-item {
        width: 120px;
        height: 60px;
    }

    .insurance-section .insurance-text-logo {
        font-size: 1rem;
    }

    .insurance-section .insurance-list-container {
        padding: 30px 20px;
    }
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.locations-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header - Scoped to Locations */
.locations-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.locations-section .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.locations-section .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.locations-section .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   LOCATIONS GRID - SINGLE ROW ON DESKTOP
   ============================================ */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* ============================================
   LOCATION CARDS
   ============================================ */

.location-card {
    background: white;
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

/* Main Location Badge */
.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(149, 117, 205, 0.4);
}

/* Location Icon */
.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 24px rgba(79, 195, 247, 0.3);
    transition: all 0.4s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.4);
}

.location-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

/* Location Content */
.location-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.location-address {
    margin-bottom: 20px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-address p {
    color: var(--dark-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Location Actions */
.location-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.location-btn,
.location-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.location-phone {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(149, 117, 205, 0.1));
    color: var(--dark-gray);
}

.location-phone:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    transform: translateY(-2px);
}

.location-btn svg,
.location-phone svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   PARTNER LOCATION BANNER
   ============================================ */

.partner-location-banner {
    background: linear-gradient(135deg, 
        rgba(79, 195, 247, 0.08) 0%, 
        rgba(149, 117, 205, 0.08) 50%,
        rgba(244, 143, 177, 0.08) 100%);
    padding: 50px;
    border-radius: 30px;
    border: 2px solid rgba(79, 195, 247, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.partner-location-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.partner-banner-content {
    position: relative;
    z-index: 1;
}

.partner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(149, 117, 205, 0.2);
    margin-bottom: 30px;
}

.partner-label svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-purple);
}

.partner-info {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 35px;
    align-items: center;
}

/* Partner Logo */
.partner-logo-container {
    flex-shrink: 0;
}

.partner-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    padding: 10px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(79, 195, 247, 0.2);
    transition: all 0.4s ease;
}

.partner-location-banner:hover .partner-logo {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Partner Details */
.partner-details {
    flex-grow: 1;
}

.partner-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.partner-tagline {
    font-size: 0.95rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.partner-address svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.partner-address p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Partner Directions Button */
.partner-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.partner-directions-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(79, 195, 247, 0.3);
}

.partner-directions-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.partner-directions-btn:hover svg {
    transform: translateX(3px);
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .location-card {
        padding: 30px 20px;
    }

    .location-card h3 {
        font-size: 1.125rem;
    }

    .location-address p {
        font-size: 0.8rem;
    }

    .location-btn,
    .location-phone {
        font-size: 0.8rem;
        padding: 9px 14px;
    }

    .partner-info {
        gap: 25px;
    }

    .partner-logo {
        width: 120px;
        height: 120px;
    }

    .partner-details h3 {
        font-size: 1.5rem;
    }
}

/* Tablets - 2x2 Grid */
@media (max-width: 900px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .location-card {
        padding: 35px 25px;
    }

    .location-card h3 {
        font-size: 1.25rem;
    }

    .location-address p {
        font-size: 0.875rem;
    }

    .location-btn,
    .location-phone {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .locations-section {
        padding: 60px 0;
    }

    .locations-section .section-title {
        font-size: 2rem;
    }

    .locations-grid {
        margin-bottom: 40px;
    }

    .partner-location-banner {
        padding: 35px 25px;
    }

    .partner-info {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .partner-logo-container {
        margin: 0 auto;
    }

    .partner-logo {
        width: 130px;
        height: 130px;
    }

    .partner-address {
        justify-content: center;
    }

    .partner-directions-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .locations-grid {
        gap: 15px;
    }

    .location-card {
        padding: 30px 20px;
    }

    .location-icon {
        width: 55px;
        height: 55px;
    }

    .location-icon svg {
        width: 28px;
        height: 28px;
    }

    .location-card h3 {
        font-size: 1.125rem;
    }

    .location-address {
        min-height: auto;
    }

    .location-address p {
        font-size: 0.825rem;
    }

    .location-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .partner-location-banner {
        padding: 30px 20px;
    }

    .partner-details h3 {
        font-size: 1.375rem;
    }

    .partner-logo {
        width: 110px;
        height: 110px;
    }

    .partner-tagline {
        font-size: 0.85rem;
    }

    .partner-address p {
        font-size: 0.9rem;
    }
}

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

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

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header - Scoped to Contact */
.contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-section .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-section .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-section .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CONTACT WRAPPER
   ============================================ */

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 195, 247, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
    transition: all 0.4s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

.info-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-card a:hover {
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.contact-info-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 8px;
}

.info-note {
    font-size: 0.85rem !important;
    opacity: 0.8;
    margin-top: 5px !important;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
}

.contact-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--black);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Form Submit Button */
.form-submit {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(3px) rotate(5deg);
}

.form-note {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.875rem;
    margin-top: 20px;
    opacity: 0.8;
}

/* ============================================
   FORM VALIDATION STATES
   ============================================ */

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #EC407A;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

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

@media (max-width: 1024px) {
    .contact-info-cards {
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title {
        font-size: 2rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

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

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-info-card h3 {
        font-size: 1.125rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-submit {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* ============================================
   FLOATING ACTION BUTTONS - FAB CONTACT MENU
   ============================================ */

/* Move Back to Top Button to LEFT SIDE */
.scroll-to-top {
    left: 30px !important;
    right: auto !important;
}

/* FAB Contact Menu - RIGHT SIDE */
.fab-contact-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fab-contact-menu.visible {
    opacity: 1;
    visibility: visible;
}

/* Main FAB Button */
.fab-main-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-main-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.5);
}

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

/* FAB Icons */
.fab-icon-contact,
.fab-icon-close {
    width: 28px;
    height: 28px;
    stroke: white;
    position: absolute;
    transition: all 0.3s ease;
}

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

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

.fab-contact-menu.open .fab-icon-contact {
    opacity: 0;
    transform: rotate(90deg);
}

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

/* FAB Buttons Container */
.fab-buttons-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.fab-contact-menu.open .fab-buttons-container {
    pointer-events: auto;
}

/* Individual FAB Buttons */
.fab-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    position: relative;
}

.fab-button.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fab-button::before {
    content: attr(aria-label);
    position: absolute;
    right: 60px;
    background: var(--black);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fab-button::after {
    content: '';
    position: absolute;
    right: 52px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--black);
    opacity: 0;
    transition: all 0.3s ease;
}

.fab-button:hover::before,
.fab-button:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.fab-button:hover {
    transform: translateY(0) scale(1.1);
}

.fab-button:active {
    transform: translateY(0) scale(0.95);
}

.fab-button svg {
    width: 24px;
    height: 24px;
}

/* Phone Button - Green */
.fab-phone {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.fab-phone svg {
    stroke: white;
}

.fab-phone:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Email Button - Pink */
.fab-email {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
}

.fab-email svg {
    stroke: white;
}

.fab-email:hover {
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4);
}

/* LinkedIn Button - Blue */
.fab-linkedin {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: white;
}

.fab-linkedin:hover {
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* Ripple Effect on Click */
.fab-main-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.fab-main-button:active::after {
    width: 100%;
    height: 100%;
}

/* ============================================
   RESPONSIVE DESIGN FOR FABs
   ============================================ */

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px !important;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .fab-contact-menu {
        bottom: 20px;
        right: 20px;
    }

    .fab-main-button {
        width: 55px;
        height: 55px;
    }

    .fab-icon-contact,
    .fab-icon-close {
        width: 26px;
        height: 26px;
    }

    .fab-button {
        width: 48px;
        height: 48px;
    }

    .fab-button svg {
        width: 22px;
        height: 22px;
    }

    .fab-buttons-container {
        bottom: 65px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        left: 15px !important;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .fab-contact-menu {
        bottom: 15px;
        right: 15px;
    }

    .fab-main-button {
        width: 52px;
        height: 52px;
    }

    .fab-icon-contact,
    .fab-icon-close {
        width: 24px;
        height: 24px;
    }

    .fab-button {
        width: 45px;
        height: 45px;
    }

    .fab-button svg {
        width: 20px;
        height: 20px;
    }

    .fab-buttons-container {
        bottom: 60px;
        gap: 8px;
    }

    /* Simplify tooltips on very small screens */
    .fab-button::before {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
}

/* ===================================
   FOOTER GRID
   =================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-about {
    max-width: 350px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(79, 195, 247, 0.3));
}

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* ===================================
   SOCIAL LINKS
   =================================== */

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   FOOTER COLUMNS
   =================================== */

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

/* ===================================
   FOOTER LINKS
   =================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* ===================================
   FOOTER CONTACT
   =================================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact span {
    display: inline-block;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */

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

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   DESIGN CREDIT
   =================================== */

.design-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.designer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.designer-link:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.2);
}

.designer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.designer-link:hover .designer-logo {
    filter: brightness(1) invert(0) drop-shadow(0 2px 8px rgba(79, 195, 247, 0.4));
}

.designer-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: color 0.3s ease;
}

.designer-link:hover .designer-name {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

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

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

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

    .design-credit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 0;
    }

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

    .footer-about {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}
/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
}

/* ===================================
   FOOTER GRID
   =================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-about {
    max-width: 350px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(79, 195, 247, 0.3));
}

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* ===================================
   SOCIAL LINKS
   =================================== */

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   FOOTER COLUMNS
   =================================== */

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

/* ===================================
   FOOTER LINKS
   =================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* ===================================
   FOOTER CONTACT
   =================================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact span {
    display: inline-block;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */

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

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   DESIGN CREDIT
   =================================== */

.design-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.designer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.designer-link:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.2);
}

.designer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.designer-link:hover .designer-logo {
    filter: brightness(1) invert(0) drop-shadow(0 2px 8px rgba(79, 195, 247, 0.4));
}

.designer-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: color 0.3s ease;
}

.designer-link:hover .designer-name {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

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

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

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

    .design-credit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 0;
    }

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

    .footer-about {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}
