:root {
    --gold: #D4AF37;
    --gold-light: #F1D592;
    --gold-dark: #AC8A33;
    --black: #0A0A0A;
    --dark-gray: #151515;
    --cream: #F5F5DC;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
}

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

/* Header */
header {
    position: fixed;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    border-bottom: 0.5px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.nav-link:hover {
    color: var(--gold);
    opacity: 1;
}

.nav-btn-mobile {
    display: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInDown 1.2s ease-out;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cream);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap; /* important to prevent overflow */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: url('../images/gold_texture.png');
    background-size: cover;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

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

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

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

.section-title .divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* Features/Experience */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 4rem 2rem;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* Services Carousel */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-out;
    gap: 20px;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-prev { left: -30px; }
.carousel-next { right: -30px; }

.carousel-prev:hover, .carousel-next:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

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

.pagination-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
    }
    .carousel-prev, .carousel-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%;
    }
    .carousel-prev, .carousel-next {
        display: none;
    }
    .carousel-track-container {
        cursor: grab;
    }
}

/* Service Card Enhancements */
.service-card {
    position: relative;
    overflow: hidden;
    height: clamp(450px, 60vh, 550px);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    background: #000;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card:hover .service-overlay {
    padding-bottom: 3.5rem;
}

.view-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-weight: 500;
    cursor: pointer;
}

.view-detail-link:hover {
    color: var(--gold);
}

.view-detail-link i {
    font-size: 1rem;
}

/* Space Card */
.space-card {
    position: relative;
    overflow: hidden;
    height: clamp(400px, 50vh, 500px);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    background: #000;
}

.space-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.space-card:hover .space-img {
    transform: scale(1.05);
}

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.space-card:hover .space-overlay {
    opacity: 1;
}

.space-overlay .view-detail-link {
    margin-bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    padding: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: none;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

#modal-booking-btn {
    margin-top: 30px;
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
    animation: fadeInUp 0.5s ease-out;
}

/* Testimonials/Mystery Section */
.mystery-section {
    background: linear-gradient(rgba(10,10,10,0.95), rgba(10,10,10,0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.mystery-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #050505;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo h2 {
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
    }
    .nav-menu.active { right: 0; }
    
    .nav-btn-mobile {
        display: block !important;
        margin-top: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: url('../images/gold_texture.png');
    background-size: cover;
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Video Experience */
.video-container:hover .play-overlay {
    background: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
