/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Color Palette */
    --primary: #1E5631;          /* Forest Green */
    --primary-light: #2E8B57;    /* Deep Emerald */
    --primary-dark: #12351E;     /* Dark Forest Green */
    --secondary-blue: #4FC3F7;   /* Sky Blue */
    --secondary-orange: #FF6B35; /* Sunset Orange */
    --accent: #FFD700;           /* Gold */
    --bg-light: #F5F7FA;         /* Light Gray */
    --bg-white: #FFFFFF;         /* White */
    --text-dark: #1E293B;        /* Slate Dark */
    --text-light: #64748B;       /* Slate Light */
    --text-white: #FFFFFF;
    
    /* Transparent overlays */
    --overlay-dark: rgba(15, 23, 42, 0.75);
    --overlay-green: rgba(30, 86, 49, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 15px rgba(79, 195, 247, 0.5);
    --shadow-gold-glow: 0 0 20px rgba(255, 215, 0, 0.4);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Max Widths */
    --container-width: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.preloader-ring {
    width: 100px;
    height: 100px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--accent);
    border-right: 4px solid var(--secondary-blue);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.preloader-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--text-white);
    animation: pulse 2s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.preloader-text span {
    color: var(--accent);
}

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

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.section-bg-dark {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-orange);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-bg-dark .section-title {
    color: var(--text-white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-blue));
    border-radius: var(--radius-full);
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), #ff4e0b);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.5);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(30, 86, 49, 0.85); /* Glassmorphic deep emerald */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--accent);
    animation: pulse 3s infinite;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.nav-link:hover {
    color: var(--accent);
}

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

.nav-link.active {
    color: var(--accent);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 40px;
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.4s;
}

/* Floating adventure icons in hero */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 75%; left: 15%; animation-delay: 1.5s; font-size: 2.5rem; }
.floating-icon:nth-child(3) { top: 30%; right: 12%; animation-delay: 3s; }
.floating-icon:nth-child(4) { top: 70%; right: 8%; animation-delay: 4.5s; font-size: 2.2rem; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
    animation: scrollWheel 1.6s ease-in-out infinite;
}

/* ==========================================================================
   QUICK STATISTICS SECTION
   ========================================================================== */
.stats {
    background-color: var(--primary-dark);
    padding: 60px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--secondary-blue);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(79, 195, 247, 0.15);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.about-feature-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
}

.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.about-image-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.about-badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ACTIVITIES SECTION
   ========================================================================== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(50px);
}

.activity-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.activity-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(30, 86, 49, 0.8) 100%);
}

.activity-icon-floating {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-orange), #ff4e0b);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition-normal);
}

.activity-card:hover .activity-icon-floating {
    transform: rotate(360deg);
}

.activity-content {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.activity-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.activity-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: auto;
}

.activity-link i {
    transition: var(--transition-fast);
}

.activity-card:hover .activity-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   WAVE DIVIDERS
   ========================================================================== */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

.wave-bottom svg {
    transform: rotate(0deg);
}

.wave-divider.wave-white svg path {
    fill: var(--bg-white);
}

.wave-divider.wave-light svg path {
    fill: var(--bg-light);
}

.wave-divider.wave-dark svg path {
    fill: var(--primary-dark);
}

/* ==========================================================================
   PACKAGES SECTION
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.package-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 50px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(50px);
}

.package-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-featured {
    border: 3px solid var(--accent);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.package-featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.package-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), #ffaa00);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.package-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.package-featured .package-icon {
    color: var(--secondary-orange);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.package-price {
    margin-bottom: 30px;
}

.package-price-val {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.package-price-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.package-features-list {
    margin-bottom: 40px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.package-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.package-features-list li i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.package-featured .package-features-list li i {
    color: var(--secondary-orange);
}

.package-btn {
    margin-top: auto;
    width: 100%;
}

/* ==========================================================================
   SCHOOL TRIPS SECTION
   ========================================================================== */
.school-trips {
    background-color: var(--bg-white);
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.school-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.school-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.school-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.school-image-grid.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.school-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.school-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.school-image-wrapper:nth-child(2) {
    transform: translateY(30px);
}

.school-benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.benefit-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-blue);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card-icon {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    margin-bottom: 12px;
}

.benefit-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.benefit-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ==========================================================================
   TEAM BUILDING SECTION
   ========================================================================== */
.team-building-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.team-building-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-orange) 0%, var(--primary-light) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: var(--radius-full);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    transition: all 1s ease;
}

