/* --- Google Fonts & Variables --- */
:root {
    --primary-color: #D52B1E; /* Official Canadian Flag Red */
    --primary-dark: #A32117; /* Deep Maple Red */
    
    /* Removed Yellow/Gold. Replaced with crisp neutral and dark tones */
    --accent-dark: #1E293B; /* Slate dark for contrast */
    --accent-light: #F8F9FA; /* Off-white / light grey for depth */
    
    --text-color: #334155;
    --heading-color: #0F172A;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
    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; 
    background-color: var(--white);
}

html { scroll-behavior: smooth; }

/* --- Reusable Classes --- */
.section-title { 
    font-size: 2.5rem; 
    color: var(--heading-color); 
    margin-bottom: 20px; 
    font-weight: 800; 
}
.section-title span {
    color: var(--primary-color);
}
.center { text-align: center; }
.mt-10 { margin-top: 10px; }

/* Standard Buttons - Premium Solid Look */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 8px; /* Sharper, modern corners */
    text-decoration: none; font-weight: 600; 
    transition: var(--transition); cursor: pointer; 
    border: none; font-size: 1.05rem; letter-spacing: 0.5px;
}
.btn-primary { 
    background: var(--primary-color); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(213, 43, 30, 0.3); 
}
.btn-primary:hover { 
    background: var(--primary-dark);
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(213, 43, 30, 0.4); 
}

/* Premium Light Sweep Shine Animation */
.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.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: buttonShine 4s 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: var(--primary-color); color: var(--white); 
    transform: translateY(-3px); box-shadow: 0 5px 15px rgba(213, 43, 30, 0.2);
}

/* Bright Frosted Outline Button for Hero */
.btn-outline-light {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white); color: var(--primary-color);
    transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-google { 
    background: #ffffff; color: var(--accent-dark); border: 2px solid #E2E8F0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}
.btn-google i { color: #db4437; }
.btn-google:hover { 
    border-color: #db4437; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(219, 68, 55, 0.15);
}

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); z-index: 1000; transition: var(--transition);
    border-bottom: 4px solid var(--primary-color); /* Strong red top border */
}
.nav-container { 
    max-width: 1200px; margin: 0 auto; padding: 15px 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}
.logo img { height: 55px; }
.nav-links a { 
    text-decoration: none; color: var(--accent-dark); 
    margin-left: 30px; font-weight: 600; position: relative; 
    transition: var(--transition); padding-bottom: 5px;
}
.nav-links a::after { 
    content: ''; position: absolute; width: 0; height: 3px; 
    background: var(--primary-color); bottom: 0; left: 0; 
    transition: var(--transition); 
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* --- CANADIAN THEMED HERO SECTION --- */
.hero-section {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background-color: var(--accent-dark); 
}

.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.05); transition: opacity 1.5s ease-in-out, transform 8s linear; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; transform: scale(1); }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%); z-index: 5;
}

.hero-content-wrapper {
    position: relative; z-index: 10; width: 100%;
    display: flex; justify-content: center; padding: 0 20px;
}

/* Minimalist Clean Box */
.hero-glass-box {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px;
    padding: 70px 50px; max-width: 900px; text-align: center;
}

/* Maple Leaf Red Badge */
.hero-badge {
    display: inline-block; background: rgba(213, 43, 30, 0.15);
    color: #FF8A8A; padding: 8px 25px; border-radius: 30px;
    font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 25px; border: 1px solid rgba(213, 43, 30, 0.5);
}
.hero-badge i { color: var(--primary-color); margin: 0 5px; }

.hero-glass-box h1 {
    font-size: 4.5rem; font-weight: 800; line-height: 1.15;
    margin-bottom: 20px; color: var(--white);
}
.highlight-red { color: var(--primary-color); }

.hero-glass-box p {
    font-size: 1.2rem; color: #E2E8F0; font-weight: 400;
    line-height: 1.8; margin-bottom: 40px; max-width: 700px; margin-inline: auto;
}

.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Custom SVG Wave - White transition */
.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: 70px;
}
.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: 60px; }
.about-text { flex: 1; }
.about-text p { margin-bottom: 15px; font-size: 1.1rem; }
.about-list { list-style: none; margin-top: 25px; }
.about-list li { margin-bottom: 12px; font-weight: 600; color: var(--heading-color); display: flex; align-items: center; }
.about-list i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; }
.about-video { flex: 1; position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); cursor: pointer; border: 1px solid #E2E8F0; }
.about-video img { width: 100%; display: block; transition: transform 0.5s ease; }
.about-video:hover img { transform: scale(1.05); }
.play-btn { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    width: 80px; height: 80px; background: rgba(255,255,255,0.95); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    color: var(--primary-color); font-size: 1.8rem; padding-left: 5px; /* Center icon visual */
    box-shadow: 0 0 30px rgba(213, 43, 30, 0.4); transition: var(--transition); 
}
.about-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--primary-color); color: var(--white); }

