/* ==========================================================================
   LUMINA Luxe Salon & Spa - Custom Stylesheet
   Design: Modern Warm Luxury, Minimalist Gold & Slate
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-primary: #fdfbf8;
    /* Crisp warm alabaster/ivory */
    --bg-secondary: #f6efe6;
    /* Soft warm neutral */
    --bg-dark: #121316;
    /* Rich carbon dark background */
    --bg-dark-card: #1c1d22;
    /* Lighter dark panel background */

    --text-dark: #222222;
    /* Dominant slate charcoal text */
    --text-muted: #5e5a56;
    /* Soft gray-brown for body copy */
    --text-light: #ffffff;
    /* Pure white */
    --text-light-muted: #bdafa4;
    /* Muted warm gray for dark backgrounds */

    --gold-primary: #d4af37;
    /* Metallic gold */
    --gold-dark: #b8901e;
    /* Deep bronze-gold */
    --gold-gradient: linear-gradient(135deg, #e5c060 0%, #aa7c11 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);

    --white-translucent: rgba(253, 251, 248, 0.85);
    --dark-translucent: rgba(18, 19, 22, 0.85);
    --border-color: rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 15px 40px rgba(94, 90, 86, 0.06);
    --shadow-gold: 0 10px 25px rgba(170, 124, 17, 0.2);

    /* Layout */
    --header-height: 80px;
    --border-radius: 12px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   3. Global Layout Utilities & Typography
   -------------------------------------------------------------------------- */
.section-container,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-full-width {
    width: 100%;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation Menu
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--white-translucent);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding-right: 10px;
}

.soul-brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    display: block;
}

.header.scrolled .soul-brand-logo-img {
    height: 38px;
}

.footer-brand .soul-brand-logo-img {
    height: 52px;
}

.soul-brand-text {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 2.3rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: lowercase;
    letter-spacing: -1.5px;
    line-height: 1;
    z-index: 2;
    transition: var(--transition-smooth);
    user-select: none;
}

