/* --- Google Fonts & Variables --- */
:root {
    --primary-color: #1c5232; /* Brand Deep Green */
    --primary-dark: #0f2e1c; /* Darker Green for Gradients */
    
    /* VIBRANT BRIGHT GOLD UPGRADE */
    --secondary-color: #FFD700; 
    --secondary-hover: #E6C200; 
    
    --text-color: #333333;
    --light-bg: #f4f7f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

body { 
    color: var(--text-color); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

html { 
    scroll-behavior: smooth; 
}

/* --- Reusable Classes --- */
.section-title { 
    font-size: 2.5rem; 
    color: var(--primary-color); 
    margin-bottom: 20px; 
    font-weight: 700; 
}
.center { text-align: center; }
.mt-10 { margin-top: 10px; }

/* Standard Buttons */
.btn {
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    padding: 14px 32px; 
    border-radius: 30px;
    text-decoration: none; 
    font-weight: 700; 
    transition: var(--transition);
    cursor: pointer; 
    border: none;
    font-size: 1.05rem;
}
.btn-primary { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffdf33 100%); 
    color: #111; /* Dark text for contrast against bright gold */
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5); 
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8); 
}

/* Premium Light Sweep Shine Animation for Primary Button */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: buttonShine 3s infinite;
}
@keyframes buttonShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-outline { 
    background: transparent; 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
}
.btn-outline:hover { 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: var(--white); 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(28, 82, 50, 0.3);
}

/* Bright Frosted Outline Button for Hero Background */
.btn-outline-light {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid var(--white);
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
    text-shadow: none;
}

.btn-google { 
    background: #ffffff; 
    color: #db4437; 
    border: 2px solid #db4437; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}
.btn-google:hover { 
    background: #db4437; 
    color: #ffffff; 
    transform: translateY(-3px); 
}

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; transition: var(--transition);
    border-bottom: 3px solid var(--secondary-color);
}
.nav-container { 
    max-width: 1200px; margin: 0 auto; padding: 15px 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}
.logo img { height: 50px; }
.nav-links a { 
    text-decoration: none; color: var(--primary-color); 
    margin-left: 25px; font-weight: 600; position: relative; 
    transition: var(--transition); 
}
.nav-links a::after { 
    content: ''; position: absolute; width: 0; height: 3px; 
    background: var(--secondary-color); bottom: -6px; left: 0; 
    transition: var(--transition); 
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--secondary-hover); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* --- BRIGHT VIBRANT HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh; 
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #111; 
}

/* Background Slider */
.hero-bg-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%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1); 
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1); 
}

/* Exactly 60% Visible Background Image (0.4 Darkness Overlay) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40% Black Overlay */
    z-index: 5;
}

/* Glassmorphism Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-top: 40px; 
}

/* Bright Crystal Glass Box */
.hero-glass-box {
    background: rgba(15, 46, 28, 0.3); /* Transparent dark green tint */
    backdrop-filter: blur(4px); /* Very light blur to see the image behind */
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.5); /* Gold outline */
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 950px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Glowing Prestige Badge */
.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: pulseBadge 3s infinite alternate;
}
@keyframes pulseBadge {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8); }
}

/* Pure White Text with Strong Drop Shadow for Contrast */
.hero-glass-box h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    /* Heavy shadow ensures reading on a bright 60% background */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 25px rgba(255,255,255,0.4);
}

/* Simple Solid Red Text without Glow */
.highlight-red {
    color: #FF0000;
    display: inline-block;
}

/* Bright Paragraph Text */
.hero-glass-box p {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto; 
    margin-right: auto;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9); /* Heavy drop shadow */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Animated Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
    transition: var(--transition);
}
.scroll-indicator:hover {
    opacity: 1;
}
.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    position: relative;
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Custom SVG Wave Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    filter: drop-shadow(0 -5px 5px rgba(0,0,0,0.2));
}
.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff; 
}


/* --- About Section --- */
.about { padding: 100px 5%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-list { list-style: none; margin-top: 20px; }
.about-list li { margin-bottom: 10px; font-weight: 600; color: var(--primary-color); }
.about-list i { color: var(--secondary-color); margin-right: 10px; }
.about-video { flex: 1; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.15); cursor: pointer; }
.about-video img { width: 100%; display: block; transition: var(--transition); }
.about-video:hover img { transform: scale(1.05); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #111; font-size: 1.5rem; box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); transition: var(--transition); }
.about-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

/* --- Carousel Globals --- */
.carousel-container { 
    width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 10px 0; 
}
.carousel-track { 
    display: inline-flex; 
    gap: 30px; 
    width: max-content; 
    padding-right: 30px; 
    animation: scrollCarousel 25s linear infinite; 
}
.carousel-track.reverse { 
    animation: scrollCarouselReverse 25s linear infinite; 
}
.carousel-track:hover {
    animation-play-state: paused; 
}

@keyframes scrollCarousel { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}
@keyframes scrollCarouselReverse { 
    0% { transform: translateX(-50%); } 
    100% { transform: translateX(0); } 
}

/* --- Facilities Section --- */
.facilities { padding: 80px 0; background: var(--light-bg); overflow: hidden; }
.facility-card {
    min-width: 420px;
    background: var(--white); border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: var(--transition);
}
.facility-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(28, 82, 50, 0.15); border-bottom: 4px solid var(--secondary-color); }
.facility-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.facility-card h3 { text-align: center; padding: 15px; font-size: 1.2rem; color: var(--primary-color); }