/* --- Carousel Globals --- */
.carousel-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 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: 90px 0; background: var(--light-bg); border-top: 1px solid #E2E8F0; }
.facility-card {
    min-width: 400px; background: var(--white); border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition);
    border: 1px solid #E2E8F0; border-bottom: 4px solid transparent;
}
.facility-card:hover { 
    transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    border-bottom: 4px solid var(--primary-color); 
}
.facility-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.facility-card h3 { text-align: center; padding: 20px; font-size: 1.25rem; color: var(--heading-color); }

/* --- Our Toppers Section --- */
.toppers { padding: 90px 0; background: var(--white); overflow: hidden; }
.topper-card {
    min-width: 260px; background: var(--light-bg); border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); 
    border: 1px solid #E2E8F0; border-top: 4px solid var(--primary-color);
}
.topper-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(213, 43, 30, 0.1); }
.topper-card img { width: 100%; height: 240px; object-fit: cover; display: block; border-bottom: 1px solid #E2E8F0; }
.topper-info { padding: 20px; text-align: center; white-space: normal; }
.topper-info h3 { font-size: 1.2rem; color: var(--heading-color); margin-bottom: 8px; font-weight: 700; }
.topper-info p { font-size: 0.9rem; color: var(--text-color); margin-bottom: 4px; }
.topper-info p strong { color: var(--primary-color); }

/* --- Recent Activities Section --- */
.activities { padding: 80px 0 100px; background: var(--light-bg); overflow: hidden; border-top: 1px solid #E2E8F0;}
.activity-card {
    min-width: 350px; background: var(--white); border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid #E2E8F0;
}
.activity-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(213, 43, 30, 0.1); border-color: var(--primary-color); }
.activity-card img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* --- Vision & Mission Section --- */
.vision-mission { 
    padding: 100px 5%; background: var(--accent-dark); 
    position: relative; overflow: hidden; 
}
/* Abstract Canadian Red Background Accents */
.vision-mission::before { 
    content: ''; position: absolute; top: -100px; right: -100px; 
    width: 500px; height: 500px; background: rgba(213, 43, 30, 0.15); 
    border-radius: 50%; filter: blur(100px); 
}
.vision-mission::after { 
    content: ''; position: absolute; bottom: -100px; left: -100px; 
    width: 400px; height: 400px; background: rgba(255, 255, 255, 0.05); 
    border-radius: 50%; filter: blur(80px); 
}
.vm-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 40px; position: relative; z-index: 2; }
.vm-card { 
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 50px; border-radius: 12px; color: var(--white); transition: var(--transition); 
}
.vm-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.06); border-color: var(--primary-color); }
.vm-icon { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 25px; }
.vm-card h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--white); }
.vm-card p { font-size: 1.05rem; color: #CBD5E1; line-height: 1.8; }
.vm-list { list-style: none; margin-top: 20px;}
.vm-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.6; color: #CBD5E1; }
.vm-list li i { color: var(--primary-color); margin-top: 6px; font-size: 1rem; }

/* --- Gallery Section --- */
.gallery { padding: 90px 5%; background: var(--white); }
.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: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); cursor: pointer; aspect-ratio: 4 / 3; position: relative;}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Video Embed Section --- */
.video-section { padding: 90px 5%; max-width: 1000px; margin: 0 auto; }
.video-container { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); background: #000; border: 1px solid #E2E8F0; }
.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: transform 0.6s ease; }
.video-cover:hover img { opacity: 1; transform: scale(1.03); }
.ui-play-btn { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    width: 80px; height: 80px; background: rgba(255, 255, 255, 0.95); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; color: var(--primary-color); 
    font-size: 2rem; padding-left: 5px; box-shadow: 0 0 30px rgba(213, 43, 30, 0.5); transition: var(--transition); z-index: 3; 
}
.video-cover:hover .ui-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--primary-color); color: var(--white); }
.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: 90px 0; background: var(--light-bg); overflow: hidden; border-top: 1px solid #E2E8F0;}
.testimonial-card {
    background: var(--white); padding: 40px 30px; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: relative;
    border: 1px solid #E2E8F0; transition: var(--transition);
    width: 380px; white-space: normal; 
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: var(--primary-color); }
.quote-icon { font-size: 3rem; color: rgba(213, 43, 30, 0.1); position: absolute; top: 20px; right: 25px; }
.testimonial-card p { font-style: italic; color: var(--text-color); margin-bottom: 25px; position: relative; z-index: 1; font-size: 1.05rem; }
.testimonial-card h4 { color: var(--heading-color); font-weight: 700;}
.stars { color: var(--primary-color); margin-top: 5px; font-size: 0.9rem;}

