/* --- CSS RESET & VARIABLES --- */
:root {
    --primary: hsl(348, 83%, 62%); /* Coral Red */
    --primary-light: hsl(348, 83%, 72%);
    --secondary: hsl(43, 100%, 55%); /* Warm Yellow */
    --tertiary: hsl(220, 80%, 55%); /* Vibrant Blue */
    --quaternary: hsl(150, 60%, 45%); /* Emerald */
    --text-dark: hsl(220, 30%, 20%);
    --text-muted: hsl(220, 15%, 45%);
    --bg-white: hsl(0, 0%, 100%);
    --bg-light: hsl(210, 30%, 98%);
    --bg-subtle: hsl(210, 20%, 95%);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-btn: 9999px; /* Only buttons use radius */
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

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

/* --- TYPOGRAPHY & HEADINGS --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    z-index: -1;
    opacity: 0.5;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 14px rgba(249, 105, 129, 0.4);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 105, 129, 0.6);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

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

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--glass-border);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.highlight {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- HERO SECTION WITH SLIDER --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding-top: 80px; /* Push content below fixed navbar on all screens */
}

.hero-content {
    max-width: 650px;
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.highlight-text {
    color: transparent;
    background: linear-gradient(90deg, var(--primary) 0%, var(--tertiary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

/* HERO MOBILE RESPONSIVE - Direct Fix */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
    }
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 16px;
    }
    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 24px;
    }
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
    }
}

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

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
    .hero-content h1 {
        font-size: 1.7rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .slider-controls {
        bottom: 20px;
        right: 10px;
    }
    .slider-controls button {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

.slider-controls {
    position: absolute;
    bottom: 120px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: var(--radius-btn);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
}

/* --- QUICK ENQUIRY SECTION --- */
.quick-enquiry {
    padding: 50px 0;
    position: relative;
    z-index: 20;
    margin-top: -50px; /* Overlap hero slightly */
}

.enquiry-box {
    background: var(--bg-white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-subtle);
}

.enquiry-info {
    flex: 1;
}

.enquiry-info .logo {
    margin-bottom: 15px;
}

.enquiry-about {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.enquiry-form-wrapper {
    flex: 1.2;
    background: #000000;
    padding: 25px;
    border-radius: var(--radius-lg);
}

.enquiry-form-wrapper h3 {
    margin-bottom: 20px;
    color: white;
}

.form-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.enquiry-form-wrapper input,
.enquiry-form-wrapper select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-white);
}

.enquiry-form-wrapper input:focus,
.enquiry-form-wrapper select:focus {
    border-color: var(--tertiary);
}

.enquiry-form-wrapper button {
    width: 100%;
}

/* --- FEATURES BAR --- */
.features-bar {
    background-color: var(--bg-white);
    padding: 40px 0;
}

.feature-bar-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.f-item i {
    font-size: 2.5rem;
    color: var(--tertiary);
}

.f-item:nth-child(2) i { color: var(--secondary); }
.f-item:nth-child(3) i { color: var(--quaternary); }
.f-item:nth-child(4) i { color: var(--primary); }

.f-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.f-item p {
    font-size: 0.875rem;
    line-height: 1.2;
}

/* --- ABOUT SECTION --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: white;
    padding: 20px 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 4px solid var(--bg-white);
    animation: float 4s ease-in-out infinite;
}

.experience-badge h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.experience-badge p {
    font-weight: 600;
    font-size: 0.9rem;
}

.about-text h3 {
    color: var(--tertiary);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-list i {
    color: var(--quaternary);
    background: rgba(16, 185, 129, 0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.875rem;
}

/* --- WHY CHOOSE US --- */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-radius: 20px;
    border: none;
    color: white;
}