.soul-swoosh-svg {
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 135px;
    height: 45px;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.logo-swoosh {
    fill: none;
    stroke: var(--gold-dark);
    stroke-width: 0.95px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition-smooth);

    /* Elegant stroke drawing micro-animation on page entry! */
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawSwoosh 2.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes drawSwoosh {
    to {
        stroke-dashoffset: 0;
    }
}

.header.scrolled .logo-swoosh {
    stroke: var(--gold-primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

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

.nav-btn {
    background: var(--gold-gradient);
    color: var(--text-light) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Nav toggle animations when active */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. Hero Section Styling
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: url('../assets/salon-interior.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(253, 251, 248, 0.96) 30%, rgba(253, 251, 248, 0.7) 60%, rgba(253, 251, 248, 0.2) 100%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: calc((100% - 1200px) / 2 + 24px);
    animation: fadeUp 1.2s ease-out;
}

/* Fallback margin calculation if element exceeds viewport width */
@media screen and (max-width: 1250px) {
    .hero-content-container {
        margin-left: 24px;
    }
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Elements on Hero */
.hero-floating-card {
    position: absolute;
    right: 10%;
    bottom: 15%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gold-icon {
    font-size: 2rem;
    color: var(--gold-primary);
}

.card-inner h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.card-inner p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* --------------------------------------------------------------------------
   6. About Section Styling
   -------------------------------------------------------------------------- */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-paragraph {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.feat-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.feat-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Section Image Styling */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-main-image {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.image-frame-gold {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: var(--gold-gradient);
    color: var(--text-light);
    padding: 24px 32px;
    border-radius: var(--border-radius);
    z-index: 3;
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.about-badge h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.about-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. Services & Pricing Section
   -------------------------------------------------------------------------- */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

/* Pricing Menu Tabs Layout */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--bg-primary);
    color: var(--gold-dark);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-soft);
}

.tab-btn.active i {
    color: var(--gold-primary);
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.8s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--bg-primary);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.08);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(94, 90, 86, 0.1);
}

/* Specialized Card styling (Featured/Highlight) */
.service-card.highlight-card {
    border-left: 4px solid var(--gold-primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.duration {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.duration i {
    color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   8. Mid-Page Callout Banner Styling
   -------------------------------------------------------------------------- */
.banner-section {
    position: relative;
    padding: 100px 24px;
    background: url('../assets/service-spa.png') no-repeat center center/cover;
    text-align: center;
    color: var(--text-light);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 19, 22, 0.7);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.3;
}

.banner-content p {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   9. Gallery Section Styling
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.gallery-marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 20px;
}

.gallery-marquee {
    display: flex;
    width: max-content;
    animation: scrollGallery 40s linear infinite;
}

@keyframes scrollGallery {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    width: 350px;
    margin: 0 12px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.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: linear-gradient(to top, rgba(18, 19, 22, 0.9) 10%, rgba(18, 19, 22, 0.3) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    letter-spacing: 0.5px;
}

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

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

/* --------------------------------------------------------------------------
   10. Testimonials / Reviews Section Styling
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 32px;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Booking / Contact Form Section Styling (Glassmorphism!)
   -------------------------------------------------------------------------- */
.booking-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
    position: relative;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: flex-start;
}

.booking-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-secondary);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.contact-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.opening-hours {
    background-color: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.opening-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
}

.opening-hours ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opening-hours ul li span:last-child {
    font-weight: 600;
    color: var(--gold-dark);
}

/* Glassmorphic Form Container styling */
.glass-booking-card {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(18, 19, 22, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.glass-booking-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light-muted);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.input-wrapper.align-start {
    align-items: flex-start;
}

.input-wrapper:focus-within {
    border-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

.margin-top-icon {
    top: 16px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-size: 0.95rem;
    color: var(--text-light);
    background: transparent;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Custom select drop-down arrow */
.input-wrapper select option {
    background-color: var(--bg-dark-card);
    color: var(--text-light);
}

.input-wrapper textarea {
    resize: none;
}

/* Form success message overlay */
.form-response-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    padding: 48px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 5;
    animation: fadeIn 0.6s ease;
}

.form-response-success.active {
    display: flex;
}

.success-check {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.form-response-success h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 12px;
}

.form-response-success p {
    font-size: 0.95rem;
    color: var(--text-light-muted);
    max-width: 320px;
    line-height: 1.6;
}

/* Date picker color overrides */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   12. Footer Section Styling
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
    border-top: 2px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent glow */
.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 80px;
    margin-bottom: 56px;
}

.footer-brand .logo-brand-container {
    display: inline-block;
    height: auto;
    padding-right: 0;
    margin-bottom: 24px;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 24px;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.footer-links h3,
.footer-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 1px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '◇';
    font-size: 0.65rem;
    color: var(--gold-dark);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: scale(0.5);
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    padding: 6px 6px 6px 20px;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
    width: 100%;
}

.newsletter-form:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form input {
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-light);
    background: transparent;
    border: none;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: var(--gold-gradient);
    border: none;
    color: var(--text-dark) !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.newsletter-form button i {
    color: var(--text-dark) !important;
}

.newsletter-form button:hover {
    transform: scale(1.05) rotate(-10deg);
    box-shadow: var(--shadow-gold);
}

.newsletter-success-msg {
    display: none;
    font-size: 0.85rem;
    color: var(--gold-primary);
    animation: fadeIn 0.4s ease;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 30px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light-muted);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-terms {
    display: flex;
    gap: 24px;
}

.footer-terms a {
    color: var(--text-light-muted);
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 2px;
}

.footer-terms a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

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

.footer-terms a:hover::after {
    width: 100%;
}

/* --------------------------------------------------------------------------
   13. Responsive Media Queries (Mobile & Tablet Optimization)
   -------------------------------------------------------------------------- */

@media screen and (max-width: 992px) {

    /* Main Layout Sections height / spacing adjustment */
    :root {
        --header-height: 70px;
    }

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

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    

    

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Hero section text fitting */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-floating-card {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        padding: 40px 24px;
        box-shadow: var(--shadow-soft);
        border-bottom: 2px solid var(--gold-primary);
        transition: var(--transition-smooth);
        overflow-y: auto;
    }

    .nav-menu.active {
        top: var(--header-height);
    }

    .nav-list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .nav-btn {
        display: inline-block;
        width: 100%;
        max-width: 280px;
        margin: 10px 0;
    }

    .banner-content h2 {
        font-size: 2.1rem;
    }

    .glass-booking-card {
        padding: 32px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    

    

    .about-badge {
        padding: 16px 20px;
        left: 10px;
        bottom: 20px;
    }

    .about-badge h3 {
        font-size: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* Added Styles */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 20px;
}

.gallery-marquee {
    display: flex;
    width: max-content;
    animation: scrollGallery 40s linear infinite;
}

@keyframes scrollGallery {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    width: 350px;
    margin: 0 12px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.about-collage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(9, 50px);
    gap: 12px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.collage-box {
    background-color: #999999;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.collage-box:hover {
    background-color: #777777;
}

.box-1 { grid-area: 2 / 2 / 4 / 4; }
.box-2 { grid-area: 1 / 5 / 5 / 7; }
.box-3 { grid-area: 4 / 2 / 7 / 3; }
.box-4 { grid-area: 4 / 3 / 8 / 5; }
.box-5 { grid-area: 5 / 5 / 7 / 7; }
.box-6 { grid-area: 7 / 1 / 8 / 3; }
.box-7 { grid-area: 8 / 2 / 10 / 4; }
.box-8 { grid-area: 8 / 4 / 9 / 7; }

@media screen and (max-width: 576px) {
    .about-collage {
        max-width: 100%;
        grid-template-rows: repeat(9, 40px);
    }
}


/* ==========================================================================
   Photo Collage (About Section)
   ========================================================================== */
.about-collage {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 580px;
}

.collage-item {
    display: flex;
    gap: 14px;
}

/* Row 1 and Row 4: 2 equal boxes */
.collage-row1 .collage-box,
.collage-row4 .collage-box {
    flex: 1;
    height: 200px;
}

/* Row 2: 3 boxes. Middle one (owner portrait) is taller via aspect-ratio trick */
.collage-row2 .collage-box {
    flex: 1;
    height: 230px;
}

.collage-row2 .collage-box:nth-child(2) {
    flex: 1.2;
    height: 260px;
}

/* Row 3: 1 wide box */
.collage-row3 .collage-box {
    flex: 1;
    height: 180px;
}

.collage-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #c8bfb0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.collage-box:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collage-box:hover .collage-img {
    transform: scale(1.06);
}

.collage-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(18,19,22,0.85) 0%, transparent 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Empty placeholder boxes */
.collage-box-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.06);
}

.collage-box-empty .collage-label {
    position: static;
    background: none;
    color: var(--gold-dark);
    font-size: 0.75rem;
    padding: 6px 0 0;
    letter-spacing: 1.5px;
}

.collage-empty-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    opacity: 0.7;
}

/* Responsive: stack on small screens */
@media screen and (max-width: 768px) {
    .collage-row1 .collage-box,
    .collage-row4 .collage-box { height: 140px; }
    .collage-row2 .collage-box { height: 160px; }
    .collage-row2 .collage-box:nth-child(2) { height: 180px; }
    .collage-row3 .collage-box { height: 130px; }
}
