/* ============================================
   Sree Nayaki Chits - Advanced Modern CSS
   ============================================ */

/* CSS Custom Properties (Variables) - Teal Green Theme */
:root {
    --primary-color: #14b8a6;
    --primary-dark: #0d9488;
    --primary-light: #5eead4;
    --secondary-color: #6b7280;
    --accent-color: #0f766e;
    --accent-dark: #115e59;
    --accent-light: #2dd4bf;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-background: #0f172a;
    --dark-surface: #1e293b;
    --light-background: #f0fdfa;
    --white-color: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(20, 184, 166, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(20, 184, 166, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-speed: 0.3s;
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 118, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(94, 234, 212, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(90deg, 
            rgba(255, 255, 255, 0.05) 0px, 
            rgba(255, 255, 255, 0.05) 1px, 
            rgba(15, 23, 42, 0.03) 1px, 
            rgba(15, 23, 42, 0.03) 2px),
        linear-gradient(180deg, #ffffff 0%, #f0fdfa 50%, #e0e7ff 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 20px 20px, 100% 100%;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, 
            rgba(255, 255, 255, 0.08) 0px, 
            rgba(255, 255, 255, 0.08) 2px, 
            rgba(15, 23, 42, 0.05) 2px, 
            rgba(15, 23, 42, 0.05) 4px,
            transparent 4px,
            transparent 100px,
            rgba(20, 184, 166, 0.03) 100px, 
            rgba(20, 184, 166, 0.03) 200px),
        repeating-linear-gradient(-45deg, 
            rgba(15, 23, 42, 0.05) 0px,
            rgba(15, 23, 42, 0.05) 2px,
            rgba(255, 255, 255, 0.08) 2px,
            rgba(255, 255, 255, 0.08) 4px,
            transparent 4px,
            transparent 100px, 
            rgba(15, 118, 110, 0.03) 100px, 
            rgba(15, 118, 110, 0.03) 200px);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px);
    }
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(15, 23, 42, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
    animation: float 25s ease-in-out infinite;
    opacity: 0.7;
}

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

body > * {
    position: relative;
    z-index: 1;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: var(--white-color);
    padding: 24px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(20, 184, 166, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 0;
    position: relative;
    perspective: 1000px;
}

.logo-link::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, 
        rgba(32, 178, 170, 0.3) 0%, 
        rgba(32, 178, 170, 0.1) 50%,
        rgba(32, 178, 170, 0.2) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(12px);
}

.logo-link:hover::before {
    opacity: 1;
}

.logo-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25))
        drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2))
        drop-shadow(0 0 15px rgba(20, 184, 166, 0.3))
        drop-shadow(0 0 25px rgba(20, 184, 166, 0.2))
        drop-shadow(0 0 35px rgba(20, 184, 166, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    transform-style: preserve-3d;
}

/* 3D Glossy App Icon Effect */
.logo.tamil-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(0, 0, 0, 0.1) 100%);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(0, 0, 0, 0.25),
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(20, 184, 166, 0.4),
        0 0 30px rgba(20, 184, 166, 0.3),
        0 0 40px rgba(20, 184, 166, 0.2),
        /* Inner 3D shadows - top highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.2),
        /* Inner 3D shadows - bottom depth */
        inset 0 -1px 2px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.35),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3),
        inset 0 -4px 8px rgba(0, 0, 0, 0.25),
        /* Inner 3D shadows - sides for depth */
        inset 2px 0 4px rgba(0, 0, 0, 0.2),
        inset -2px 0 4px rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(255, 255, 255, 0.15),
        /* Inner glow effect */
        inset 0 0 15px rgba(20, 184, 166, 0.15),
        inset 0 0 25px rgba(20, 184, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.logo.tamil-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.1) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

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

.logo.tamil-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.2) 0%, 
            transparent 40%,
            transparent 60%,
            rgba(0, 0, 0, 0.15) 100%);
    border-radius: 12px;
    pointer-events: none;
    mix-blend-mode: overlay;
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.3),
        inset 0 -1px 3px rgba(0, 0, 0, 0.3);
}

