* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f0;
    color: #333;
    width: 100%;
    overflow-x: hidden;
}

.container { width: 100%; max-width: 100%; margin: 0; padding: 0; }

/* ===== HERO ===== */
.hero-section { background: white; width: 100%; position: relative; }
.banner-full { width: 100%; height: 700px; position: relative; overflow: hidden; }
.banner-image { width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.banner-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.3); }
.banner-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; color: white; z-index: 2; width: 90%; max-width: 800px; }
.tagline { font-size: 1.2rem; color: #a8e6a3; letter-spacing: 1px; }
.main-title { font-size: 3.5rem; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.5); margin: 5px 0; }
.sub-title { font-size: 1.2rem; font-weight: 300; opacity: 0.9; }
.profile-section { display: flex; justify-content: center; margin-top: -60px; position: relative; z-index: 2; }
.profile-img-wrapper { background: white; padding: 6px; border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.profile-logo { width: 180px; height: 180px; border-radius: 18px; object-fit: cover; display: block; }

/* ===== SECTION TITLE (CENTERED) ===== */
.section-title {
    font-size: 2rem;
    color: #1e3a2f;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    text-align: center;
    display: block;
}

.section-title::before,
.section-title::after {
    content: '——';
    color: #2d7d46;
    margin: 0 12px;
    opacity: 0.6;
}

/* ===== ABOUT ===== */
.about-section { background: white; padding: 40px 20px 50px; text-align: center; }
.about-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
.icon-circle { width: 55px; height: 55px; background: #2d7d46; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; }
.about-text { max-width: 700px; margin: 0 auto; color: #444; line-height: 1.8; font-size: 1rem; }
.about-text p { margin-bottom: 10px; }

/* ===== PREMIUM AMENITIES ===== */
.premium-amenities { background: #0d1f15; padding: 40px 20px; text-align: center; }
.premium-title {
    font-size: 1.8rem;
    color: #c8d6b0;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
    display: block;
}
.premium-title::before,
.premium-title::after {
    content: '——';
    color: #c8d6b0;
    margin: 0 12px;
    opacity: 0.6;
}
.premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.premium-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #c8d6b0; }
.premium-item i { font-size: 2.5rem; color: #b4d47a; }
.premium-item span { font-size: 1rem; letter-spacing: 1px; }

/* ===== FACILITIES ===== */
.facilities-section { background: white; padding: 40px 20px; }
.facilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.facility-card { background: white; border: 1px solid #e0e0e0; border-radius: 16px; overflow: hidden; cursor: pointer; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.facility-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.facility-img { width: 100%; height: 200px; overflow: hidden; }
.facility-img img { width: 100%; height: 100%; object-fit: cover; }
.facility-content { padding: 15px; }
.facility-content h3 { color: #1e3a2f; font-size: 1.1rem; margin-bottom: 5px; }
.facility-content p { color: #666; font-size: 0.9rem; line-height: 1.4; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; justify-content: center; align-items: center; }
.lightbox.open { display: flex; }
.lightbox-content { position: relative; width: 80%; max-width: 800px; height: 70%; max-height: 600px; }
.lightbox-slides { width: 100%; height: 100%; position: relative; }
.lightbox-slide { display: none; width: 100%; height: 100%; }
.lightbox-slide.active { display: block; }
.lightbox-slide img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.close-btn { position: absolute; top: -40px; right: 0; color: white; font-size: 2.5rem; cursor: pointer; z-index: 10000; }
.prev, .next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; font-size: 2rem; padding: 10px 15px; cursor: pointer; border-radius: 5px; z-index: 10000; }
.prev { left: -50px; } .next { right: -50px; }

/* ===== GALLERY ===== */
.gallery-section { background: white; padding: 40px 20px; }
.gallery-slider { position: relative; max-width: 800px; margin: 0 auto; }
.gallery-slides { width: 100%; height: 400px; overflow: hidden; border-radius: 16px; position: relative; }
.gallery-slide { display: none; width: 100%; height: 100%; }
.gallery-slide.active { display: block; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-prev, .gallery-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; font-size: 2rem; padding: 15px 20px; cursor: pointer; border-radius: 50%; z-index: 10; }
.gallery-prev { left: 10px; } .gallery-next { right: 10px; }
.gallery-dots { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.gallery-dot { width: 12px; height: 12px; background: #ccc; border-radius: 50%; cursor: pointer; }
.gallery-dot.active { background: #2d7d46; }

/* ===== REVIEWS ===== */
.reviews-section { background: white; padding: 40px 20px; }
.reviews-slider { max-width: 700px; margin: 0 auto; }
.review-card { display: none; background: #f0faf3; border-radius: 20px; padding: 25px; align-items: center; gap: 20px; }
.review-card.active { display: flex; }
.review-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-img img { width: 100%; height: 100%; object-fit: cover; }
.review-content h3 { color: #1e3a2f; margin-bottom: 5px; }
.review-content p { color: #555; line-height: 1.6; font-size: 0.9rem; }
.reviews-dots { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.review-dot { width: 12px; height: 12px; background: #ccc; border-radius: 50%; cursor: pointer; }
.review-dot.active { background: #2d7d46; }

/* ===== GOOGLE REVIEW ===== */
.google-section { background: white; padding: 40px 20px; }
.google-card { max-width: 600px; margin: 0 auto; background: #f0faf3; border-radius: 20px; padding: 40px; text-align: center; }
.google-logo { width: 120px; margin: 0 auto 15px; }
.google-logo img { width: 100%; }
.google-card h3 { color: #1e3a2f; font-size: 1.5rem; margin-bottom: 10px; }
.google-card p { color: #666; margin-bottom: 20px; }
.google-btn { display: inline-block; background: #2d7d46; color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; }

/* ===== CONTACT ===== */
.contact-section { background: white; padding: 40px 20px; text-align: center; }
.contact-title {
    font-size: 1.8rem;
    color: #1e3a2f;
    margin-bottom: 30px;
    position: relative;
    display: block;
    font-weight: 700;
    text-align: center;
}
.contact-title::before,
.contact-title::after {
    content: '—';
    color: #2d7d46;
    margin: 0 12px;
    font-size: 1.2rem;
    opacity: 0.7;
}
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 650px; margin: 0 auto; }
.contact-card { background: #f0faf3; border: 1px solid #d4e8d9; border-radius: 50px; padding: 20px 15px 15px; position: relative; }
.contact-icon-circle { width: 50px; height: 50px; background: #2d7d46; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: -35px auto 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); font-size: 1.1rem; color: white; }
.contact-detail { font-weight: 600; color: #1e3a2f; font-size: 0.9rem; margin-top: 5px; }

/* ===== FOOTER ===== */
footer { text-align: center; padding: 30px; background: #1a2e24; color: #aaa; }
.footer-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
.footer-icon { width: 40px; height: 40px; background: #2d7d46; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 1.2rem; }

/* ===== FLOATING BUTTONS (Both at bottom) ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.go-top-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #2d7d46;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 768px) {
    .banner-full { height: 350px; }  /* Pehle 220px tha, ab 450px */
    .main-title { font-size: 2.2rem; }
    .profile-logo { width: 140px; height: 140px; }  /* Pehle 90px tha, ab 140px */
    .profile-section { margin-top: -50px; }
    .section-title { font-size: 1.6rem; }
    .premium-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .premium-item i { font-size: 2rem; }
    .premium-item span { font-size: 0.8rem; }
    .facilities-grid { gap: 15px; }
    .facility-img { height: 150px; }
    .gallery-slides { height: 250px; }
    .review-card { flex-direction: column; text-align: center; }
    .contact-grid { gap: 15px; }
    .contact-icon-circle { width: 40px; height: 40px; margin-top: -25px; font-size: 0.9rem; }
    .whatsapp-btn { bottom: 20px; width: 50px; height: 50px; font-size: 1.6rem; }
    .go-top-btn { bottom: 20px; width: 45px; height: 45px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .banner-full { height: 250px; }  /* Pehle 180px tha, ab 350px */
    .main-title { font-size: 1.8rem; }
    .profile-logo { width: 120px; height: 120px; }  /* Pehle 75px tha, ab 120px */
    .profile-section { margin-top: -40px; }
    .premium-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .premium-item i { font-size: 1.8rem; }
    .facilities-grid { gap: 10px; }
    .facility-img { height: 120px; }
    .facility-content { padding: 10px; }
    .facility-content h3 { font-size: 0.9rem; }
    .facility-content p { font-size: 0.75rem; }
    .gallery-slides { height: 200px; }
    .contact-grid { gap: 12px; }
    .contact-card { padding: 15px 8px 10px; border-radius: 30px; }
    .contact-icon-circle { width: 35px; height: 35px; margin-top: -20px; font-size: 0.8rem; }
    .contact-detail { font-size: 0.75rem; }
    .whatsapp-btn { bottom: 15px; width: 45px; height: 45px; font-size: 1.4rem; }
    .go-top-btn { bottom: 15px; width: 40px; height: 40px; font-size: 1rem; }
}