/* --- Variables & Reset --- */
:root {
    --gold: #D4AF37;
    --gold-hover: #b5952f;
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --light-grey: #e0e0e0;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--light-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 600;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px 0;
}

.gold-line.center {
    margin: 15px auto;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* --- 🔝 Top Bar --- */
.top-bar {
    background-color: #000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hover-gold:hover { color: var(--gold); }
.contact-links a, .social-links a { margin-right: 15px; }

/* Top Bar Icons Styling */
.contact-links i {
    margin-right: 5px;
    color: var(--gold);
    font-size: 0.85rem;
}

.social-links a {
    margin-left: 15px; /* Icons ke beech gap */
    font-size: 1rem;   /* Logo ka size */
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-2px); /* Subtle lift effect */
    display: inline-block;
}

/* Mobile fix for social icons */
@media (max-width: 768px) {
    .social-links {
        margin-top: 10px;
    }
    .social-links a {
        margin: 0 10px;
    }
}

/* --- 🧭 Navbar --- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

/* --- Navbar Height Fix --- */
#navbar {
    padding: 20px 0; /* 20px se ghatakar 10px karein */
    background: rgba(10, 10, 10, 0.98);
}

.nav-content {
    padding: 5px 0; /* Ise bhi kam karein taaki height kam ho jaye */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo container ko adjust karein */
.logo-wrapper {
    height: 50px; /* Max height fix karein */
}

.brand-logo {
    height: 50px; /* Screenshot ke hisab se 80px bada hai, 50px sahi rahega */
    width: auto;
    object-fit: contain;
}

/* Mobile ke liye aur bhi sleek */
@media (max-width: 768px) {
    #navbar {
        padding: 5px 0;
    }
    .brand-logo {
        height: 40px;
    }
}

nav a {
    margin-left: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover, nav a.active { color: var(--gold); }

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gold);
}

/* --- 🌟 Hero Section --- */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* --- Sections & Grids --- */
.section-padding { padding: 80px 0; }
.bg-dark { background-color: var(--dark-grey); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p { margin-bottom: 20px; }
.link-gold { color: var(--gold); font-weight: bold; }

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--gold);
}

/* --- Trust & Experience Section Styles --- */
.trust-experience {
    background-color: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Stats Styling */
.trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-item {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--gold);
    transform: scale(1.03);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-title {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Right Content Styling */
.sub-heading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.trust-list {
    list-style: none;
    margin-top: 30px;
}

.trust-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--light-grey);
}

.trust-list i {
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
        order: 2;
    }
    .trust-content {
        order: 1;
        text-align: center;
    }
    .trust-content .gold-line {
        margin: 15px auto;
    }
}

@media (max-width: 600px) {
    .trust-stats {
        grid-template-columns: 1fr;
    }
}

/* --- Pricing Section Styling --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #111111; /* Slightly lighter than bg-dark for depth */
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Featured card (Deep Tissue) standout style */
.price-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, #151515, #0a0a0a);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.price-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.price-amount span {
    font-size: 0.9rem;
    color: #777;
    font-family: var(--font-body);
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.price-features li {
    color: #bbb;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.btn-price {
    display: block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-price:hover {
    background: var(--gold);
    color: var(--black);
}

/* --- Why Choose Us Styling --- */
.why-choose-us {
    background-color: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
    background: transparent;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: rotateY(360deg); /* Elegant 3D spin */
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Testimonials Styling --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    background: #0f0f0f;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.1); /* Subtle large quote */
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--light-grey);
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
}

.client-details h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-color: var(--gold);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content { padding: 25px; }
.card-content h3 { margin-bottom: 10px; color: var(--gold); }

/* --- CTA Section Styling --- */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=2000'); /* High-res spa background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay for readability */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* CTA Buttons Styling */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 35px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.btn-cta.primary {
    background: var(--gold);
    color: var(--black);
}

.btn-cta.primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-cta.whatsapp:hover {
    background: #25D366; /* WhatsApp Green */
    border-color: #25D366;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta { width: 100%; justify-content: center; }
}
/* --- Contact Section Styling --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form-box {
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: #151515;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.map-box {
    min-height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
}
/* --- SEO CTA Styling --- */
.seo-cta {
    position: relative;
    background: url('image/call-to-action-content.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax Effect */
    padding: 120px 0;
}

.cta-dark-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4) 100%);
}

.relative-z { position: relative; z-index: 5; }

.cta-wrapper {
    max-width: 700px;
}

