/* 
================================================================
   MAIN SALOON - PREMIUM LUXURY INDIAN STYLE
   Vanilla CSS Design Framework
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #FAF6F0;       /* Serene Linen Cream */
    --bg-velvet: #F4EFE6;     /* Muted Sand Beige */
    --bg-card: #FFFFFF;       /* Pure White for Premium Cards */
    --bg-card-hover: #FAF8F5; /* Very Soft White Hover */
    --gold: #B8977E;          /* Sand Clay Accent Gold */
    --gold-antique: #8E7B6C;  /* Muted Earthy Gold */
    --gold-dark: #736052;     /* Clay Bark Focus */
    --gold-glow: rgba(184, 151, 126, 0.12);
    --gold-gradient: linear-gradient(135deg, #C5A48A 0%, #B8977E 50%, #D8C3B4 100%);
    --crimson: #781d2d;       /* Sandalwood Crimson Rose */
    --crimson-dark: #5A121F;
    --crimson-glow: rgba(120, 29, 45, 0.08);
    --text-gold: #736052;     /* Darker Clay Gold for readable accent */
    --text-white: #2C2A29;    /* Deep Charcoal Text (highly readable) */
    --text-gray: #4E4A47;     /* Medium-Dark Gray for accessible contrast */
    --border-gold: rgba(142, 131, 119, 0.16); /* Delicate Sand Border */
    --border-gold-bright: rgba(184, 151, 126, 0.35);
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-luxury: 0 10px 30px rgba(142, 131, 119, 0.08), 0 1px 3px rgba(0,0,0,0.02);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --blur: blur(12px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-antique);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

h2::before {
    content: '✦';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 14px;
    background: var(--bg-dark);
    padding: 0 10px;
    z-index: 1;
}

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

/* Global Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

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

/* Luxury Indian Mandala/Overlay Accents */
.mandala-bg {
    background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: 1px solid var(--gold-antique);
    background: transparent;
    color: var(--text-white);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    border: none;
    color: #FFFFFF;
    background: var(--crimson);
    box-shadow: 0 4px 15px var(--crimson-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--crimson-dark);
    box-shadow: 0 8px 25px rgba(120, 29, 45, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(142, 131, 119, 0.25);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(142, 131, 119, 0.08), 0 1px 3px rgba(184, 151, 126, 0.02);
    transition: var(--transition);
}

header.scrolled {
    top: 10px;
    width: 95%;
    background: rgba(250, 246, 240, 0.95);
    border-color: rgba(142, 131, 119, 0.35);
    box-shadow: 0 15px 40px rgba(142, 131, 119, 0.12), 0 2px 5px rgba(184, 151, 126, 0.04);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 30px;
    transition: var(--transition);
}

header.scrolled .container {
    height: 75px;
}

.header-logo {
    height: 65px;
    max-width: 240px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.12)) brightness(0.9);
}

header.scrolled .header-logo {
    height: 52px;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo span {
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px; /* increased spacing for breathing room */
    align-items: center;
}

nav ul li a {
    font-size: 0.82rem; /* increased for clear readability and contrast */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--crimson);
    background: rgba(184, 151, 126, 0.12);
}

.btn-book-nav {
    display: inline-block;
    background: var(--crimson);
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(120, 29, 45, 0.2);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book-nav:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 8px 25px rgba(120, 29, 45, 0.35);
    background: var(--crimson-dark);
    color: #FFFFFF !important;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--gold-antique);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 100px; /* Offset for fixed floating header */
}

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

.hero-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;
}

.hero-slide.active {
    opacity: 0.85;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(250, 246, 240, 0.5) 0%, var(--bg-dark) 95%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-family: var(--font-title);
    color: var(--crimson);
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-white);
}

.hero-description {
    font-size: 1.1rem;
    color: #4E4A47;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

/* Introduction Section */
.intro {
    background: var(--bg-velvet);
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content {
}

.intro-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.intro-description {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-feature i {
    color: var(--gold);
    font-size: 1.5rem;
}

.intro-image-container {
    position: relative;
    padding: 20px;
}

.intro-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    box-shadow: var(--shadow-luxury);
}

.intro-image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 4px;
    transform: translate(20px, 20px);
    z-index: -1;
    pointer-events: none;
    transition: var(--transition);
}

.intro-image-container:hover .intro-image-border {
    transform: translate(10px, 10px);
}

/* Featured Services */
.services-section {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-bright);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.service-card-content {
    padding: 30px;
}

.service-title-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px dotted var(--border-gold);
    padding-bottom: 10px;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.service-price {
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 65px;
    overflow: hidden;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--gold-antique);
}