/* --- Our Toppers Section --- */
.toppers { padding: 60px 0; background: var(--white); overflow: hidden; }
.topper-card {
    min-width: 250px;
    background: var(--light-bg); border-radius: 12px; overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06); transition: var(--transition);
    border-bottom: 4px solid var(--secondary-color);
}
.topper-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(28, 82, 50, 0.15); }
.topper-card img { width: 100%; height: 220px; object-fit: cover; display: block; border-bottom: 2px solid #ddd; }
.topper-info { padding: 15px; text-align: center; white-space: normal; }
.topper-info h3 { font-size: 1.1rem; color: var(--primary-color); margin-bottom: 8px; }
.topper-info p { font-size: 0.85rem; color: #555; margin-bottom: 4px; }
.topper-info p strong { color: var(--primary-color); }

/* --- Recent Activities Section --- */
.activities { padding: 60px 0 80px; background: var(--light-bg); overflow: hidden; }
.activity-card {
    min-width: 350px;
    background: var(--white); border-radius: 15px; overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); transition: var(--transition);
}
.activity-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(28, 82, 50, 0.15); border-bottom: 4px solid var(--secondary-color);}
.activity-card img { width: 100%; height: 230px; object-fit: cover; display: block; }

/* --- Vision & Mission Section --- */
.vision-mission { padding: 100px 5%; background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); position: relative; overflow: hidden; }
.vision-mission::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(255, 215, 0, 0.15); border-radius: 50%; filter: blur(80px); }
.vm-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; position: relative; z-index: 2; }
.vm-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 215, 0, 0.3); padding: 50px 40px; border-radius: 20px; color: var(--white); transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.vm-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.1); border: 1px solid var(--secondary-color); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15); }
.vm-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 25px; text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
.vm-card h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--white); }
.vm-card p { font-size: 1rem; color: #e2e8f0; line-height: 1.8; }
.vm-list { list-style: none; }
.vm-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.6; color: #e2e8f0; }
.vm-list li i { color: var(--secondary-color); margin-top: 5px; font-size: 1rem; }

/* --- Gallery Section --- */
.gallery { padding: 80px 5%; background: var(--light-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; padding-top: 20px; }
.gallery-item { border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Video Embed Section --- */
.video-section { padding: 80px 5%; max-width: 1000px; margin: 0 auto; }
.video-container { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 30px rgba(28, 82, 50, 0.2); background: #000; }
.video-cover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; cursor: pointer; transition: opacity 0.4s ease; }
.video-cover img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: var(--transition); }
.video-cover:hover img { opacity: 1; transform: scale(1.02); }
.ui-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(255, 215, 0, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #111; font-size: 2rem; box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); transition: var(--transition); z-index: 3; }
.video-cover:hover .ui-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--secondary-hover); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; z-index: 1; }
.video-cover.hidden { opacity: 0; pointer-events: none; z-index: 0; }

/* --- Testimonials Section --- */
.testimonials { padding: 80px 0; background: var(--light-bg); overflow: hidden; }
.testimonial-card {
    background: var(--white); padding: 30px; border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); position: relative;
    border-top: 5px solid var(--secondary-color); transition: var(--transition);
    width: 350px; 
    white-space: normal; 
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(28, 82, 50, 0.1); }
.quote-icon { font-size: 2rem; color: #eee; position: absolute; top: 20px; right: 20px; }
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-card h4 { color: var(--primary-color); }
.stars { color: var(--secondary-color); margin-top: 5px; }

/* --- Contact Section --- */
.contact-section { display: flex; max-width: 1200px; margin: 80px auto 100px; padding: 0 5%; gap: 50px; align-items: stretch; }
.contact-map { flex: 1; min-height: 450px; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 30px rgba(28, 82, 50, 0.15); }
.contact-form-container { flex: 1; background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(28, 82, 50, 0.1); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; font-size: 1rem; transition: var(--transition); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--secondary-color); outline: none; box-shadow: 0 0 8px rgba(255, 215, 0, 0.3); }

