:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #b5952f;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

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

.text-gold {
    color: var(--accent-gold);
}

.center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    /* Slightly smoother transition */
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Text logo styles reserved */
/* 
.logo {
    font-family: var(--font-heading);
} 
*/

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--accent-gold);
}

.nav-btn {
    padding: 0.8rem 1.5rem !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}

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

.btn-outline {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-white:hover {
    background-color: #eee;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.features-list {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
}

.feature i {
    width: 24px;
    height: 24px;
}

.feature span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image .img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid var(--accent-gold);
    position: relative;
}

.about-image .img-placeholder::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
}

/* Services */
.services-section {
    background-color: #0F0F0F;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 400px;
    /* Prevent cards from getting too wide on large screens */
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.duration {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.highlight-card {
    border: 1px solid var(--accent-gold);
    background: linear-gradient(145deg, var(--bg-card), #1a1a1a);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.2);
    /* Make it stand out slightly more */
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-container {
    text-align: center;
}

/* Reviews */
.reviews-section {
    background-color: var(--bg-dark);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.review-card {
    flex: 1 1 300px;
    /* Grow, Shrink, Basis */
    max-width: 400px;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
}



.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
}

.stars i {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: #ccc;
    margin-bottom: 2rem;
}

.reviewer {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    font-size: 1.1rem;
}

.source-icon {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

/* Booking Banner */
.booking-banner {
    background-color: var(--accent-gold);
    padding: 4rem 0;
    text-align: center;
}

.booking-banner h2 {
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #0F0F0F;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background-color: #222;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-size: cover;
    background-position: center;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

/* Make the first item span 2 rows and 2 columns for a "Feature" look */
@media (min-width: 769px) {
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive Design */

/* Tablet & Mobile (Max Width 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: -1;
        padding-top: 60px;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-links li a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
    }

    .hamburger {
        display: block;
        color: var(--text-primary);
        z-index: 1001;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-logo {
        width: 90px;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-image .img-placeholder {
        height: 300px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        max-width: 100%;
    }
}

/* Mobile Small (Max Width 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: 100dvh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-logo {
        width: 70px;
        margin-bottom: 1rem;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .img-placeholder {
        height: 250px;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }
}

/* Helper to ensure images don't overflow */
img,
video {
    max-width: 100%;
    height: auto;
}

/* Contact Links */
.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.contact-link i {
    width: 18px;
    height: 18px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
}

/* Tooltip on hover (optional enhancement - removed per strict request, simple hover is cleaner) */

/* Mobile adjustment for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }

    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
}