:root {
    --brand-green: #1E392A;
    --brand-gold: #B7894D;
    --off-white: #F9F6F0;
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--off-white); color: var(--text-dark); overflow-x: hidden; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
h2 { font-family: var(--font-heading); font-weight: 500; font-size: 2.5rem; text-align: center; margin-bottom: 20px; color: var(--brand-green); position: relative; padding-bottom: 15px; }
h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background-color: var(--brand-gold); }
h3 { font-family: var(--font-heading); font-weight: 500; }
p { line-height: 1.7; color: #555; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- HEADER (Mobile First) --- */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 1000; transition: background-color 0.3s, box-shadow 0.3s; }
.header.scrolled { background-color: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--brand-green); }
.header.hero-mode .logo-text, .header.hero-mode .hamburger i { color: var(--text-light); }
.header.scrolled .logo-text, .header.scrolled .hamburger i { color: var(--brand-green); }
.nav-links { list-style: none; display: none; gap: 30px; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--brand-gold); }
.btn-cta { background-color: var(--brand-gold); color: var(--text-light); padding: 12px 25px; border-radius: 5px; font-weight: 500; transition: all 0.3s; display: none; }
.hamburger { display: block; font-size: 2rem; cursor: pointer; color: var(--brand-green); }
.mobile-nav { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background-color: var(--off-white); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: left 0.4s ease-in-out; }
.mobile-nav.active { left: 0; }
.mobile-nav li { margin: 20px 0; }
.mobile-nav a { font-size: 1.8rem; }

/* --- HERO SECTION --- */
.hero { padding: 100px 0 40px; background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../../img/banner.png'); background-size: cover; background-position: center; color: var(--text-light); display: flex; flex-direction: column; justify-content: space-between; }
.hero-content-wrapper { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 20px; }
.hero-content-wrapper h1.script-text { font-family: var(--font-script); font-size: 5rem; font-weight: 400; line-height: 1; }
.hero-content-wrapper h2 { font-size: 2.2rem; color: var(--text-light); text-transform: uppercase; margin: 0 0 20px; padding-bottom: 0; }
.hero-content-wrapper h2::after { display: none; }
.hero-content-wrapper p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; color: var(--text-light); opacity: 0.9; }
.hero-emblems { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 30px; }
.logo-40-text { font-size: 2rem; font-weight: 700; border: 3px solid var(--brand-gold); border-radius: 50%; width: 80px; height: 80px; display: flex; flex-direction: column; justify-content: center; align-items: center; line-height: 1; }
.logo-40-text span { font-size: 0.8rem; font-weight: 400; }
.hero-group-logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.hero-footer { padding-top: 40px; text-align: center; }
.feature-bar { background-color: rgba(255, 255, 255, 0.9); color: var(--text-dark); padding: 15px 20px; border-radius: 10px; display: inline-block; font-weight: 500; margin-bottom: 30px; }
.location-highlights { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.location-item { display: flex; align-items: center; gap: 15px; }
.location-item i { font-size: 2.5rem; color: var(--brand-gold); }
.location-item span { font-size: 1.1rem; font-weight: 500; text-align: left; }
.hero-final-tagline { margin-top: 30px; font-family: var(--font-heading); font-size: 1.3rem; font-style: italic; }

/* --- ABOUT US STICKY SECTION --- */
.sticky-parent-wrapper { display: grid; grid-template-columns: 1fr; gap: 40px; }
.sticky-column-left { text-align: center; margin-bottom: 40px; }
.sticky-column-left h2 { text-align: center; }
.scrolling-column-right { display: flex; flex-direction: column; gap: 50px; }
.media-item { border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); overflow: hidden; }
.media-item video { width: 100%; height: 50vh; object-fit: cover; }
.media-item h3 { font-size: 2rem; margin-bottom: 15px; color: var(--brand-green);padding: 20px; text-align: center;}