.logo-link:hover .logo.tamil-logo {
    filter: 
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4))
        drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35))
        drop-shadow(0 16px 32px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 25px rgba(20, 184, 166, 0.5))
        drop-shadow(0 0 35px rgba(20, 184, 166, 0.4))
        drop-shadow(0 0 45px rgba(20, 184, 166, 0.3));
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.35),
        0 16px 32px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(20, 184, 166, 0.5),
        0 0 40px rgba(20, 184, 166, 0.4),
        0 0 50px rgba(20, 184, 166, 0.3),
        /* Enhanced inner 3D shadows on hover */
        inset 0 1px 3px rgba(255, 255, 255, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.5),
        inset 0 3px 7px rgba(255, 255, 255, 0.4),
        inset 0 4px 9px rgba(255, 255, 255, 0.3),
        inset 0 5px 11px rgba(255, 255, 255, 0.2),
        inset 0 -1px 3px rgba(0, 0, 0, 0.5),
        inset 0 -2px 5px rgba(0, 0, 0, 0.4),
        inset 0 -3px 7px rgba(0, 0, 0, 0.35),
        inset 0 -4px 9px rgba(0, 0, 0, 0.3),
        inset 0 -5px 11px rgba(0, 0, 0, 0.25),
        inset 3px 0 6px rgba(0, 0, 0, 0.25),
        inset -3px 0 6px rgba(255, 255, 255, 0.25),
        inset 0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 -3px 6px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(20, 184, 166, 0.2),
        inset 0 0 30px rgba(20, 184, 166, 0.15);
    transform: translateZ(10px) rotateY(-5deg) rotateX(2deg);
}

.header-text {
    flex: 1;
    min-width: 200px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

header h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 4px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) translateZ(0);
    animation: textShine 4s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% {
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.25),
            0 4px 8px rgba(0, 0, 0, 0.2),
            0 6px 12px rgba(0, 0, 0, 0.15),
            0 0 15px rgba(255, 255, 255, 0.3),
            0 0 25px rgba(255, 255, 255, 0.2);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
                drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25))
                drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.35),
            0 8px 16px rgba(0, 0, 0, 0.3),
            0 12px 24px rgba(0, 0, 0, 0.25),
            0 0 20px rgba(255, 255, 255, 0.4),
            0 0 30px rgba(255, 255, 255, 0.3);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4))
                drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
                drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    }
}

header h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    z-index: 1;
    animation: textShineSweep 3s infinite;
    pointer-events: none;
}

@keyframes textShineSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.header-text:hover header h1 {
    transform: perspective(1000px) translateZ(10px) rotateY(-2deg) rotateX(1deg) scale(1.02);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

header p {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 0 10px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) translateZ(0);
}

.header-text:hover header p {
    transform: perspective(1000px) translateZ(5px) rotateY(-1deg);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
}

/* Company CIN Number Styles */
.company-cin {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 8px !important;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3) 0%, rgba(15, 118, 110, 0.25) 100%);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(20, 184, 166, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.company-cin-footer,
.company-legal-info {
    font-size: 0.85rem;
    color: var(--accent-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px !important;
    padding: 4px 12px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 4px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(15, 118, 110, 0.1) 100%);
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

/* Carousel Background Shapes for Graphical Design (Inside Hero Slide) */
.carousel-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.carousel-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: carouselFloat 20s ease-in-out infinite;
}

.carousel-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.carousel-shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.carousel-shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

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

/* Hero Slide Background (No Image) */
.carousel-slide-hero {
    background: linear-gradient(135deg, 
        rgba(240, 253, 250, 0.98) 0%, 
        rgba(255, 255, 255, 1) 25%,
        rgba(240, 253, 250, 0.95) 50%,
        rgba(255, 255, 255, 1) 75%,
        rgba(240, 253, 250, 0.98) 100%);
    position: relative;
}

.carousel-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 1;
}

.carousel-slide-hero .carousel-hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Content on Carousel */
.carousel-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    max-width: 1000px;
    width: 90%;
    padding: 40px 24px;
    animation: fadeInUp 0.8s ease-out;
    pointer-events: none;
}

.carousel-hero-content * {
    pointer-events: auto;
}

/* Hero Content Text Colors for Hero Slide (Light Background) */
.carousel-slide-hero .hero-headline {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.carousel-slide-hero .hero-subheading {
    color: var(--text-secondary);
    text-shadow: none;
}

.carousel-slide-hero .hero-badge {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(15, 118, 110, 0.12) 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.15);
}

.carousel-slide-hero .highlight-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 250, 0.8) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1);
}