.timeline-item.left {
    left: 0;
    transform: translateX(-50px);
}

.timeline-item.right {
    left: 50%;
    transform: translateX(50px);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-badge {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 4px solid var(--secondary-orange);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    transition: var(--transition-normal);
}

.timeline-item.left .timeline-badge {
    right: -20px;
}

.timeline-item.right .timeline-badge {
    left: -20px;
}

.timeline-item.animate-in .timeline-badge {
    background-color: var(--secondary-orange);
    color: var(--text-white);
}

.timeline-content {
    padding: 30px;
    background-color: var(--bg-white);
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--secondary-orange);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-icon {
    font-size: 1.75rem;
    color: var(--secondary-orange);
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.timeline-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background-color: var(--bg-white);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    font-family: var(--font-heading);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.gallery-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item.hide {
    display: none;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 580px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(30, 86, 49, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--text-white);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent);
}

.gallery-item-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--secondary-blue);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--glass-border);
}

.lightbox-caption {
    color: var(--text-white);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--secondary-orange);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 10px;
    z-index: 10001;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-nav:hover {
    color: var(--accent);
}

/* ==========================================================================
   KAROMBE FALLS DISCOVERY SECTION
   ========================================================================== */
.karombe {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.karombe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 53, 30, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

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

.karombe-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.karombe-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.karombe-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.karombe-title {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.karombe-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.karombe-reveal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.karombe-reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.karombe-card-title {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.karombe-timeline {
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.karombe-timeline.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.karombe-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: var(--accent);
}

.karombe-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.karombe-timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent);
    border: 3px solid var(--primary-dark);
}

.karombe-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.karombe-event-title {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.karombe-event-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--primary-light);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(46, 139, 87, 0.15);
    position: absolute;
    top: 20px;
    left: 40px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

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

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonials-dot.active {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
    margin-top: 40px;
}

.contact-info-panel {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.contact-info-panel.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-title {
    color: var(--text-white);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-detail-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-social-btn:hover {
    background-color: var(--secondary-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Contact Form Grid */
.contact-form-panel {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.contact-form-panel.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-light);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.form-group textarea.form-control {
    height: 150px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.form-group.textarea-group label {
    top: 24px;
    transform: none;
}

/* Floating labels */
.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--bg-white);
    padding: 0 8px;
    border-radius: var(--radius-sm);
}

.contact-submit-btn {
    grid-column: span 2;
    margin-top: 10px;
}

/* Map Section */
.map-container {
    margin-top: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
    position: relative;
    border: 4px solid var(--bg-white);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 24px 24px;
}

.map-placeholder-icon {
    font-size: 3rem;
    color: var(--secondary-orange);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.map-placeholder-btn {
    margin-top: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px 0;
    position: relative;
}

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

.footer-column h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

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

.footer-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

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

.footer-link:hover i {
    transform: translateX(4px);
}

.footer-newsletter-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-full);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    padding: 4px;
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    padding: 10px 18px;
    color: var(--text-white);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background-color: var(--accent);
    color: var(--primary-dark);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--text-white);
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-normal);
}

.whatsapp-widget {
    background-color: #25D366;
    animation: pulseGlow 2s infinite;
}

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

.scroll-top-btn {
    background-color: var(--secondary-orange);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top-btn:hover {
    background-color: #ff4e0b;
    transform: translateY(-3px) scale(1.1);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item.wide {
        grid-column: span 1;
    }
    .gallery-item.tall {
        grid-row: span 1;
        height: 280px;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .school-grid,
    .karombe-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .package-featured {
        transform: none;
    }
    
    .package-featured:hover {
        transform: translateY(-10px);
    }
    
    .about-image-wrapper,
    .school-image-grid,
    .karombe-timeline,
    .contact-form-panel {
        transform: translateY(30px);
    }
    
    .team-building-timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        transform: translateX(30px);
    }
    
    .timeline-item.left .timeline-badge,
    .timeline-item.right .timeline-badge {
        left: 12px;
        right: auto;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .navbar {
        background-color: var(--primary-dark);
        padding: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-badge {
        left: 20px;
        bottom: -10px;
        padding: 15px 20px;
    }
    
    .about-img {
        height: 320px;
    }
    
    .school-image-wrapper img {
        height: 180px;
    }
    
    .school-benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-submit-btn,
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .lightbox-prev {
        left: -40px;
    }
    
    .lightbox-next {
        right: -40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: -20px;
    }
    
    .lightbox-next {
        right: -20px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .fab-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}