/* --- TWO COLUMN LAYOUT --- */
.two-col-layout { display: grid; grid-template-columns: 1fr; align-items: center; gap: 40px; }
.two-col-layout .text-content { text-align: center; }
.two-col-layout .text-content h2 { text-align: center; }
.two-col-layout .image-content { order: -1; }
.two-col-layout .image-content img { border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- FACILITIES & NEWS --- */
.facilities { background-color: #f1ede6; }
.facilities-card { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
.facility-item { display: flex; align-items: flex-start; gap: 20px; background: var(--off-white); padding: 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.facility-item i { font-size: 2.5rem; color: var(--brand-gold); flex-shrink: 0; }
.news-alert .image-content { padding: 15px; border: 8px solid #333; border-radius: 40px; background: #111; }
.news-alert .image-content img { border-radius: 25px; }
.news-alert .text-content h3 { font-size: 2rem; margin-bottom: 15px; color: var(--brand-green); }
.key-highlights { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 30px; }
.highlight-item { background: var(--brand-green); color: var(--text-light); padding: 15px; border-radius: 10px; text-align: center; }

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; }

/* --- INQUIRY FORM --- */
.inquiry-form { background-color: var(--brand-green); color: var(--text-light); }
.inquiry-form .container { text-align: center; }
.inquiry-text h2 { color: var(--text-light); }
.inquiry-text p { color: var(--text-light); opacity: 0.8; }
.form-card { background-color: var(--off-white); color: var(--text-dark); padding: 30px; border-radius: 15px; margin-top: 30px; }
.form-group input { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
.form-card button { width: 100%; background-color: var(--brand-gold); color: var(--text-light); padding: 15px; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: 700; }

/* --- FOOTER --- */
.footer { padding: 40px 20px; text-align: center; font-size: 0.9rem; color: #777; background-color: #e8e1d9; }

/* --- DESKTOP & TABLET STYLES --- */
@media (min-width: 992px) {
    h2 { font-size: 3rem; }
    .section { padding: 100px 0; }
    .nav-links, .btn-cta { display: flex; }
    .hamburger { display: none; }

    .hero { height: 100vh; padding: 0; }
    .hero-footer { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; }
    .location-highlights { flex-direction: row; justify-content: center; }

    /* STICKY COLUMN LAYOUT FOR DESKTOP */
    .sticky-parent-wrapper { grid-template-columns: 1fr 1.2fr; align-items: flex-start; }
    .sticky-column-left { position: sticky; top: 120px; text-align: left; margin-bottom: 0; }
    .sticky-column-left h2 { text-align: left; }
    .media-item video { height: fit-content; }

    .two-col-layout { grid-template-columns: 1fr 1fr; }
    .two-col-layout .text-content { text-align: left; }
    .two-col-layout .text-content h2 { text-align: left; }
    .two-col-layout .image-content { order: 0; }

    .facilities-card { grid-template-columns: 1fr 1fr; }
    .key-highlights { grid-template-columns: 1fr 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .news-alert .two-col-layout .image-content { order: 0; } 

    .inquiry-form .container { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 50px; text-align: left; }
    .inquiry-text h2 { text-align: left; }
    .form-card { margin-top: 0; }
}



.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    resize: vertical;
}

/* --- STICKY GALLERY SECTION --- */

/* Mobile-first: A simple stacked layout */
.gallery .sticky-parent-wrapper { 
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px; 
}
.gallery .sticky-column-left {
    text-align: center;
}
.gallery .sticky-column-left h2 {
    text-align: center;
}
.gallery .scrolling-column-right { 
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px; 
}
.gallery .gallery-image-item img {
    width: 100%;
    height: 300px; /* Consistent height on mobile */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Tablet & Desktop: The sticky column effect */
@media (min-width: 768px) {
    .gallery .sticky-parent-wrapper {
        grid-template-columns: 1fr 1.2fr; /* Creates the two columns */
        align-items: flex-start; /* Aligns items to the top */
        gap: 50px;
    }
    .gallery .sticky-column-left {
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 120px; /* Space from the top to account for your sticky header */
        text-align: left;
    }
    .gallery .sticky-column-left h2 {
        text-align: left;
    }
    .gallery .gallery-image-item img {
        height: auto; /* Let height be natural on desktop */
        max-height: 70vh; /* But don't let it be too tall */
    }
}
.footer-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

.footer-credit a {
    color: var(--brand-gold);
    font-weight: 500;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}



.highlight-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-item i {
    color: #0d6efd;
    font-size: 1.4rem;
    margin-right: 8px;
}

.float-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* default WhatsApp green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.call {
    background-color: #0d6efd; /* Bootstrap blue */
    bottom: 80px; /* stack above WhatsApp */
}