/* ============================================================
   RELAX & RENEW DAY SPA - STYLESHEET
   ============================================================
   1. CSS Custom Properties
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Navbar
   6. Mobile Menu
   7. Hero Section
   8. Section Components
   9. Card Components
   10. Service Cards
   11. Gallery / Image Grid
   12. Video Section
   13. Google Maps
   14. Price Tables
   15. Offers Banner
   16. Contact Form
   17. Footer
   18. Floating CTA
   19. Language Switcher
   20. Scroll Animations
   21. Page-Specific: Kids Spa Party
   22. Page-Specific: Bridal
   23. Media Queries
   ============================================================ */

/* 1. CSS Custom Properties
   ------------------------------------------------------------ */
:root {
    --color-cream: #F5F0EB;
    --color-cream-dark: #EDE6DD;
    --color-sage: #8BAB9E;
    --color-sage-dark: #6E9185;
    --color-sage-light: #A8C5B8;
    --color-teal: #5F8F81;
    --color-gold: #C4A265;
    --color-gold-light: #D4B87A;
    --color-copper: #B8956A;
    --color-charcoal: #333333;
    --color-charcoal-light: #555555;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-overlay: rgba(51, 51, 51, 0.55);
    --color-overlay-light: rgba(245, 240, 235, 0.92);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Segoe UI', Roboto, Arial, sans-serif;

    --fs-h1: clamp(2rem, 5vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 4vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 3vw, 1.75rem);
    --fs-h4: clamp(1.1rem, 2vw, 1.35rem);
    --fs-body: clamp(0.95rem, 1.5vw, 1.1rem);
    --fs-small: 0.875rem;
    --fs-nav: 0.95rem;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    --container-max: 1200px;
    --container-padding: 1.25rem;
    --navbar-height: 70px;
    --navbar-blur: 12px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease-out;
}

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

html {
    scroll-behavior: auto; /* Lenis handles smooth scroll */
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-sage-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-charcoal);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
h4 { font-size: var(--fs-h4); margin-bottom: var(--space-xs); }

p {
    margin-bottom: var(--space-sm);
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-gold { color: var(--color-gold); }
.text-sage { color: var(--color-sage-dark); }

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 300;
    color: var(--color-charcoal-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: var(--space-sm) auto var(--space-md);
    border: none;
}

/* 4. Layout Utilities
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.section--cream {
    background-color: var(--color-cream);
}

.section--white {
    background-color: var(--color-white);
}

.section--sage {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.section--sage h2,
.section--sage h3,
.section--sage h4 {
    color: var(--color-white);
}

.section--sage .section-divider {
    background: var(--color-gold-light);
}

.section--dark {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
}

.section--dark h2,
.section--dark h3 {
    color: var(--color-cream);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: var(--fs-nav);
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

.btn--primary:hover {
    background: var(--color-sage-dark);
    border-color: var(--color-sage-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-sage);
    border-color: var(--color-sage);
}

.btn--outline:hover {
    background: var(--color-sage);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-sage-dark);
    border-color: var(--color-white);
}

.btn--white:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* 5. Navbar
   ------------------------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: background var(--transition-normal),
                box-shadow var(--transition-normal),
                transform var(--transition-normal);
    background: transparent;
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(var(--navbar-blur));
    -webkit-backdrop-filter: blur(var(--navbar-blur));
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.navbar--hidden {
    transform: translateY(-100%);
}

.navbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar_logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar_logo img {
    height: 46px;
    width: 46px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.navbar_logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.navbar_logo-text span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    padding: 0.3rem 0;
    display: block;
    white-space: nowrap;
}

.navbar_logo-text::before,
.navbar_logo-text::after {
    display: none;
}

.navbar--scrolled .navbar_logo-text span {
    color: var(--color-charcoal);
}

.navbar_nav {
    display: none;
}

.navbar_links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar_link {
    position: relative;
    padding: 0.5rem 0.75rem;
    font-size: var(--fs-nav);
    font-weight: 400;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.navbar_link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.navbar_link:hover,
.navbar_link.is-active {
    color: var(--color-sage-dark);
}

.navbar_link:hover::after,
.navbar_link.is-active::after {
    transform: scaleX(1);
}

/* On transparent navbar (top of page), make links lighter if hero is dark */
.navbar:not(.navbar--scrolled) .navbar_link {
    color: var(--color-charcoal);
}

.navbar_right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Language Switcher */
.navbar_lang {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-sage);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.navbar_lang:hover {
    background: var(--color-sage);
    color: var(--color-white);
}

/* Hamburger Button */
.navbar_hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    z-index: 1001;
}

.navbar_hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.navbar_hamburger.is-active .navbar_hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar_hamburger.is-active .navbar_hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar_hamburger.is-active .navbar_hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 6. Mobile Menu
   ------------------------------------------------------------ */