/* --- Footer --- */
footer { background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: var(--white); padding: 60px 5% 20px; border-top: 5px solid var(--secondary-color); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); margin-right: 10px; margin-top: 15px; text-decoration: none; transition: var(--transition); }
.socials a:hover { background: var(--secondary-color); color: #111; transform: translateY(-3px); box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
.footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; color: var(--secondary-color); }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; color: #ddd; }
.footer-col ul li a { color: #ddd; text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 5px; }
.footer-col ul li i { margin-right: 10px; color: var(--secondary-color); }
.footer-bottom { text-align: center; padding-top: 20px; color: #bbb; font-size: 0.9rem; }

/* --- Floating WhatsApp Icon --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    font-size: 30px; box-shadow: 2px 2px 15px rgba(0,0,0,0.2); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); animation: pulse-green 2s infinite;
    text-decoration: none !important; border: none; outline: none;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebe5d; color: white; text-decoration: none; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Promotional Popup Styles --- */
.ad-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 46, 28, 0.85); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.ad-popup-overlay.show { opacity: 1; visibility: visible; }
.ad-popup-content {
    position: relative; width: 90%; max-width: 450px;
    aspect-ratio: 1 / 1; 
    background: var(--white); border-radius: 12px;
    overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: popupBounce 0.5s ease forwards; border: 4px solid var(--secondary-color);
}
.ad-popup-content img { width: 100%; height: 100%; object-fit: cover; display: block; }
.close-popup {
    position: absolute; top: 15px; right: 15px; width: 35px; height: 35px;
    background: rgba(0,0,0,0.6); color: white; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; cursor: pointer; transition: background 0.3s; z-index: 10;
}
.close-popup:hover { background: #ef4444; }

@keyframes popupBounce {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- ABOUT VIDEO MODAL (POPUP) --- */
.video-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); z-index: 3000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.video-modal-overlay.show { opacity: 1; visibility: visible; }
.video-modal-content {
    position: relative; width: 90%; max-width: 900px;
    aspect-ratio: 16 / 9; background: #000; border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: popupBounce 0.4s ease forwards;
    border: 2px solid var(--secondary-color);
}
.video-modal-content iframe { width: 100%; height: 100%; border-radius: 10px; border: none; }
.close-video-modal {
    position: absolute; top: -45px; right: 0; color: #fff; font-size: 40px;
    cursor: pointer; transition: color 0.3s; line-height: 1;
}
.close-video-modal:hover { color: var(--secondary-color); text-shadow: 0 0 10px rgba(255,215,0,0.5); }


/* =========================================================
   OTHER PAGES CSS
   ========================================================= */
.page-header { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: var(--white); padding: 150px 5% 80px; text-align: center; border-bottom: 5px solid var(--secondary-color); }
.page-header h1 { font-size: 3rem; color: var(--secondary-color); margin-bottom: 10px; text-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
.contact-page-content, .privacy-content { max-width: 1200px; margin: 80px auto; padding: 0 5%; }
.contact-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.info-card { text-align: center; background: var(--white); padding: 40px 20px; border-radius: 15px; box-shadow: 0 10px 20px rgba(28, 82, 50, 0.08); transition: var(--transition); }
.info-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(28, 82, 50, 0.15); border-bottom: 4px solid var(--secondary-color); }
.info-card i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 20px; text-shadow: 0 0 10px rgba(255,215,0,0.3); }
.info-card h3 { color: var(--primary-color); margin-bottom: 10px; }
.privacy-content .text-container { background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(28, 82, 50, 0.08); }
.privacy-content h2 { color: var(--primary-color); margin: 30px 0 15px; }

/* =========================================================
   Responsive Design (Media Queries)
   ========================================================= */
@media (max-width: 991px) {
    .hero-section { height: auto; padding: 150px 0 100px; } 
    .hero-glass-box { padding: 40px 30px; }
    .hero-glass-box h1 { font-size: 3.5rem; }
    
    .about, .contact-section, .vm-container { flex-direction: column; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 70px; left: 0; width: 100%; background: var(--white);
        padding: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.1); border-bottom: 4px solid var(--secondary-color);
    }
    .nav-links.active a { margin: 15px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .section-title { font-size: 2rem; }
    
    /* Hero fixes for mobile */
    .hero-glass-box { padding: 30px 20px; border-radius: 20px; }
    .hero-glass-box h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero-glass-box p { font-size: 1rem; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; gap: 15px; padding: 0; }
    .btn { width: 100%; justify-content: center; }
    .custom-shape-divider-bottom svg { height: 40px; }
    .scroll-indicator { display: none; }
    
    .vm-card { padding: 30px 20px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
    .contact-map { min-height: 300px; }
    .privacy-content .text-container { padding: 25px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .facility-card, .activity-card { min-width: 280px; }
    .testimonial-card { width: 280px; } 
    .topper-card { min-width: 240px; } 
    .ad-popup-content { width: 95%; max-width: 350px; }
    .close-video-modal { top: -35px; font-size: 30px; }
}