.carousel-slide-hero .highlight-item span {
    text-shadow: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(20, 184, 166, 0.4);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(20, 184, 166, 0.2);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-headline::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    border-radius: 2px;
}

.hero-subheading {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 50px;
    padding: 14px 28px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25), 0 2px 10px rgba(20, 184, 166, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.2);
    border-color: var(--primary-color);
}

.highlight-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta-primary:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.5);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.3);
}

.hero-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}


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

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

/* Responsive Carousel Hero Content */
@media (max-width: 1024px) {
    .carousel-shape-1 {
        width: 400px;
        height: 400px;
    }
    
    .carousel-shape-2 {
        width: 500px;
        height: 500px;
    }
    
    .carousel-shape-3 {
        width: 300px;
        height: 300px;
    }
    
    .carousel-hero-content {
        width: 95%;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .carousel-hero-content {
        padding: 30px 16px;
    }
    
    .hero-headline {
        margin-bottom: 20px;
    }
    
    .hero-subheading {
        margin-bottom: 32px;
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 36px;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-cta-button {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
    }
    
    .carousel-shape {
        filter: blur(70px);
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .carousel-hero-content {
        padding: 24px 16px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .hero-highlights {
        margin-bottom: 32px;
    }
    
    .highlight-item {
        padding: 10px 20px;
    }
    
    .highlight-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
    
    .carousel-shape {
        filter: blur(50px);
        opacity: 0.15;
    }
}

/* Image Carousel Styles */
.carousel-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.carousel-section::before {
    display: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 3;
    transform: scale(1);
}

/* Hide hero content on image slides */
.carousel-slide:not(.carousel-slide-hero) .carousel-hero-content {
    display: none;
}

/* Hide overlay on hero slide */
.carousel-slide-hero .carousel-overlay {
    display: none;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Mobile-specific image handling */
@media (max-width: 768px) {
    .carousel-image {
        object-fit: contain;
        object-position: center center;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Reduce overlay on mobile for better image visibility */
@media (max-width: 768px) {
    .carousel-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 100%);
    }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white-color);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    user-select: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(20, 184, 166, 0.2);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots Indicator */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    /* Increase touch target size */
    padding: 4px;
    margin: -4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--white-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Navigation Styles */
nav {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.92) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 88px;
    z-index: 999;
    border-bottom: 2px solid rgba(20, 184, 166, 0.3);
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    flex-wrap: wrap;
}

nav a {
    color: var(--white-color);
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left var(--transition-speed) ease;
}

nav a:hover::before {
    left: 0;
}

nav a:hover {
    background-color: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

nav a.active {
    background-color: rgba(20, 184, 166, 0.25);
    border: 1px solid rgba(20, 184, 166, 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(20, 184, 166, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: transform var(--transition-speed) ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu Open State */
@media (max-width: 768px) {
    nav .container:not(.mobile-open) a {
        display: none;
    }
    
    nav .container.mobile-open {
        flex-direction: column;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    nav .container.mobile-open a {
        display: block;
        width: 100%;
        text-align: center;
        margin: 4px 0;
    }
}

/* Hero Section */
#home {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(94, 234, 212, 0.85) 100%),
                linear-gradient(45deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    background-size: cover, 200% 200%;
    background-position: center, 0% 50%;
    animation: gradientShift 15s ease infinite;
    color: var(--white-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#home .container {
    position: relative;
    z-index: 1;
}

#home h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--white-color);
    font-weight: 700;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

#home h2::after {
    background-color: var(--white-color);
    width: 80px;
    height: 4px;
    margin: 20px auto;
}

#home p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(17, 94, 89, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed) var(--transition-bounce);
    box-shadow: 0 8px 32px rgba(15, 118, 110, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

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

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

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

/* Section Styles */
section {
    padding: 100px 0;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 253, 250, 0.6) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
}

section:hover::before {
    transform: scaleX(1);
}

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

section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

section p {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Managing Director Section */
.director-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    padding: 80px 0;
    margin-bottom: 0;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.director-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 4px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(15, 118, 110, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.director-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 3/4;
    border: 4px solid var(--primary-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.director-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.director-info {
    text-align: left;
}

.director-info h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.director-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.director-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.director-info p:last-child {
    margin-bottom: 0;
}

/* Directors Slideshow Section */
.directors-slideshow-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    padding: 80px 0;
    margin-bottom: 0;
}

.directors-slideshow-section .section-title {
    text-align: center;
    margin-bottom: 48px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-color);
    font-weight: 700;
}

.directors-slideshow-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(240, 253, 250, 0.5) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 20px;
}

.directors-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.director-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(30px);
}

.director-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.director-slide .director-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.director-link-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
}

.director-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

/* Director Slideshow Navigation Buttons */
.director-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    user-select: none;
    box-shadow: var(--shadow-md);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.director-slide-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.director-slide-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.director-slide-prev {
    left: -25px;
}

.director-slide-next {
    right: -25px;
}

/* Director Slideshow Dots */
.director-slide-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    z-index: 10;
}

.director-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 4px;
    margin: -4px;
}

.director-dot:hover {
    background: rgba(20, 184, 166, 0.5);
    transform: scale(1.2);
}

.director-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

/* Responsive Design for Directors Slideshow */
@media (max-width: 1024px) {
    .director-slide-prev {
        left: 10px;
    }
    
    .director-slide-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .directors-slideshow-section {
        padding: 60px 0;
    }
    
    .director-slide .director-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .director-slide .director-info {
        text-align: center;
    }
    
    .director-slide .director-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .director-image-wrapper {
        max-width: 300px;
    }
    
    .director-slide-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .director-slide-prev {
        left: 8px;
    }
    
    .director-slide-next {
        right: 8px;
    }
    
    .directors-slider {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .director-slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .director-slide-prev {
        left: 6px;
    }
    
    .director-slide-next {
        right: 6px;
    }
    
    .director-dot {
        width: 10px;
        height: 10px;
    }
    
    .director-dot.active {
        width: 28px;
    }
}

/* About Section */
#about {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    margin-top: 0;
    padding-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white-color);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: transform var(--transition-speed) ease;
}

.stat-card:hover::before {
    transform: scale(1.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Services Section */
#services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

#services li {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 253, 250, 0.7) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#services li::before {
    content: '✓';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed) ease;
}

#services li:hover::before {
    transform: rotate(360deg) scale(1.1);
}

#services li:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

#services li strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-left: 60px;
    font-weight: 700;
}

#services li p {
    font-size: 1rem;
    padding-left: 60px;
    color: var(--text-secondary);
    margin: 0;
}

/* Chit Plans Section */
#plans {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.98) 100%);
}