.cta-text-box h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text-box p {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Keywords highlighting without making them look like links */
.cta-text-box p b, .cta-text-box p strong {
    color: var(--gold);
    font-weight: 500;
}

.cta-action-btns {
    display: flex;
    gap: 15px;
}

.btn-main {
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-main.gold {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-main.outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-text-box h2 { font-size: 2rem; }
    .cta-action-btns { flex-direction: column; }
    .btn-main { text-align: center; }
    .seo-cta { padding: 80px 0; }
}

/* --- 📦 Footer --- */
/* --- Luxury Footer Styling --- */
.luxury-footer {
    background-color: #050505; /* Deep Black */
    color: #999;
    padding: 80px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Perfect spacing for 4 columns */
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 60px; /* Footer mein logo thoda subtle rehta hai */
    width: auto;
    margin-bottom: 25px;
}

.about-col p {
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--font-heading);
}

/* Gold line under title */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.gold {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #000;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .contact-info p {
        justify-content: center;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row; /* Contacts ko ek hi line mein rakhne ke liye */
        justify-content: center;
        gap: 15px;
        padding: 5px 0;
    }

    /* Social links ko mobile par hide karne ke liye */
    .top-bar .social-links {
        display: none !important;
    }


    .hamburger { display: block; }
    
    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%; left: 0;
        background-color: var(--black);
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid var(--gold);
    }
    
    nav.show { display: flex; }
    nav a { margin: 15px 0; text-align: center; }

    .hero-content h1 { font-size: 2.5rem; }
    .btn-outline { margin-left: 0; margin-top: 15px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 10px; }
    
    .about-grid { grid-template-columns: 1fr; }
}
/* --- Elite Luxury Floating Buttons --- */
.elite-action-container {
    position: fixed;
    bottom: 25px; /* Niche se thoda upar premium look ke liye */
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Isse buttons kone-kone par chale jayenge */
    padding: 0 20px; /* Sides se gap */
    pointer-events: none; /* Taki beech ka area clickable rahe */
    z-index: 9999;
}

.elite-float-btn {
    pointer-events: auto; /* Buttons ko wapas clickable banane ke liye */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px; /* Perfect Capsule Shape */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Call Button - Elite Gold Theme */
.elite-call {
    background: linear-gradient(135deg, #D4AF37 0%, #B5952F 100%);
    color: #000;
}

/* WhatsApp Button - Luxury Deep Green */
.elite-whatsapp {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: #fff;
}

/* Hover Effect */
.elite-float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .elite-action-container {
        bottom: 15px;
        padding: 0 15px;
    }
    .elite-float-btn {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    /* Mobile par sirf icon dikhana ho toh span hide kar sakte hain (Optional) */
    /* .elite-float-btn span { display: none; } */
}
/* --- About Page Specific Styles --- */

.section-padding { padding: 80px 0; }
.bg-dark { background-color: #0f0f0f; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image/page-hero.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-hero h1 { font-size: 3.5rem; letter-spacing: 3px; }

.about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #ccc; }

.about-img img { width: 100%; border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.mv-card { text-align: center; padding: 30px; }
.mv-card h3 { margin: 20px 0; font-size: 1.8rem; }
.gold-icon { font-size: 3rem; color: var(--gold); }

.luxury-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feat-item {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-center { text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.5rem; }
    .section-padding { padding: 50px 0; }
}
/* Services Page Specific Styling */
        .modal-content {
            background-color: var(--black);
            border: 1px solid var(--gold);
            border-radius: 10px;
        }
        .modal-header { border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
        .modal-title { color: var(--gold); font-family: var(--font-heading); }
        .btn-close { filter: invert(1); }
        .service-card { cursor: pointer; transition: var(--transition); }
        .view-details-btn {
            color: var(--gold);
            font-weight: bold;
            display: inline-block;
            margin-top: 10px;
        }
/* --- 2 Column Menu Layout (Updated with Better Spacing) --- */
.luxury-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px 80px; /* Horizontal gap badha diya gaya hai */
    max-width: 1100px;
    margin: 40px auto 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px; /* Neeche ka gap badhaya */
    margin-bottom: 25px; /* Agle item se doori badhayi */
    border-bottom: 1px dotted rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.menu-item:hover {
    border-bottom-color: var(--gold);
    transform: translateX(8px); /* Thoda zyada move hoga hover par */
}

.menu-details h3 {
    font-size: 1.4rem; /* Heading thodi badi ki gayi hai */
    color: var(--white);
    margin-bottom: 8px; /* Name aur description ke beech gap */
    font-family: var(--font-heading);
}

.menu-details p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    font-style: italic; /* Luxury feel ke liye italic */
}

.menu-price-box {
    text-align: right;
    margin-left: 20px;
}

.menu-price-box .price {
    font-size: 1.5rem; /* Price ko thoda bold aur bada kiya */
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

.menu-price-box .time {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

/* Highlighted Item (Couple Massage) */
.highlight-item {
    background: rgba(212, 175, 55, 0.08); /* Thoda zyada visible background */
    padding: 20px 15px; /* Card ke andar spacing */
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .luxury-menu-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }
}