.feature-card:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.feature-card:nth-child(2) { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.feature-card:nth-child(3) { background: linear-gradient(135deg, #00cdac 0%, #8ddad5 100%); }
.feature-card:nth-child(4) { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.feature-card:nth-child(5) { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.feature-card:nth-child(6) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

.feature-card h3, .feature-card p {
    color: white !important;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    color: white !important;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background-color: white !important;
    color: var(--primary) !important;
}

.feature-card:nth-child(1):hover .icon-wrapper { color: #667eea !important; }
.feature-card:nth-child(2):hover .icon-wrapper { color: #ff9a9e !important; }
.feature-card:nth-child(3):hover .icon-wrapper { color: #00cdac !important; }
.feature-card:nth-child(4):hover .icon-wrapper { color: #fda085 !important; }
.feature-card:nth-child(5):hover .icon-wrapper { color: #a18cd1 !important; }
.feature-card:nth-child(6):hover .icon-wrapper { color: #f093fb !important; }

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* --- PROGRAMS --- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.program-img {
    position: relative;
    overflow: hidden;
}

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

.age-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.875rem;
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    margin-bottom: 12px;
}

.program-content p {
    margin-bottom: 20px;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tertiary);
    font-weight: 700;
}

.link-btn:hover {
    color: var(--primary);
    gap: 12px;
}

/* --- ANIMATED GALLERY LAYOUTS --- */
.gallery-category {
    padding: 70px 0;
    overflow: hidden; /* Prevent marquee scrollbar */
}

/* 1. Cultural - Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

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

.marquee-item {
    display: inline-block;
    width: 300px;
    height: 200px;
    margin-right: 20px;
    transition: transform 0.3s;
    cursor: zoom-in;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-item:hover {
    transform: scale(1.05);
}

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

/* 2. Activities - Masonry Grid */
.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    transition: transform 0.4s;
    cursor: zoom-in;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.masonry-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: unset !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 10px 0 20px 0;
        scrollbar-width: none;
        align-items: flex-start;
    }
    .masonry-grid::-webkit-scrollbar { display: none; }
    .masonry-item {
        flex: 0 0 auto !important;
        width: 200px !important;
        min-width: 200px !important;
        break-inside: unset !important;
        margin-bottom: 0;
    }
    .masonry-item img {
        width: 200px;
        height: 150px;
        object-fit: cover;
    }
}

/* 3. Dining - Hover Accordion */
.accordion-gallery {
    display: flex;
    height: 400px;
    width: 100%;
    gap: 10px;
}

.accordion-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.accordion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.accordion-item:hover {
    flex: 4;
}

.accordion-item:hover img {
    transform: scale(1.05);
}

/* 4. Programmes - Polaroid Stack */
.polaroid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 20px;
}

.polaroid-item {
    background: white;
    padding: 15px 15px 40px 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s, z-index 0s;
    z-index: 1;
    position: relative;
    cursor: zoom-in;
    /* Random tilts using pseudo selectors for a scattered look */
}

.polaroid-item:nth-child(even) {
    transform: rotate(4deg);
}

.polaroid-item:nth-child(odd) {
    transform: rotate(-3deg);
}

.polaroid-item:nth-child(3n) {
    transform: rotate(6deg);
}

.polaroid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #eee;
}

.polaroid-item:hover {
    transform: rotate(0deg) scale(1.15) translateY(-10px);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

/* Lightbox styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Lightbox Mobile Fix */
@media (max-width: 768px) {
    .lightbox-img {
        max-width: 95%;
        max-height: 80vh;
        border: 3px solid white;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        background: rgba(0,0,0,0.5);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
}

/* --- CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    padding: 50px;
}

/* Contact Section Mobile Fix */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info {
        padding: 30px 20px;
    }
    .contact-map {
        min-height: 280px;
        height: 280px;
    }
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    .info-item i {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .info-item p {
        font-size: 0.85rem;
        word-break: break-word;
    }
}

.contact-info > p {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.95rem;
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding-top: 80px;
    border-top: 1px solid var(--bg-subtle);
}

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

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

.footer-about p {
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--tertiary);
    margin-bottom: 25px;
    font-size: 1.25rem;
}

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

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--bg-subtle);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.call-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}


/* --- ANIMATIONS & UTILS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Hero Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content-wrapper { padding-left: 0; }
    .enquiry-box { flex-direction: column; text-align: center; }
    .enquiry-form { width: 100%; flex-wrap: wrap; }
    .about-container { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 40px; }
    .feature-bar-container { flex-wrap: wrap; }
    .f-item { min-width: calc(50% - 20px); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map { min-height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: var(--shadow-lg);
        clip-path: circle(0% at top right);
        transition: all 0.5s ease-in-out;
        pointer-events: none;
        visibility: hidden;
        z-index: 10000;
        gap: 20px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: inline-block;
        font-size: 1.2rem;
    }

    .nav-links.active {
        clip-path: circle(150% at top right);
        pointer-events: auto;
        visibility: visible;
    }

    .hamburger { 
        display: block; 
        z-index: 10001; 
        position: relative;
        pointer-events: auto;
    }
    .hero { 
        text-align: center; 
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    .hero-content { 
        margin: 0 auto; 
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-buttons { 
        justify-content: center; 
        align-items: center;
        width: 100%;
    }
    .slider-controls { bottom: 80px; right: 20px; }
    .f-item { min-width: 100%; }
    .enquiry-form input, .enquiry-form select, .enquiry-form button { width: 100%; flex: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
}


/* Gradient Backgrounds */
#cultural, #dining {
    background: linear-gradient(135deg, rgba(249, 105, 129, 0.95) 0%, rgba(200, 50, 80, 0.95) 100%);
    color: white;
}

#cultural .section-title, #dining .section-title {
    color: black;
}

#cultural .section-title span, #dining .section-title span {
    color: white;
}

#cultural .section-subtitle, #dining .section-subtitle {
    color: white;
}

/* ============================================
   COMPLETE MOBILE RESPONSIVE OVERHAUL
   ============================================ */

/* --- 1. GLOBAL FIXES --- */
html, body {
    overflow-x: hidden !important;
    width: 100%;
}

/* Ensure navbar is always fixed & on top */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
}

.nav-links {
    z-index: 10000 !important;
}

