/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0A1C2D;         /* Deep Ocean Navy */
    --primary-light: #162C42;   /* Medium Navy for card gradients */
    --accent: #FF7A00;          /* Team One Bright Orange */
    --accent-dark: #E65100;     /* Team One Dark Orange */
    --lime: #00ADEF;            /* Team One Light Blue */
    --lime-dark: #0087D6;       /* Team One Darker Blue */
    --light-bg: #F4F7FA;        /* Cold white background */
    --white: #FFFFFF;
    --text-dark: #1E2833;       /* Main text */
    --text-muted: #64758A;     /* Muted/grey text */
    --text-light: #E2E8F0;      /* Light gray for dark backgrounds */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Layout & Styling Tokens */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #050E17;
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 3;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

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

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-divider {
    height: 4px;
    width: 60px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: rgba(5, 14, 23, 0.92);
}

.text-light {
    color: var(--text-light);
}

.text-light h2, 
.text-light h3, 
.text-light h4 {
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-accent {
    background-color: var(--lime);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 254, 139, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Animation triggers */
.pulse-btn {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(210, 254, 139, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(210, 254, 139, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(210, 254, 139, 0);
    }
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(10, 28, 45, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(3deg);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Nav Menu */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.mobile-nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
section {
    position: relative;
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    color: var(--white);
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.42) contrast(1.1);
    transform: scale(1.05);
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 14, 23, 0.78) 0%, rgba(5, 14, 23, 0.88) 100%);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Aurora UI ambient glows */
.hero-overlay::before,
.hero-overlay::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform;
}

.hero-overlay::before {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -15%;
    right: -15%;
    animation: aurora-orange 16s ease-in-out infinite alternate;
}

.hero-overlay::after {
    background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
    bottom: -15%;
    left: -15%;
    animation: aurora-blue 20s ease-in-out infinite alternate;
}

@keyframes aurora-orange {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-150px, 100px) scale(1.2);
    }
}

