/* ==========================================================================
   GLOBAL STYLES & LUXURY RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --gold: #d4af37;
    --gold-hover: #f3e5ab;
    --text-light: #ffffff;
    --text-muted: #a9a9a9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 400;
}

.section-padding {
    padding: 100px 8% 100px 8%;
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 5% ; }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--gold);
}

/* Luxury Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   TOP BAR & NAVIGATION BACKBONE
   ========================================================================== */
.top-bar {
    background-color: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 1001;
    position: relative;
}

.top-left a {
    margin-right: 20px;
    color: var(--text-muted);
}

.top-left a:hover, .top-right a:hover {
    color: var(--gold);
}

.top-left i {
    color: var(--gold);
    margin-right: 6px;
}

.top-right a {
    margin-left: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Navbar */
.header-nav {
    position: absolute;
    top: 41px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-nav.sticky {
    position: fixed;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    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,0.95));
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 900px;
    z-index: 5;
}

.hero-content span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ==========================================================================
   SPLIT ABOUT SECTION
   ========================================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-frame {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
}

.about-img-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-text span {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* ==========================================================================
   SERVICES CARDS (6 MAIN HIGHLIGHTED)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.03);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card-content {
    padding: 30px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* Hover Interactive Matrix */
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.05);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card:hover h3 {
    color: var(--gold);
}

/* ==========================================================================
   PRICING TABLE / MATRICES
   ========================================================================== */
.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    position: relative;
    background-color: var(--bg-secondary);
    padding-right: 15px;
}

.pricing-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
    margin: 0 10px;
}

.pricing-cost {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.15rem;
    background-color: var(--bg-secondary);
    padding-left: 15px;
}

/* ==========================================================================
   WHY CHOOSE US & CORE VALUE PROPOSITIONS
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-tertiary);
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.why-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
}

/* ==========================================================================
   GALLERY MATRIX GRID
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================================================
   TESTIMONIAL LUXURY SWEEPER
   ========================================================================== */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card {
    padding: 20px;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

/* ==========================================================================
   HIGH CONVERSION CTA BANNER
   ========================================================================== */
.cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('image/cta-banner-massage-spa-gurgaon.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT MATRIX & INTERNAL PAGE LAYOUTS
   ========================================================================== */
.page-header {
    padding: 160px 8% 80px 8%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), var(--bg-primary)), url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 5px;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Form Execution */
.contact-form-wrapper {
    background-color: var(--bg-secondary);
    padding: 40px;
    border: 1px solid rgba(212,175,55,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border: 1px solid rgba(212,175,55,0.2);
    filter: grayscale(1) invert(1) contrast(1.2);
}

/* ==========================================================================
   GLOBAL STRUCTURE: FOOTER ARCHITECTURE
   ========================================================================== */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 80px 8% 30px 8%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-socials a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    color: var(--text-muted);
    border-radius: 50%;
}

.footer-socials a:hover {
    color: #000;
    background-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   MOBILE ECOSYSTEM & FIXED RESPONSIVE CONTROLS
   ========================================================================== */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 9999;
    grid-template-columns: 1fr 1fr 1fr;
}

.mobile-action-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.mobile-action-item:last-child {
    border-right: none;
}

.mobile-action-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.mobile-action-item.m-wa i { color: #25d366; }
.mobile-action-item.m-call i { color: var(--gold); }
.mobile-action-item.m-book i { color: #3498db; }

@media (max-width: 992px) {
    .header-nav { top: 0; }
    .top-bar { display: none; } /* Integrated into mobile framework */
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(212,175,55,0.2);
    }
    
    .nav-links.active { left: 0; }
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.1rem; }
    
    .about-split, .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    body { padding-bottom: 60px; } /* Space for mobile floating nav */
    .mobile-action-bar { display: grid; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-container { padding: 20px; }
    .pricing-name { font-size: 1.1rem; }
}
/* ==========================================================================
   UPDATED TESTIMONIAL GRID SYSTEM (3 CARDS)
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid .testimonial-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 50px 35px 40px 35px;
    text-align: left;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-grid .testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-grid .quote-icon {
    color: rgba(212, 175, 55, 0.15);
    font-size: 2.2rem;
    position: absolute;
    top: 25px;
    right: 30px;
    transition: var(--transition-smooth);
}

.testimonial-grid .testimonial-author {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
}

/* Hover Micro-interactions */
.testimonial-grid .testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.testimonial-grid .testimonial-card:hover .quote-icon {
    color: var(--gold);
    transform: scale(1.1);
}
/* ==========================================================================
   MODERN LUXURY PRICING TABLE / CARD SYSTEM
   ========================================================================== */

.modern-pricing-container {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 20px;
}

/* Table Header */
.pricing-table-header {
    display: flex;
    padding: 0 30px 15px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* Grid Alignment Strategy */
.col-service { flex: 0 0 50%; }
.col-duration { flex: 0 0 20%; display: flex; align-items: center; color: rgba(255,255,255,0.7); }
.col-price { flex: 0 0 15%; display: flex; align-items: center; font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold); }
.col-action { flex: 0 0 15%; display: flex; align-items: center; justify-content: flex-end; }

/* The Row Cards */
.pricing-row {
    display: flex;
    background: #111111; /* Slightly lighter than pure black */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Micro-interaction */
.pricing-row:hover {
    background: #151515;
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px); /* Smooth slide right on hover */
    box-shadow: -5px 10px 30px rgba(0,0,0,0.5);
}

/* Service Column Details */
.col-service h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}

.col-service p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 90%;
    line-height: 1.5;
}