/* Reduce section padding on mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* --- 2. HERO SECTION --- */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .hero-content-wrapper {
        z-index: 100;
        position: relative;
        pointer-events: auto;
        width: 100%;
        padding: 0 20px 60px 20px;
    }
    .hero-content {
        margin: 0 auto;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hero-content h1 br {
        display: none;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        z-index: 101;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
        display: flex;
        justify-content: center;
    }
    .slider-controls {
        position: absolute !important;
        bottom: 40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        z-index: 105;
        width: auto !important;
        top: auto !important;
    }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-overlay {
        background: linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 100%);
    }
}

/* --- 3. QUICK ENQUIRY SECTION --- */
@media (max-width: 768px) {
    .enquiry-box {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }
    .enquiry-info,
    .enquiry-form-wrapper {
        width: 100%;
        flex: unset;
    }
    .form-inputs {
        flex-direction: column;
    }
    .enquiry-form-wrapper input,
    .enquiry-form-wrapper select {
        width: 100%;
    }
    .enquiry-form-wrapper button {
        width: 100%;
    }
}

/* --- 4. FEATURES BAR (Horizontal Scroll on Mobile) --- */
@media (max-width: 768px) {
    .features-bar {
        padding: 25px 0;
    }
    .feature-bar-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 24px;
        scrollbar-width: none;
    }
    .feature-bar-container::-webkit-scrollbar {
        display: none;
    }
    .f-item {
        flex: 0 0 auto;
        min-width: 180px;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }
}

/* --- 5. ABOUT SECTION --- */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image {
        margin-bottom: 0;
    }
}

/* --- 6. WHY CHOOSE US (Horizontal Scroll on Mobile) --- */
@media (max-width: 768px) {
    .grid-features {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    .grid-features::-webkit-scrollbar {
        display: none;
    }
    .feature-card {
        flex: 0 0 auto;
        min-width: 260px;
        width: 260px;
    }
}

/* --- 7. PROGRAMS (Horizontal Scroll on Mobile) --- */
@media (max-width: 768px) {
    .program-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    .program-grid::-webkit-scrollbar {
        display: none;
    }
    .program-card {
        flex: 0 0 auto;
        min-width: 280px;
        width: 280px;
    }
}

/* --- 8. CULTURAL SECTION (Marquee already scrolls, just ensure text wraps) --- */
@media (max-width: 768px) {
    .marquee-item {
        width: 220px;
        height: 160px;
    }
}

/* --- 9. ACTIVITIES SECTION (Masonry → Horizontal Scroll on Mobile) --- */
@media (max-width: 768px) {
    .masonry-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        column-count: unset !important;
        gap: 15px;
        padding-bottom: 20px;
        scrollbar-width: none;
        align-items: flex-start;
    }
    .masonry-grid::-webkit-scrollbar {
        display: none;
    }
    .masonry-item {
        flex: 0 0 auto;
        min-width: 220px;
        width: 220px;
        break-inside: unset;
    }
}

/* --- 10. DINING SECTION (Accordion → Vertical Stack on Mobile) --- */
@media (max-width: 768px) {
    .accordion-gallery {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    .accordion-item {
        width: 100%;
        height: 200px;
        flex: unset;
    }
    .accordion-item:hover {
        flex: unset;
    }
}

/* --- 11. PROGRAMMES / POLAROID (Horizontal Scroll on Mobile) --- */
@media (max-width: 768px) {
    .polaroid-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 30px 24px;
        scrollbar-width: none;
        grid-template-columns: unset;
    }
    .polaroid-grid::-webkit-scrollbar {
        display: none;
    }
    .polaroid-item {
        flex: 0 0 auto;
        min-width: 220px;
        width: 220px;
    }
}

/* --- 12. CONTACT SECTION --- */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info {
        padding: 30px 20px;
    }
    .contact-map {
        min-height: 300px;
        height: 300px;
    }
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    .info-item i {
        min-width: 40px;
    }
}

/* --- 13. FOOTER --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer {
        padding-top: 50px;
    }
}

/* --- 14. FLOATING BUTTONS --- */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* === FINAL HERO BUTTON + FLOATING BUTTON FIX === */

/* On ALL mobiles: move floating buttons to bottom-right and smaller */
@media (max-width: 768px) {
    /* Hero buttons get proper margin so they dont touch screen edge */
    /* Hero buttons layout fix */
    /* Final override for hero centering */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        z-index: 1000 !important;
        position: relative !important;
        pointer-events: auto !important;
    }
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 30px auto 0 auto !important;
        width: 100% !important;
        gap: 12px !important;
        z-index: 1001 !important;
        position: relative !important;
        pointer-events: auto !important;
    }
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        z-index: 1002 !important;
        position: relative !important;
        pointer-events: auto !important;
    }

    /* Push floating buttons up above the fold / or to far bottom-right */
    .floating-actions {
        bottom: 12px !important;
        right: 12px !important;
        gap: 8px !important;
        z-index: 500 !important; /* Below lightbox but above normal content */
    }
    .float-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.25) !important;
    }
}