.plans-subtitle {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-style: italic;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

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

.plan-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-card.plan-featured {
    border: none;
    background: var(--white-color);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.plan-card.plan-featured::before {
    height: 8px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #10b981 50%, var(--accent-color) 100%);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    margin: 0;
    padding: 32px 32px 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(15, 118, 110, 0.03) 100%);
    border-bottom: 1px solid rgba(20, 184, 166, 0.08);
}

.plan-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.plan-header .plan-duration {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
    margin: 0;
}

.plan-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.plan-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 250, 0.8) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.plan-summary-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.12);
    transform: translateY(-2px);
}

.summary-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-align: center;
}

.summary-value {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.plan-details-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.95) 0%, rgba(13, 148, 136, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3), 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
}

.plan-details-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.plan-details-btn:hover::before {
    width: 300px;
    height: 300px;
}

.plan-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.plan-details-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.plan-join-btn {
    width: 100%;
    padding: 18px 32px;
    margin: 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white-color);
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
}

.plan-join-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.plan-join-btn:hover::before {
    width: 300px;
    height: 300px;
}

.plan-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: var(--white-color);
}

.plan-join-featured {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.plan-join-featured:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Plan Details Expanded Section */
.plan-details-expanded {
    margin: 0;
    padding: 32px;
    background: var(--white-color);
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: block;
    width: 100%;
    overflow: visible;
    flex: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 2000px;
    }
}

.plan-details-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.plan-details-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.plan-details-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    letter-spacing: -0.3px;
}

.plan-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 600px;
    overflow-y: auto;
    border-radius: var(--border-radius);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: block;
    position: relative;
}

.plan-table-wrapper::after {
    content: '← Scroll to see all columns →';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem;
    color: var(--primary-color);
    opacity: 0.6;
    pointer-events: none;
    display: none;
}

@media (max-width: 768px) {
    .plan-table-wrapper::after {
        display: block;
    }
}

