/* --- Variables & Reset --- */
:root {
    --bg-color: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #141414;
    --text-main: #f5f5f5;
    --text-muted: #aaaaaa;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-darker { background-color: var(--bg-darker); }

.gold { color: var(--gold); }
.sub-heading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.btn-nav {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    color: var(--gold) !important;
}

.btn-nav:hover {
    background-color: var(--gold);
    color: #000 !important;
}

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(10,10,10,1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-left: 5px solid var(--gold);
}

.features-list li {
    margin: 10px 0;
    font-size: 1rem;
}

/* --- Services Section --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border: 1px solid #222;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow:hidden;
}
.service-card {
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--gold);
    top: 0;
    left: 0;
    z-index: 0;
    transition: 0.4s;
}

.service-card:hover::before {
    width: 100%;
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    color: #000;
}

.service-card:hover p,
.service-card:hover h3 {
    color: #000;
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.price {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--gold);
}

/* --- Booking Section --- */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-form {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
}

.form-row {
    display: flex;
    gap: 15px;
}

.btn-block {
    width: 100%;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 25px;
    border: 1px solid #222;
}

.stars {
    color: var(--gold);
    margin-bottom: 10px;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.info-item i {
    color: var(--gold);
}

/* --- Footer --- */
footer {
    background: #000;
    text-align: center;
    padding: 30px 0;
}

.footer-links a {
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

/* --- WhatsApp Button --- */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 1000;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media(max-width: 900px) {
    .about-grid,
    .booking-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}