/* Badges & Buttons */
.badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.book-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Premium Highlight Rows */
.premium-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
}

.vip-row {
    background: linear-gradient(90deg, #16140e 0%, #111111 100%);
    border-color: rgba(212, 175, 55, 0.15);
}

.vip-btn {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 600;
}
.vip-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Mobile Responsiveness: Morphs from a Table into Stacked Cards */
@media (max-width: 850px) {
    .pricing-table-header {
        display: none; /* Hide headers on mobile */
    }
    
    .pricing-row {
        flex-direction: column;
        padding: 25px;
    }

    .col-service, .col-duration, .col-price, .col-action {
        flex: 1 1 auto;
        margin-bottom: 15px;
    }

    .col-duration {
        font-size: 0.9rem;
    }

    .col-price {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .col-action {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .book-btn {
        width: 100%; /* Full width button on mobile */
        text-align: center;
    }
}
/* Page Header */
.page-header {
    text-align: center;
    padding: 80px 20px;
    background: #050505;
}
.page-header h1 { font-family: serif; font-size: 3rem; color: #d4af37; }

/* Pricing Grid */
.pricing-page-section { padding: 50px 20px; background: #000; }
.full-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Styles */
.pricing-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s;
    position: relative;
}
.pricing-card:hover { border-color: #d4af37; transform: translateY(-10px); }

.pricing-card h4 { color: #fff; font-size: 1.4rem; margin-bottom: 15px; }
.pricing-card .price { color: #d4af37; font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
.pricing-card .duration { color: #888; margin-bottom: 20px; font-size: 0.9rem; }
.pricing-card p { color: #aaa; margin-bottom: 30px; font-size: 0.9rem; }

/* Buttons */
.book-btn {
    display: block;
    padding: 12px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}
.book-btn:hover { background: #d4af37; color: #000; }

/* Premium Card Special Styling */
.premium-card { background: linear-gradient(145deg, #d4af37, #b8860b); }
.premium-card h4, .premium-card .price, .premium-card p { color: #000; }
.premium-card .book-btn { border-color: #000; color: #000; }
.premium-card .book-btn:hover { background: #000; color: #d4af37; }

.badge {
    background: #d4af37;
    color: #000;
    padding: 2px 8px;
    font-size: 0.6rem;
    vertical-align: middle;
    border-radius: 4px;
}
/* Pricing Section Container */
.home-pricing { 
    padding: 100px 20px; 
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%); 
    text-align: center; /* Ye content ko center kar dega */
}

.section-title { margin-bottom: 50px; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: #fff; margin-bottom: 10px; }
.section-desc { color: rgba(255, 255, 255, 0.5); font-size: 1rem; margin-bottom: 20px; font-style: italic; }

/* Premium 4-Column Grid Layout */
.luxury-pricing-grid {
    display: grid;
    /* 4 columns with minimum width of 220px */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    justify-items: center; /* Ensures perfect alignment */
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .luxury-pricing-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 600px) {
    .luxury-pricing-grid {
        grid-template-columns: 1fr; /* 1 column for phones */
    }
}
.luxury-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Card ke andar sab kuch center karne ke liye */
}

.luxury-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-10px);
}

.card-desc { 
    color: rgba(255, 255, 255, 0.4); 
    font-size: 0.85rem; 
    margin-bottom: 25px; 
    line-height: 1.5;
    flex-grow: 1; /* Taaki buttons align ho jayein */
}

.luxury-btn {
    padding: 12px 30px;
    border: 1px solid #d4af37;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.luxury-card:hover .luxury-btn { background: #d4af37; color: #000; }
.cta-full-width {
    width: 100%;
    position: relative;
    background: url('image/cta-luxury-spa-mg-road-gurgaon.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Luxury parallax effect */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for readability */
    padding: 80px 20px;
}

.cta-container {
    max-width: 900px; /* Thoda wide layout */
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.cta-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Responsive adjustment for wide look */
@media (max-width: 768px) {
    .cta-container h2 { font-size: 2rem; }
    .cta-full-width { min-height: auto; }
}
/* =========================================
   ABOUT PAGE STYLES
========================================= */

/* About Hero Section */
.page-hero {
    width: 100%;
    height: 60vh;
    background: url('image/cta-luxury-spa-mg-road-gurgaon.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Mobile screen ke liye special fix */
@media screen and (max-width: 768px) {
    .page-hero {
        padding-top: 130px; /* Mobile par header zyada jagah leta hai, isliye zyada space */
    }
    
    /* Optional: Header ka background solid black kar dein taaki text aur logo alag dikhein */
    .header-nav {
        background-color: #050505 !important;
    }
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.hero-overlay p {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Our Story Section (Image + Text) */
.about-story {
    padding: 100px 20px;
    background: #0a0a0a;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.story-content span {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 15px 0 25px;
}

.story-content p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content .signature p {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 30px;
}

/* Why Choose Us Features */
.about-features {
    padding: 80px 20px;
    background: #111;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.feature-box {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.feature-box i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .story-container { grid-template-columns: 1fr; }
    .hero-overlay h1 { font-size: 2.5rem; }
}
/* =========================================
   DETAILED SERVICES SECTION
========================================= */
.services-detailed {
    padding: 100px 20px;
    background: #050505; /* Deep dark background */
}

.services-detailed .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Space between each service row */
}

/* Service Row Layout */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Alternating Reverse Row */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* Image Side */
.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.4s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Content Side */
.service-info {
    flex: 1;
}

.service-info span {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 15px 0 20px;
}

.service-info p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Meta Data (Time & Price) */
.service-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

.service-meta p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-meta i {
    color: #d4af37;
}

.service-price {
    color: #d4af37 !important;
    font-size: 1.1rem;
}

/* Solid Gold Button Style for Services Page */
.btn-gold {
    display: inline-block;
    padding: 15px 35px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* =========================================
   MOBILE RESPONSIVENESS (SERVICES PAGE)
========================================= */
@media (max-width: 991px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .service-image img {
        height: 350px;
    }
    .service-info {
        text-align: center;
    }
    .service-meta {
        justify-content: center;
    }
}
/* =========================================
   CONTACT SECTION (2-Column Grid)
========================================= */
.contact-section {
    padding: 100px 20px;
    background: #0a0a0a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* --- Left Side: Info --- */
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-desc {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #aaa;
    font-size: 0.95rem;
}

/* --- Right Side: Form --- */
.contact-form-wrapper {
    background: #111;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #050505;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

/* Dropdown color fix for dark theme */
.form-group select option {
    background: #111;
    color: #fff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #d4af37;
    background: #000;
}

/* Calendar Icon Fix for Date Input */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

/* =========================================
   MAP SECTION
========================================= */
.map-section {
    width: 100%;
    height: 450px;
    display: block;
    /* Optional: Makes the map blend better with a dark theme */
    filter: grayscale(80%) contrast(1.2);
}

/* =========================================
   MOBILE RESPONSIVENESS (CONTACT PAGE)
========================================= */
@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
/* =========================================
   GALLERY HERO SECTION
========================================= */
.gallery-hero {
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

/* =========================================
   GALLERY GRID LAYOUT
========================================= */
.gallery-section {
    padding: 100px 20px;
    background: #050505;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive CSS Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Gallery Individual Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Gold Overlay */
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(212, 175, 55, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.item-overlay h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.item-overlay span {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s; /* Slight delay for subtitle */
}

/* --- HOVER EFFECTS --- */
.gallery-item:hover img {
    transform: scale(1.08); /* Image zoom effect */
}

.gallery-item:hover .item-overlay {
    opacity: 1; /* Overlay visible ho jayega */
}

.gallery-item:hover .item-overlay h3,
.gallery-item:hover .item-overlay span {
    transform: translateY(0); /* Text upar sliding effect */
}

/* =========================================
   LIGHTBOX MODAL STYLING (Click to Enlarge)
========================================= */
.lightbox {
    display: none; /* Default Hidden */
    position: fixed;
    z-index: 9999; /* Sabse upar dikhe */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Deep dark background */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

/* Image inside Lightbox */
.lightbox-content {
    max-width: 85%;
    max-height: 75vh;
    object-fit: contain;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    animation: zoomIn 0.3s ease;
}

/* Caption Text */
#lightboxCaption {
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* Close Button (X) */
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* Smooth Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Mobile par single column */
        gap: 20px;
    }
    .lightbox-content {
        max-width: 95%;
    }
    .close-lightbox {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
}
/* ==========================================================================
   PREMIUM FAQ & CONCIERGE SECTION (2-COLUMN LAYOUT)
   ========================================================================== */

/* Main Container for 2 Columns */
.faq-two-col { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 50px; 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
    align-items: flex-start;
}

/* Left Side: FAQ Accordion */
.faq-left { 
    flex: 1 1 600px; 
}

/* Right Side: Spa Concierge Box */
.faq-right { 
    flex: 1 1 350px; 
}

/* Remove default triangle marker from HTML5 details tag in WebKit browsers */
details.premium-faq > summary::-webkit-details-marker { 
    display: none; 
}

/* Hover effects for Concierge Action Buttons */
.concierge-box a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 768px) {
    .faq-two-col {
        gap: 30px;
    }
    .faq-right {
        margin-top: 20px;
    }
}