.service-book-btn {
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-color: var(--border-gold-bright);
}

/* Why Choose Us */
.why-us {
    background: var(--bg-velvet);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--border-gold-bright);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-desc {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Before / After Slider */
.ba-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-before {
    background-size: cover;
    width: 50%;
    z-index: 2;
}

.ba-after {
    z-index: 1;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
}

.ba-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--border-gold-bright);
    transform: translateY(-8px);
}

.team-img-wrap {
    height: 320px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.team-details {
    padding: 25px;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-designation {
    color: var(--gold-antique);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.team-experience {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Testimonials Carousel */
.testimonials {
    background: var(--bg-velvet);
}

.reviews-carousel {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.review-slide {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    display: none;
}

.review-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

.review-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 30px;
}

.review-author {
    font-family: var(--font-title);
    color: var(--gold-antique);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-gold);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.gallery-overlay span {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    color: var(--gold);
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

/* Contact & Address */
.contact-section {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details-list {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.contact-label {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--text-white);
}

.contact-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: var(--bg-card);
}

.social-icon:hover {
    color: var(--bg-dark);
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Appointment Booking Form & Success */
.booking-section {
    background: var(--bg-velvet);
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-luxury);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-gold);
    letter-spacing: 1px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(184, 151, 126, 0.25);
    background: #ffffff;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-white);
}

.form-textarea {
    resize: vertical;
    height: 120px;
}

.btn-form {
    width: 100%;
    font-size: 0.9rem;
}

/* Booking Success Card */
.success-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 50px;
    max-width: 600px;
    margin: 100px auto;
    box-shadow: var(--shadow-luxury);
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.success-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.success-message {
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* Inner Page Hero/Banner */
.inner-hero {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 90px; /* Offset for fixed floating header */
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 10, 10, 0.7); /* Soft luxury dark overlay */
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #FFFFFF; /* High contrast white text */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    font-size: 0.85rem;
    color: #EFEAE2; /* Light sand for high contrast */
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #FFFFFF;
    transition: var(--transition);
}

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

/* Footer Section */
footer {
    background: #090606;
    border-top: 1px solid var(--border-gold);
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background: var(--gold);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-desc {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.footer-hours-list {
    margin-top: 15px;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom p span {
    color: var(--gold);
}

/* Scroll Animation classes (Observer fallbacks) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Native CSS Scroll-driven animations */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes scroll-fade-in {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-animate {
      animation: scroll-fade-in linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
  }
}

/* Offers Styling */
.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition);
}

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

.offer-img-wrap {
    width: 40%;
    min-height: 250px;
}

.offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-details {
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-badge {
    background: var(--crimson-dark);
    border: 1px solid var(--crimson);
    color: var(--text-white);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.offer-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-code {
    font-family: var(--font-title);
    border: 1px dashed var(--gold);
    padding: 8px 16px;
    color: var(--gold);
    font-weight: 600;
}

/* Interactive Before/After styles */
.gallery-ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================================================
   RESPONSIVENESS (Media Queries)
   ================================================================
*/

@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-img {
        height: 380px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .offer-card {
        flex-direction: column;
    }
    
    .offer-img-wrap {
        width: 100%;
        height: 250px;
    }
    
    .offer-details {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }
    
    header.scrolled {
        top: 0;
        width: 100%;
    }

    header .container {
        height: 70px;
        padding: 0 20px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(14, 10, 10, 0.98);
        backdrop-filter: var(--blur);
        border-top: 1px solid var(--border-gold);
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 50px 0;
        gap: 30px;
    }
    
    nav ul li a {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .booking-wrapper {
        padding: 30px 20px;
    }
    
    .gallery-ba-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-slide {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .ba-container {
        height: 300px;
    }
}