@keyframes aurora-blue {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(180px, -80px) scale(1.3);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    background: rgba(5, 14, 23, 0.65);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-line-1 {
    white-space: nowrap;
    display: inline-block;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

/* Override general text gradient to use high-contrast orange to gold/yellow */
.text-gradient {
    background: linear-gradient(135deg, #FF7A00 0%, #FFD600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 32px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
    font-size: 1.2rem;
    color: var(--accent);
}

/* Glass card on Hero */
.hero-card {
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--primary);
    border: 1px solid rgba(0, 173, 239, 0.25);
}

.hero-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    font-weight: 800;
}

.hero-card p {
    color: #2D3748;
    font-size: 0.95rem;
    font-weight: 500;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(10, 28, 45, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-lbl {
    font-size: 0.75rem;
    color: #4A5568;
    margin-top: 4px;
    font-weight: 600;
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */
.values-section {
    padding: 140px 0 100px;
    background: linear-gradient(to bottom, rgba(5, 14, 23, 0) 0%, rgba(5, 14, 23, 0.92) 80%, rgba(5, 14, 23, 0.92) 100%);
}

.values-section .section-title {
    color: var(--white);
}

.values-section .container {
    max-width: 1400px;
}

.values-grid, .values-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-card {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius-md);
    padding: 44px 28px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    background-color: rgba(0, 163, 255, 0.06);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 4px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--accent);
    color: var(--white);
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT / FACILITIES SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background: rgba(5, 14, 23, 0.90);
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

/* Image stacking */
.about-image-wrapper {
    position: relative;
    height: 600px;
}

.about-img {
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.main-img {
    width: 80%;
    height: 420px;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-img {
    width: 60%;
    height: 260px;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 6px solid var(--white);
}

.about-floating-card {
    position: absolute;
    bottom: 120px;
    left: 20px;
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
}

.card-large-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lime);
    display: block;
    line-height: 1;
}

.card-small-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Facility text items */
.about-info .section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.facility-item {
    display: flex;
    gap: 20px;
}

.facility-icon {
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--primary);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white) !important;
}

.facility-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ==========================================================================
   PROGRAMS SECTION
   ========================================================================== */
.programs-section {
    padding: 100px 0;
    background: rgba(5, 14, 23, 0.92);
}

.programs-section .section-title {
    color: var(--white);
}

.programs-tabs-container {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Tab navigation header */
.tabs-nav {
    display: flex;
    background-color: var(--light-bg);
    border-bottom: 1px solid #E2E8F0;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(0, 163, 255, 0.03);
}

.tab-btn.active {
    color: var(--accent);
    background-color: var(--white);
    border-bottom: 3px solid var(--accent);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* Tab panes contents */
.tabs-content {
    padding: 48px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: tabFadeIn 0.5s ease;
}

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

.tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.program-tag {
    display: inline-block;
    background-color: rgba(0, 163, 255, 0.08);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tab-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.tab-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.program-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.program-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 500;
}

.program-points li i {
    color: var(--accent);
    margin-top: 4px;
}

.tab-image img {
    border-radius: var(--border-radius-md);
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

/* Trust Index Panel */
.trust-index-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    border-radius: var(--border-radius-md);
    margin-bottom: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.google-trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.google-trust-logo i {
    color: var(--white);
    background-color: #DB4437; /* Google Red */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

.stars-row {
    display: flex;
    gap: 4px;
    color: #F39C12; /* Star Gold */
    font-size: 1rem;
}

.trust-score {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.score-max {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.7;
}

.trust-badge-middle {
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 48px;
}

.trust-shield {
    font-size: 2.5rem;
    color: #2ECC71; /* Trust Green */
}

.trust-status-text h3 {
    font-size: 1.4rem;
    color: #2ECC71;
    font-weight: 900;
    letter-spacing: 1px;
}

.trust-status-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Reviews Marquee & Cards */
.reviews-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.reviews-marquee-container:hover .reviews-marquee-track {
    animation-play-state: paused;
}

.reviews-marquee-track .testimonial-card {
    width: 350px;
    flex-shrink: 0;
}

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

.testimonial-card {
    border-radius: var(--border-radius-md);
    padding: 28px;
    background-color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.local-guide {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.local-guide i {
    font-size: 0.65rem;
}

.google-icon-card {
    display: none !important;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #F39C12;
    font-size: 0.85rem;
}

.review-date {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.5;
}

.test-text {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   CALL TO ACTION (TRIAL) SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1519315901367-f34ff9154487?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 28, 45, 0.95), rgba(10, 28, 45, 0.85));
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-info h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-info p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background: rgba(5, 14, 23, 0.95);
}

.faq-section .section-title {
    color: var(--white);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    cursor: pointer;
}

.faq-icon {
    font-size: 1rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.faq-content strong,
.faq-content b {
    color: #FFFFFF !important;
    font-weight: 700;
}

.faq-content span,
.faq-content p,
.faq-content li {
    color: rgba(255, 255, 255, 0.88) !important;
}

.faq-content p {
    padding-bottom: 24px;
    font-size: 0.95rem;
}

/* Active FAQ states */
.faq-item.active {
    border-color: var(--accent);
}

.faq-item.active .faq-trigger {
    color: var(--accent);
}

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

.faq-item.active .faq-content {
    max-height: 500px; /* arbitrary height to slide down */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 60px 0 100px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
    width: 100%;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 20px;
    border-radius: 16px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 122, 0, 0.03);
}

.contact-info .social-links {
    justify-content: center;
}

.detail-icon {
    font-size: 1.4rem;
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-item p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-detail-item a:hover {
    color: var(--accent);
}

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

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Form Card */
.contact-card {
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.contact-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background-color: var(--primary);
    color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    position: relative;
    z-index: 10;
    background-color: #050E17;
    color: var(--text-muted);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    margin-top: auto;
}

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

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

/* Floating WhatsApp bubble */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

/* About Us Team Gallery Slideshow */
.team-slideshow {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.team-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Global Prevent Horizontal Scroll */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-headline {
        font-size: 3.0rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.8px !important;
    }
    
    .hero-main-card {
        padding: 36px 24px !important;
    }
    
    .values-grid, .values-grid-5 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .about-grid, .contact-container, .tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    /* Hide top-left header logo on phone */
    .header .logo {
        display: none !important;
    }

    .header-actions {
        margin-left: auto;
    }

    /* Mobile Menu Overlay */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(5, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        transition: var(--transition);
        padding: 40px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        overflow-y: auto;
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .btn-nav {
        display: none;
    }
    
    /* Hero Layout */
    .hero {
        min-height: auto !important;
        padding-top: 85px !important;
        padding-bottom: 30px !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-headline {
        font-size: 3.1rem !important;
        line-height: 1.08 !important;
        letter-spacing: -0.8px !important;
        width: 100%;
    }

    .hero-emblem-badge {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
    }

    .hero-title-badge-wrap {
        gap: 8px !important;
        width: 100% !important;
    }

    .page-title {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    /* Program Tabs Navigation Scrollable */
    .tabs-nav {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    
    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 12px 18px;
        flex: 0 0 auto;
        font-size: 0.9rem;
    }
    
    .tabs-content {
        padding: 20px 16px;
    }
    
    .tab-image img {
        height: 260px;
    }
    
    /* Core Philosophy & Values 5-Card Stack */
    .values-grid, .values-grid-5 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* About Us Story Responsive Slideshow Logic for Mobile */
    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .about-story-image {
        order: -1 !important;
        width: 100% !important;
    }

    .about-story-text {
        order: 1 !important;
    }

    .team-slideshow {
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        min-height: unset !important;
    }

    /* Facility Feature Cards */
    .facility-features-grid, .pool-specs-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .reviews-marquee-track .testimonial-card {
        width: 290px;
        padding: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Modal Responsive fit */
    .modal-content {
        width: 92vw !important;
        padding: 24px 18px !important;
        border-radius: 20px !important;
        max-height: 88vh !important;
        overflow-y: auto !important;
    }
}

/* Mobile Phones Breakpoint (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .header {
        height: 72px !important;
    }

    .nav {
        top: 72px !important;
        height: calc(100vh - 72px) !important;
        padding: 30px 18px !important;
    }

    .hero {
        min-height: auto !important;
        padding-top: 80px !important;
        padding-bottom: 24px !important;
    }

    .hero-split-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hero-title-badge-wrap {
        gap: 14px !important;
        margin-bottom: 14px !important;
        width: 100% !important;
        align-items: center !important;
    }

    .hero-emblem-badge {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
    }

    .hero-headline {
        font-size: clamp(2.35rem, 11vw, 3.15rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.8px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .hero-line-1 {
        white-space: nowrap !important;
        display: inline-block !important;
        font-size: inherit !important;
    }

    .gradient-animated-word {
        display: inline-block !important;
        white-space: nowrap !important;
        font-size: inherit !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 18px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        min-height: 46px !important;
    }

    .hero-main-card {
        padding: 20px 16px !important;
        border-radius: 20px !important;
    }

    .hero-main-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .hero-tagline-badge {
        margin-bottom: 12px !important;
        padding: 5px 14px !important;
        font-size: 0.78rem !important;
    }

    @media (max-width: 414px) {
        .hero-headline {
            font-size: 2.85rem !important;
            letter-spacing: -0.8px !important;
        }

        .hero-emblem-badge {
            width: 54px !important;
            height: 54px !important;
            min-width: 54px !important;
        }

        .hero-title-badge-wrap {
            gap: 12px !important;
        }
    }

    @media (max-width: 390px) {
        .hero-headline {
            font-size: 2.65rem !important;
            letter-spacing: -0.7px !important;
        }

        .hero-emblem-badge {
            width: 52px !important;
            height: 52px !important;
            min-width: 52px !important;
        }

        .hero-title-badge-wrap {
            gap: 12px !important;
        }
    }

    @media (max-width: 360px) {
        .container {
            padding-left: 8px !important;
            padding-right: 8px !important;
        }

        .hero-headline {
            font-size: 2.35rem !important;
            letter-spacing: -0.6px !important;
        }

        .hero-emblem-badge {
            width: 46px !important;
            height: 46px !important;
            min-width: 46px !important;
        }

        .hero-title-badge-wrap {
            gap: 10px !important;
        }
    }

    .page-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }

    .hero-subtitle, .section-subtitle {
        font-size: 0.82rem !important;
        letter-spacing: 1.2px !important;
    }

    .hero-description {
        font-size: 0.98rem !important;
        line-height: 1.55 !important;
    }

    .glass-panel {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .about-story-grid, div[style*="grid-template-columns: 1.2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .facility-slideshow {
        height: 250px !important;
    }

    .slide-nav {
        width: 36px !important;
        height: 36px !important;
    }

    .whatsapp-float {
        bottom: 20px !important;
        right: 16px !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 1.6rem !important;
    }
}

/* ==========================================================================
   SCROLL REVEAL & ENTRANCE ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Delay Classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hero Entrance Animations on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-card {
    animation: fadeInScale 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Programs Overview Grid on Home Page */
.programs-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.program-overview-card {
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.program-overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.program-overview-card .card-icon {
    font-size: 2.2rem;
    color: var(--accent);
}

.program-overview-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    margin: 0;
}

.program-overview-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    flex-grow: 1;
    margin: 0;
}

.program-overview-card .link-btn {
    color: var(--lime);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.program-overview-card .link-btn:hover {
    color: var(--white);
    gap: 10px;
}

/* ==========================================================================
   FACILITY SLIDESHOW
   ========================================================================== */
.facility-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slideshow-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 14, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slide-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(5, 14, 23, 0.4);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--accent);
}

/* Headline Gradient Word Rotator Animation */
.gradient-animated-word {
    background: linear-gradient(135deg, #00F0FF 0%, #FFFFFF 35%, #FF9900 70%, #00F0FF 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

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

.gradient-animated-word.swap-out {
    opacity: 0;
    transform: translateY(-12px) scale(0.94);
}

.gradient-animated-word.swap-in {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
}