.plan-table-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.plan-table-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.plan-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.plan-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.plan-details-expanded .plan-table {
    width: 100%;
    min-width: 600px;
    margin: 0;
    border-collapse: collapse;
    background: var(--white-color);
    table-layout: fixed;
}

.plan-details-expanded .plan-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.plan-details-expanded .plan-table th {
    padding: 16px 12px;
    text-align: center;
    font-weight: 700;
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    word-wrap: break-word;
    font-size: 0.9rem;
}

.plan-details-expanded .plan-table th:nth-child(1) {
    width: 15%;
    min-width: 80px;
}

.plan-details-expanded .plan-table th:nth-child(2) {
    width: 25%;
    min-width: 120px;
}

.plan-details-expanded .plan-table th:nth-child(3) {
    width: 25%;
    min-width: 120px;
}

.plan-details-expanded .plan-table th:nth-child(4) {
    width: 35%;
    min-width: 150px;
}

.plan-details-expanded .plan-table td {
    padding: 14px 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.plan-details-expanded .plan-table tbody tr:nth-child(even) {
    background-color: rgba(20, 184, 166, 0.03);
}

.plan-details-expanded .plan-table tbody tr:hover {
    background-color: rgba(20, 184, 166, 0.08);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* Plans Hero Section */
.plans-hero {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(15, 118, 110, 0.05) 100%);
    padding: 80px 20px 60px;
    margin-top: 80px;
}

.plans-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.plans-hero .plans-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 24px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
    color: var(--white-color);
    margin-top: 60px;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .cta-button {
    background: var(--white-color);
    color: var(--primary-color);
    margin: 0 12px;
}

.cta-section .cta-button:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.cta-section .cta-button-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Plan Modal Styles */
.plan-modal {
    display: none !important;
    position: fixed !important;
    z-index: 9999 !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plan-modal.active {
    display: flex !important;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.plan-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.plan-modal.active .plan-modal-content {
    transform: scale(1);
    opacity: 1;
}

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

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

.plan-modal-header {
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.plan-modal-header h3 {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
}

.plan-modal-close {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all var(--transition-speed) ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.plan-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.plan-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    height: calc(100vh - 120px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.plan-modal-body .plan-table-container {
    flex: 1;
    overflow: auto;
    min-height: 0;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
}

.plan-modal-body .plan-table-container::-webkit-scrollbar {
    width: 10px;
}

.plan-modal-body .plan-table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.plan-modal-body .plan-table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.plan-modal-body .plan-table-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.plan-details {
    display: none;
}

.plan-table-container {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-color);
    font-size: 0.9rem;
}

.plan-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
}

.plan-table th {
    padding: 14px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    color: var(--text-primary);
}

.plan-table tbody tr {
    transition: background-color var(--transition-speed) ease;
}

.plan-table tbody tr:hover {
    background-color: rgba(20, 184, 166, 0.05);
}

.plan-table tbody tr:nth-child(even) {
    background-color: rgba(240, 253, 250, 0.5);
}

.plan-table tbody tr:nth-child(even):hover {
    background-color: rgba(20, 184, 166, 0.08);
}

.plan-total {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%) !important;
    font-weight: 700;
    border-top: 2px solid var(--accent-color);
}

.plan-total td {
    color: var(--primary-color);
    font-size: 1rem;
    padding: 16px 12px;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 253, 250, 0.7) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transform: scaleY(0);
    transition: transform var(--transition-speed) ease;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: block;
    font-weight: 700;
}

.contact-item p {
    margin: 8px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
}

.contact-item a:hover {
    color: var(--accent-color);
    background-color: rgba(16, 185, 129, 0.1);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

/* Map Container Styles */
.map-container {
    margin-top: 48px;
    padding: 32px 0;
    text-align: center;
}

.map-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white-color);
    padding: 4px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    display: block;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .map-container {
        margin-top: 32px;
        padding: 24px 0;
    }
    
    .map-wrapper {
        max-width: 100%;
        padding: 2px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-container h3 {
        font-size: 1.25rem !important;
    }
    
    .map-container p {
        font-size: 1rem !important;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: var(--white-color);
    text-align: center;
    padding: 48px 0;
    margin-top: 48px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15), 0 -2px 8px rgba(0, 0, 0, 0.1);
    border-top: 2px solid rgba(20, 184, 166, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 118, 110, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 118, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

header > * {
    position: relative;
    z-index: 1;
}

footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.footer-section h3 {
    color: var(--white-color);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color var(--transition-speed) ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.developer-credit {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.developer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    position: relative;
    display: inline-block;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-light) 100%);
    transition: width var(--transition-speed) ease;
}

.developer-credit a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.developer-credit a:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(15, 118, 110, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .carousel-section {
        height: 65vh;
        min-height: 450px;
        max-height: 700px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .plan-modal-body {
        padding: 20px;
        height: calc(100vh - 80px);
    }
    
    .plan-modal-header {
        padding: 16px 20px;
    }
    
    .plan-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .plan-modal-close {
        width: 28px;
        height: 28px;
        font-size: 1.5rem;
    }
    
    .plan-table {
        font-size: 0.85rem;
    }
    
    .plan-table th,
    .plan-table td {
        padding: 10px 8px;
    }
    
    .carousel-section {
        height: 50vh;
        min-height: 300px;
        max-height: 450px;
    }
    
    .carousel-container {
        background-color: #f0fdfa;
    }
    
    .carousel-image {
        object-fit: contain;
        object-position: center center;
        background-color: #f0fdfa;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(20, 184, 166, 0.3);
        color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .carousel-btn:hover {
        background: rgba(255, 255, 255, 1);
        border-color: var(--primary-color);
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .carousel-dots {
        bottom: 12px;
        gap: 10px;
        padding: 8px 12px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .dot.active {
        width: 28px;
        background: var(--white-color);
        border-color: var(--white-color);
    }
    
    .director-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .director-info {
        text-align: center;
    }
    
    .director-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .director-image-wrapper {
        max-width: 300px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .header-text {
        display: none;
    }
    
    nav {
        top: auto;
        position: relative;
    }
    
    nav .container {
        flex-direction: row;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
        order: -1;
        margin-right: auto;
    }
    
    #home {
        min-height: 500px;
        padding: 80px 0;
    }
    
    section {
        padding: 60px 0;
        margin-bottom: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .plans-hero {
        padding: 60px 20px 40px;
        margin-top: 60px;
    }
    
    .plans-hero h1 {
        font-size: 2rem;
    }
    
    .plans-hero .plans-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-section .cta-button {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }
    
    .plan-details-expanded {
        padding: 16px;
        margin-top: 16px;
    }
    
    .plan-details-header h4 {
        font-size: 1.1rem;
    }
    
    .plan-table-wrapper {
        max-height: 400px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .plan-details-expanded .plan-table {
        font-size: 0.85rem;
        min-width: 500px;
    }
    
    .plan-details-expanded .plan-table th {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .plan-details-expanded .plan-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    .plan-details-expanded .plan-table th:nth-child(1) {
        min-width: 60px;
    }
    
    .plan-details-expanded .plan-table th:nth-child(2),
    .plan-details-expanded .plan-table th:nth-child(3) {
        min-width: 100px;
    }
    
    .plan-details-expanded .plan-table th:nth-child(4) {
        min-width: 130px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    #services ul {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-table {
        font-size: 0.8rem;
    }
    
    .plan-table th,
    .plan-table td {
        padding: 10px 8px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        height: 45vh;
        min-height: 280px;
        max-height: 380px;
    }
    
    .carousel-container {
        background-color: #f0fdfa;
    }
    
    .carousel-image {
        object-fit: contain;
        object-position: center center;
        background-color: #f0fdfa;
        max-width: 100%;
        max-height: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(20, 184, 166, 0.4);
        color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.9);
        background: rgba(255, 255, 255, 1);
    }
    
    .carousel-prev {
        left: 6px;
    }
    
    .carousel-next {
        right: 6px;
    }
    
    .carousel-dots {
        bottom: 10px;
        gap: 8px;
        padding: 6px 10px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        border-radius: 18px;
    }
    
    .dot {
        width: 9px;
        height: 9px;
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
    
    .dot.active {
        width: 26px;
        background: var(--white-color);
        border-color: var(--white-color);
    }
    
    .director-section {
        padding: 60px 0;
    }
    
    .director-content {
        gap: 24px;
    }
    
    .director-image-wrapper {
        max-width: 250px;
    }
    
    .director-info h2 {
        font-size: 1.25rem;
    }
    
    .director-info h3 {
        font-size: 1.75rem;
    }
    
    .director-info p {
        font-size: 1rem;
    }
    
    .logo {
        height: 50px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    #home {
        min-height: 400px;
        padding: 60px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .plan-card {
        padding: 0;
    }
    
    .plan-header {
        padding: 24px 24px 20px;
    }
    
    .plan-header h3 {
        font-size: 1.75rem;
    }
    
    .plan-summary {
        padding: 24px;
        gap: 16px;
    }
    
    .plan-details-expanded {
        padding: 24px;
    }
    
    .plan-join-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .plan-modal-body {
        padding: 16px;
        height: calc(100vh - 70px);
    }
    
    .plan-modal-header {
        padding: 12px 16px;
    }
    
    .plan-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .plan-modal-close {
        width: 24px;
        height: 24px;
        font-size: 1.25rem;
    }
    
    .plan-table {
        font-size: 0.7rem;
    }
    
    .plan-table th,
    .plan-table td {
        padding: 8px 4px;
    }
    
    .plan-table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

/* Extra small devices (phones in portrait, less than 360px) */
@media (max-width: 360px) {
    .carousel-section {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .carousel-prev {
        left: 4px;
    }
    
    .carousel-next {
        right: 4px;
    }
    
    .carousel-dots {
        bottom: 8px;
        gap: 6px;
        padding: 5px 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* ============================================
   Google Reviews Section Styles
   ============================================ */

.reviews-section {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 40px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Reviews Carousel Container */
.reviews-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    padding: 10px 0;
}

.reviews-track:active {
    cursor: grabbing;
}

/* Individual Review Card */
.review-card {
    flex: 0 0 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(20, 184, 166, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(20, 184, 166, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    flex-shrink: 0;
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.review-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
    text-align: left;
    min-height: 80px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    display: block;
    text-align: left;
}

/* Reviews Navigation Buttons */
.reviews-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}

.reviews-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.reviews-prev {
    left: 0;
}

.reviews-next {
    right: 0;
}

/* Responsive Styles for Reviews */
@media (max-width: 1024px) {
    .reviews-carousel-container {
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-carousel-container {
        padding: 0 40px;
    }
    
    .review-card {
        flex: 0 0 280px;
        padding: 24px;
    }
    
    .reviews-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .rating-score {
        font-size: 2rem;
    }
    
    .review-text {
        min-height: 70px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-container {
        padding: 0 35px;
    }
    
    .review-card {
        flex: 0 0 260px;
        padding: 20px;
    }
    
    .reviews-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .reviewer-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .reviewer-info h4 {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        min-height: 60px;
    }
    
    .google-rating-summary {
        flex-direction: column;
        gap: 8px;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .carousel-section {
        height: 100vh;
        min-height: 400px;
        max-height: 100vh;
    }
    
    .carousel-image {
        object-fit: contain;
        object-position: center center;
        background-color: #f0fdfa;
    }
}

/* Portrait Orientation for Mobile */
@media (orientation: portrait) and (max-width: 768px) {
    .carousel-section {
        height: 50vh;
        min-height: 300px;
        max-height: 450px;
    }
    
    .carousel-image {
        object-fit: contain;
        object-position: center center;
        background-color: #f0fdfa;
    }
}

/* Floating WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(18, 140, 126, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    font-size: 2rem;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-button:active {
    transform: scale(0.95);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.9) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3), 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.whatsapp-chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.whatsapp-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.whatsapp-chat-content {
    padding: 20px;
    max-height: 450px;
    overflow-y: auto;
}

.chat-intro {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-align: center;
}

.whatsapp-experts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-expert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-expert-item:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    border-color: #25D366;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.expert-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.expert-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-info strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.expert-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.expert-info span:not(.expert-number) {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-number {
    color: #25D366;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
}

.expert-arrow {
    color: #25D366;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.whatsapp-expert-item:hover .expert-arrow {
    transform: translateX(4px);
}

/* Mobile Responsive for WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat-button {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 30px);
        max-width: 320px;
        bottom: 75px;
        right: 0;
    }
    
    .whatsapp-chat-content {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-chat-button {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    
    .chat-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 20px);
        bottom: 70px;
    }
    
    .whatsapp-chat-header h3 {
        font-size: 1rem;
    }
    
    .expert-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .expert-info strong {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    nav,
    .scroll-to-top,
    .cta-button,
    .carousel-section,
    .whatsapp-chat-widget {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