/* --- Contact Section --- */
.contact-section { display: flex; max-width: 1200px; margin: 90px auto 100px; padding: 0 5%; gap: 50px; align-items: stretch; }
.contact-map { flex: 1; min-height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid #E2E8F0; }
.contact-form-container { flex: 1; background: var(--white); padding: 50px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea { 
    width: 100%; padding: 16px; border: 1px solid #CBD5E1; border-radius: 8px; 
    font-size: 1rem; transition: var(--transition); background: var(--light-bg);
}
.contact-form input:focus, .contact-form textarea:focus { 
    border-color: var(--primary-color); outline: none; background: var(--white); box-shadow: 0 0 0 4px rgba(213, 43, 30, 0.1); 
}

/* --- Footer --- */
footer { background: var(--accent-dark); color: #E2E8F0; padding: 70px 5% 20px; border-top: 4px solid var(--primary-color); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; 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; filter: brightness(0) invert(1); /* Makes logo white */ }
.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(--primary-color); transform: translateY(-3px); }
.footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--white); font-weight: 700; display: inline-block; position: relative; padding-bottom: 8px;}
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--primary-color); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #CBD5E1; text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-col ul li i { margin-right: 12px; color: var(--primary-color); width: 15px; text-align: center;}
.footer-bottom { text-align: center; padding-top: 25px; color: #94A3B8; font-size: 0.95rem; }

/* --- 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: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); text-decoration: none !important; 
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebe5d; color: white;}

/* --- Promotional Popup Styles --- */
.ad-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(5px); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s 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 25px 50px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--primary-color);
}
.ad-popup-overlay.show .ad-popup-content { transform: scale(1); }
.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: var(--white); color: var(--accent-dark); font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; cursor: pointer; transition: var(--transition); z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.close-popup:hover { background: var(--primary-color); color: var(--white); }

/* --- ABOUT VIDEO MODAL (POPUP) --- */
.video-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.95); 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: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
}
.video-modal-overlay.show .video-modal-content { transform: scale(1); }
.video-modal-content iframe { width: 100%; height: 100%; border-radius: 10px; border: none; }
.close-video-modal {
    position: absolute; top: -50px; right: 0; color: #fff; font-size: 35px;
    cursor: pointer; transition: color 0.3s; line-height: 1;
}
.close-video-modal:hover { color: var(--primary-color); }


/* =========================================================
   OTHER PAGES CSS
   ========================================================= */
.page-header { background: var(--light-bg); color: var(--heading-color); padding: 160px 5% 80px; text-align: center; border-bottom: 1px solid #E2E8F0; }
.page-header h1 { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 15px; font-weight: 800;}
.page-header p { font-size: 1.2rem; color: var(--text-color); max-width: 600px; margin: 0 auto;}

.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(280px, 1fr)); gap: 30px; }
.info-card { text-align: center; background: var(--white); padding: 50px 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid #E2E8F0; }
.info-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(213, 43, 30, 0.08); border-color: var(--primary-color); }
.info-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.info-card h3 { color: var(--heading-color); margin-bottom: 10px; font-size: 1.3rem;}
.info-card p { color: var(--text-color); }

.privacy-content .text-container { background: var(--white); padding: 60px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; }
.privacy-content h2 { color: var(--heading-color); margin: 35px 0 15px; font-size: 1.8rem; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { color: var(--text-color); margin-bottom: 15px; font-size: 1.05rem; }

/* =========================================================
   Responsive Design (Media Queries)
   ========================================================= */
@media (max-width: 991px) {
    .hero-section { height: auto; padding: 150px 0 100px; } 
    .hero-glass-box { padding: 50px 40px; }
    .hero-glass-box h1 { font-size: 3.5rem; }
    
    .about, .contact-section, .vm-container { flex-direction: column; gap: 40px;}
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 89px; left: 0; width: 100%; background: var(--white);
        padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-bottom: 4px solid var(--primary-color);
    }
    .nav-links.active a { margin: 15px 0; padding-bottom: 0;}
    .nav-links.active a::after { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .section-title { font-size: 2.2rem; }
    
    .hero-glass-box { padding: 40px 20px; border-radius: 12px; }
    .hero-glass-box h1 { font-size: 2.5rem; margin-bottom: 15px; }
    .hero-glass-box p { font-size: 1.05rem; 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; }
    
    .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: 30px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .facility-card, .activity-card { min-width: 280px; }
    .testimonial-card { width: 300px; padding: 30px 20px;} 
    .topper-card { min-width: 250px; } 
    .ad-popup-content { width: 95%; max-width: 350px; }
    .close-video-modal { top: -40px; font-size: 30px; }
    .page-header { padding: 130px 5% 60px; }
    .page-header h1 { font-size: 2.8rem; }
}