/* East Ebony - Exact Match CSS matching eastebony.com */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto+Slab:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-green: #78b848;
    --primary-green-hover: #67a03c;
    --dark-bg: #111111;
    --dark-card: #1f1f1f;
    --light-bg: #ffffff;
    --light-grey-bg: #f7f7f7;
    --text-color: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    --border-color: #e5e5e5;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Roboto Slab', serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP BAR (DARK GREEN BACKGROUND #78b848) --- */
.top-bar {
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--font-body);
}

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

.top-bar-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 500;
}

.top-bar-info a:hover {
    opacity: 0.9;
}

.btn-pdf-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-pdf-top:hover {
    background-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

/* --- NAVBAR --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

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

.nav-brand img {
    height: 52px;
    width: auto;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333333;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 4s ease-out;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-hero-gallery {
    background: rgba(68, 68, 68, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-hero-gallery:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #ffffff;
}

.btn-hero-brochure {
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-hero-brochure:hover {
    background-color: var(--primary-green-hover);
}

/* Slider Controls */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-green);
    width: 28px;
    border-radius: 10px;
}

/* --- WHERE LIFE GET BETTER & STATS SECTION --- */
.stats-header-section {
    padding: 90px 0 60px;
    text-align: center;
    background-color: #ffffff;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 300;
    color: #888888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.stats-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrap img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: invert(56%) sepia(76%) saturate(485%) hue-rotate(52deg) brightness(96%) contrast(88%);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ABOUT SECTION ("Who we are !" REDUCED VIDEO SIZE) --- */
.about-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

.about-text-side h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.about-text-side p {
    font-family: var(--font-body);
    color: #666666;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-video-side {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.about-video-side video {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* --- CALLOUT BANNER --- */
.callout-banner {
    position: relative;
    background: url('../images/CAM_31-CLUB-SPACE_11zon-1-scaled.jpg') center/cover no-repeat;
    padding: 110px 20px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.callout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 110, 35, 0.55);
    z-index: 1;
}

.callout-content {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.callout-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.2vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.callout-content h2 a {
    color: #ffffff;
}

.callout-content h2 a:hover {
    text-decoration: underline;
}

.callout-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* --- SITE PLAN --- */
.plan-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.plan-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #555555;
    font-weight: 400;
    margin-bottom: 45px;
}

.plan-grid-exact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.plan-card-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.plan-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-card-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background-color: #fafafa;
    border-radius: 4px;
}

.plan-card-full {
    grid-column: span 2;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-grey-bg);
    text-align: center;
}

.gallery-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #555555;
    font-weight: 400;
    margin-bottom: 45px;
}

.gallery-grid-exact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

/* --- CONTACT US SECTION --- */
.contact-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 80px 0 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-side h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.contact-info-side h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-info-side h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #aaaaaa;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact-address-text p {
    font-family: var(--font-body);
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
}

.contact-form-side {
    background: #e8e8e8;
    padding: 30px;
    border-radius: 8px;
    color: #333333;
}

.contact-form-side .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 16px;
    outline: none;
    background-color: #ffffff;
}

.contact-form-side .form-control:focus {
    border-color: var(--primary-green);
}

.btn-send-msg {
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-send-msg:hover {
    background-color: var(--primary-green-hover);
}

/* Map Row */
.map-row {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 40px;
}

.map-row iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #ffffff;
    color: #555555;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 15px;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    color: #666666;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    background-color: #ffffff;
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
    text-align: center;
    font-size: 0.88rem;
    color: #777777;
    font-family: var(--font-body);
}

.footer-bottom a {
    color: #0073aa;
}

/* --- FLOATING WIDGETS --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: #333333;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-green);
}

/* --- INTERACTIVE LIGHTBOX MODAL --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.lightbox-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 85vw;
    max-height: 85vh;
}

.lightbox-content {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

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

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 2.6rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
    .about-container,
    .contact-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-video-side {
        max-width: 100%;
    }
    
    .plan-grid-exact {
        grid-template-columns: 1fr;
    }
    
    .plan-card-full {
        grid-column: span 1;
    }
    
    .gallery-grid-exact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .hero-nav-btn {
        display: none;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 576px) {
    .gallery-grid-exact {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .callout-content h2 {
        white-space: normal;
    }
}