.navbar_mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-cream);
    padding: calc(var(--navbar-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
}

.navbar_mobile-menu.is-open {
    transform: translateX(0);
}

.navbar_mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.navbar_mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.navbar_mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.navbar_mobile-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-charcoal);
    border-bottom: 1px solid var(--color-cream-dark);
    transition: color var(--transition-normal), padding-left var(--transition-normal);
}

.navbar_mobile-links a:hover,
.navbar_mobile-links a.is-active {
    color: var(--color-sage-dark);
    padding-left: 0.5rem;
}

.navbar_mobile-lang {
    display: none;
}

.navbar_mobile-lang a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    color: var(--color-sage-dark);
    border: 1.5px solid var(--color-sage);
    border-radius: var(--radius-sm);
    border-bottom: none;
}

/* 7. Hero Section
   ------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-teal) 50%, var(--color-sage-dark) 100%);
}

.hero--short {
    min-height: 35vh;
    padding-top: var(--navbar-height);
}

@media (min-width: 768px) {
    .hero--short {
        min-height: 50vh;
    }
}

.hero_bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
}

.hero--gradient .hero_overlay {
    background: linear-gradient(
        135deg,
        rgba(110, 145, 133, 0.85) 0%,
        rgba(95, 143, 129, 0.75) 40%,
        rgba(139, 171, 158, 0.7) 100%
    );
}

.hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-lg) var(--container-padding);
    max-width: 800px;
}

.hero_title {
    font-size: var(--fs-h1);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero_subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero_cta {
    display: inline-flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.hero_scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    animation: scroll-hint 2s ease-in-out infinite;
}

.hero_scroll-hint svg {
    width: 24px;
    height: 24px;
}

@keyframes scroll-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* 8. Section Components
   ------------------------------------------------------------ */
.section_header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section_header h2 {
    margin-bottom: var(--space-xs);
}

/* About / Why Choose Us */
.about-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.about-grid_image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-grid_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid_text h2 {
    margin-bottom: var(--space-sm);
}

.about-grid_text p {
    color: var(--color-charcoal-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.about-feature_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    color: var(--color-white);
    border-radius: var(--radius-full);
}

.about-feature_icon svg {
    width: 20px;
    height: 20px;
}

/* 9. Card Components
   ------------------------------------------------------------ */
.cards-grid {
    display: grid;
    gap: var(--space-md);
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    color: var(--color-white);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.card_icon svg {
    width: 28px;
    height: 28px;
}

.card_body {
    padding: var(--space-md);
}

.card_body h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-xs);
}

.card_body p {
    font-size: var(--fs-small);
    color: var(--color-charcoal-light);
    margin-bottom: var(--space-sm);
}

.card_link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-sage-dark);
    transition: gap var(--transition-normal);
}

.card_link:hover {
    gap: 0.65rem;
    color: var(--color-gold);
}

.card_link svg {
    width: 16px;
    height: 16px;
}

/* Service card with image */
.card--service .card_image {
    height: 200px;
    overflow: hidden;
}

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

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

/* 10. Service Cards (Massage, Therapy detail cards)
   ------------------------------------------------------------ */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-left: 4px solid var(--color-sage);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.service-card_name {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 600;
    color: var(--color-charcoal);
}

.service-card_meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-card_duration {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--fs-small);
    color: var(--color-charcoal-light);
}

.service-card_duration svg {
    width: 14px;
    height: 14px;
}

.service-card_price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-sage-dark);
}

.service-card_description {
    font-size: var(--fs-small);
    color: var(--color-charcoal-light);
    line-height: 1.6;
    margin: 0;
}

.services-list {
    display: grid;
    gap: var(--space-md);
}

/* 11. Gallery / Image Grid
   ------------------------------------------------------------ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
}

.gallery-grid_item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-grid_item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox_img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.lightbox_close:hover {
    background: rgba(255,255,255,0.3);
}

/* 12. Video Section
   ------------------------------------------------------------ */
.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    display: block;
}

/* 13. Google Maps
   ------------------------------------------------------------ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* 14. Price Tables
   ------------------------------------------------------------ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table thead {
    background: var(--color-sage);
    color: var(--color-white);
}

.price-table th {
    padding: 0.85rem var(--space-sm);
    text-align: left;
    font-weight: 600;
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-table td {
    padding: 0.85rem var(--space-sm);
    border-bottom: 1px solid var(--color-cream-dark);
    font-size: var(--fs-body);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--color-cream);
}

.price-table_price {
    font-weight: 700;
    color: var(--color-sage-dark);
    white-space: nowrap;
}

.price-table_duration {
    color: var(--color-charcoal-light);
    font-size: var(--fs-small);
}

.price-category {
    margin-bottom: var(--space-xl);
}

.price-category_title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price-category_icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage);
    color: var(--color-white);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.price-category_icon svg {
    width: 22px;
    height: 22px;
}

/* 15. Offers Banner
   ------------------------------------------------------------ */
