:root {
    --primary: #c29d59;
    --primary-dark: #a67c3a;
    --secondary: #1a3c34;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --bg-dark: #0a110f;
    --bg-card: #152520;
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Glass */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade { animation: fadeUp 0.8s ease forwards; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 17, 15, 0.95);
    border-bottom: 1px solid rgba(194, 157, 89, 0.3);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 3px;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-btn { padding: 0.6rem 1.5rem; font-size: 0.8rem; }

/* Hamburger */
.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; z-index: 1001;
}
.hamburger span {
    width: 25px; height: 2px;
    background: var(--text);
    transition: var(--transition);
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease alternate infinite;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,17,15,0.6), rgba(10,17,15,0.9));
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 700px; padding: 0 1rem;
}
.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 157, 89, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section { padding: 100px 5%; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== ABOUT ===== */
.about { background: linear-gradient(to bottom, #0f1f1a, var(--bg-dark)); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.about-highlights { display: flex; flex-direction: column; gap: 1.2rem; }
.highlight-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}
.highlight-item i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 40px; text-align: center;
}
.highlight-item strong { display: block; font-size: 0.95rem; }
.highlight-item span { font-size: 0.8rem; color: var(--text-muted); }

.about-image img {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== PRICING ===== */
.pricing { background: linear-gradient(to bottom, var(--bg-dark), #0f1f1a); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}
.pricing-card.featured { border: 2px solid var(--primary); }
.popular-badge {
    position: absolute; top: 15px; right: -30px;
    background: var(--primary); color: var(--bg-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 1px;
}
.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-item span:first-child { color: var(--text-muted); font-size: 0.85rem; }
.price-item span:last-child { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

.inclusion-list {
    margin-top: 1.5rem;
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 0.6rem;
}
.inclusion-badge {
    background: rgba(194, 157, 89, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(194,157,89,0.3);
}

/* ===== GALLERY ===== */
.gallery { background: #0d1614; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== AMENITIES ===== */
.amenities { background: var(--bg-dark); }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}
.amenity-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: var(--bg-card);
    transition: var(--transition);
    cursor: default;
}
.amenity-item:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-5px);
}
.amenity-item i { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }

/* ===== EXPLORE ===== */
.explore { background: #0d1614; }
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.explore-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}
.explore-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.explore-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.explore-card h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1.1rem; }
.explore-card ul { list-style: none; color: var(--text-muted); }
.explore-card li { padding: 0.3rem 0; font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq { background: linear-gradient(to bottom, #0d1614, var(--bg-dark)); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
    padding: 60px 5% 30px;
    background: #050807;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
.footer-info h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.address {
    color: var(--text-muted);
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.address i { color: var(--primary); margin-right: 0.5rem; }
.contact-person {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-person i { color: var(--primary); margin-right: 0.5rem; }
.footer-contact a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}
.footer-contact a i { color: var(--primary); margin-right: 0.5rem; }
.footer-contact a:hover { color: var(--primary); }
.footer-socials { margin-top: 1.5rem; display: flex; gap: 1rem; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}
.footer-copy {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #555;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 55px; height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem; left: 2rem;
    width: 45px; height: 45px;
    background: var(--bg-card);
    color: var(--primary);
    border: 1px solid rgba(194,157,89,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); color: var(--bg-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%; height: 100vh;
        background: rgba(10,17,15,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    .nav-btn { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
    .about-image img { height: 250px; }

    .pricing-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.gallery-wide { grid-column: span 2; }
    .gallery-item img { height: 180px; }

    .amenities-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-map iframe { height: 200px; }

    section { padding: 70px 5%; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.gallery-wide { grid-column: span 1; }
    .gallery-item img { height: 200px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .explore-grid { grid-template-columns: 1fr; }
}