.offers-banner {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-copper) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.offers-banner h2,
.offers-banner h3 {
    color: var(--color-white);
}

.offers-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.offer-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    backdrop-filter: blur(4px);
}

.offer-item_badge {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-xs);
}

.offer-item_text {
    font-size: var(--fs-body);
    margin: 0;
}

/* 16. Contact Form
   ------------------------------------------------------------ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: var(--fs-small);
    color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem var(--space-sm);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-charcoal);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(139, 171, 158, 0.15);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-sage-light);
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.form-success.is-visible {
    display: block;
}

.form-success svg {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
}

/* Contact info cards */
.contact-cards {
    display: grid;
    gap: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card_icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage);
    color: var(--color-white);
    border-radius: var(--radius-full);
}

.contact-card_icon svg {
    width: 22px;
    height: 22px;
}

.contact-card_text h4 {
    margin-bottom: 0.25rem;
}

.contact-card_text a {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 17. Footer
   ------------------------------------------------------------ */
.footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-xl);
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

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

.footer_inner {
    display: grid;
    gap: var(--space-lg);
    text-align: center;
}

.footer_brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_brand img {
    height: 46px;
    width: 46px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--space-xs);
}

.footer_brand .navbar_logo-text {
    margin-bottom: var(--space-sm);
}

.footer_brand .navbar_logo-text span {
    color: var(--color-cream);
}

.footer_social {
    justify-content: center;
}

.footer_contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_links {
    display: none;
}

@media (min-width: 768px) {
    .footer_links {
        display: block;
    }
}

.footer_tagline {
    font-style: italic;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer_links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer_links a {
    font-size: var(--fs-small);
}

.footer_contact p {
    font-size: var(--fs-small);
    margin-bottom: 0.4rem;
}

.footer_social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.footer_social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.footer_social-link:hover {
    background: var(--color-gold);
    transform: scale(1.1);
    color: var(--color-white);
}

.footer_social-link svg {
    width: 18px;
    height: 18px;
}

.footer_offers {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-sm);
    font-size: var(--fs-small);
}

.footer_offers strong {
    color: var(--color-gold-light);
}

.footer_bottom {
    text-align: center;
    padding: var(--space-md) 0;
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.4);
}

/* 18. Floating CTA
   ------------------------------------------------------------ */
.cta-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--color-sage);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: cta-pulse 2.5s ease-in-out infinite;
}

.cta-float:hover {
    background: var(--color-sage-dark);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    animation: none;
}

.cta-float svg {
    width: 24px;
    height: 24px;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 0 0 0 rgba(139, 171, 158, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 0 0 14px rgba(139, 171, 158, 0); }
}

/* 19. Language Switcher (additional styles)
   ------------------------------------------------------------ */
/* Already covered in navbar section above */

/* 20. Scroll Animations
   ------------------------------------------------------------ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.92);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Lazy load image fade-in */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* 21. Page-Specific: Kids Spa Party
   ------------------------------------------------------------ */
.kids-hero {
    background: linear-gradient(135deg, #E8B4C8 0%, #D4A0B5 50%, #C88FA8 100%);
}

.kids-pricing {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid #E8B4C8;
    max-width: 500px;
    margin: 0 auto;
}

.kids-pricing_amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #C88FA8;
}

.kids-pricing_extra {
    font-size: var(--fs-body);
    color: var(--color-charcoal-light);
}

/* 22. Page-Specific: Bridal
   ------------------------------------------------------------ */
.bridal-hero {
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, #E8DDD3 50%, var(--color-gold-light) 100%);
}

.bridal-package {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.bridal-package_price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.bridal-package_duration {
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
    margin-bottom: var(--space-md);
}

.bridal-package_includes {
    text-align: left;
    margin: var(--space-md) 0;
}

.bridal-package_includes li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: var(--fs-body);
    border-bottom: 1px solid var(--color-cream-dark);
}

.bridal-package_includes li svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Gift card section */
.giftcard-image {
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.giftcard-image img {
    width: 100%;
    height: auto;
}

/* 23. Media Queries
   ------------------------------------------------------------ */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_inner {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer_brand {
        align-items: flex-start;
    }

    .footer_social {
        justify-content: flex-start;
    }

    .footer_contact-info {
        align-items: flex-start;
    }

    .map-container iframe {
        height: 400px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .navbar_nav {
        display: block;
    }

    .navbar_hamburger {
        display: none;
    }

    .navbar_mobile-menu,
    .navbar_mobile-overlay {
        display: none;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_inner {
        grid-template-columns: 1.5fr 1fr 1fr auto;
    }

    .map-container iframe {
        height: 450px;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    :root {
        --container-padding: 2rem;
    }

    .gallery-grid {
        gap: var(--space-md);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .cta-float {
        animation: none;
    }
}
