:root {
    --primary-color: #1a237e;
    /* Royal Blue */
    --accent-color: #D4AF37;
    /* Gold */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 80px;
    width: auto;
    border: none;
    /* Remove any border */
    outline: none;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SLIDER SECTION
   ========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slow zoom animation for active slide background */
.slide.active {
    animation: slowZoomIn 8s ease-out forwards;
}

@keyframes slowZoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* Dark gradient overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    padding: 2rem;
}

/* Animated text elements */
.slide.active .slide-subtitle {
    animation: slideUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.slide.active .slide-title {
    animation: slideUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.slide.active .slide-description {
    animation: fadeIn 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

.slide.active .slide-btn {
    animation: slideUp 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Subtitle styling */
.slide-subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1);
}

/* Main title styling */
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-title em {
    font-style: italic;
    color: var(--accent-color);
}

/* Description styling */
.slide-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* CTA Button */
.slide-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.slide-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.slide-btn:hover::before {
    left: 100%;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow.prev {
    left: 3%;
}

.slider-arrow.next {
    right: 3%;
}

.slider-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

/* Navigation Dots */
.hero-slider .slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.hero-slider .slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider .slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-slider .slider-dots .dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 100;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 2%;
    }

    .slider-arrow.next {
        right: 2%;
    }

    .slide-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .slide-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 600px;
    }

    .slider-arrow {
        display: none;
    }

    .slide-title {
        font-size: 2.8rem;
    }

    .slide-subtitle {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .slide-btn {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .hero-slider .slider-dots {
        bottom: 100px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* ===========================
   LUXURY SPA HERO SECTION (LEGACY)
   =========================== */

/* Luxury easing curve */
:root {
    --ease-luxury: cubic-bezier(0.4, 0.0, 0.2, 1);
    --bg-cream: #FAF8F5;
    --text-charcoal: #2D2D2D;
}

/* Header slide-down animation */
header {
    animation: headerSlideDown 0.8s var(--ease-luxury) forwards;
}

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

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



/* Background with slow zoom */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 10s ease-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(250, 248, 245, 0.85) 0%,
            rgba(250, 248, 245, 0.7) 50%,
            rgba(250, 248, 245, 0.6) 100%);
}

/* Hero Inner Container - Side by Side Layout */
.hero-luxury-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1400px;
    width: 90%;
    padding: 2rem;
}

/* Hero Content Container */
.hero-luxury-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

/* Hero Model Image Container */
.hero-model-container {
    flex: 1;
    max-width: 500px;
    position: relative;

    /* Animation */
    opacity: 0;
    transform: translateX(30px);
    animation: fadeSlideLeft 1s var(--ease-luxury) 0.3s forwards;
}

.hero-model-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Mobile Responsive for side-by-side layout */
@media (max-width: 992px) {
    .hero-luxury-inner {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }

    .hero-luxury-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-model-container {
        max-width: 350px;
    }
}

/* Primary Headline - "Beauty Spa" */
.hero-primary-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    line-height: 1.1;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s var(--ease-luxury) forwards;
}

/* Secondary Headline - "Luxury Spa Experiences" */
.hero-secondary-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    /* Animation with delay */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s var(--ease-luxury) 0.2s forwards;
}

/* Body Copy */
.hero-body-copy {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;

    /* Animation with blur */
    opacity: 0;
    filter: blur(8px);
    animation: fadeBlurIn 0.8s var(--ease-luxury) 0.4s forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeBlurIn {
    from {
        opacity: 0;
        filter: blur(8px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

/* Primary CTA Button */
.hero-primary-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-charcoal);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-luxury);

    /* Animation */
    opacity: 0;
    transform: scale(0.96);
    animation: fadeScaleUp 0.6s var(--ease-luxury) 0.6s forwards;
}

.hero-primary-cta:hover {
    background-color: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Secondary Link */
.hero-secondary-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.05em;
    position: relative;

    /* Animation */
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-luxury) 0.8s forwards;
}

.hero-secondary-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s var(--ease-luxury);
}

.hero-secondary-link:hover {
    color: var(--accent-color);
}

.hero-secondary-link:hover::after {
    width: 100%;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Butterfly positioning for luxury hero */
.hero-luxury .butterfly-container {
    z-index: 15;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-luxury {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-luxury-content {
        padding: 1.5rem;
    }

    .hero-primary-headline {
        font-size: 2.8rem;
    }

    .hero-secondary-headline {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .hero-body-copy {
        font-size: 1rem;
    }

    .hero-primary-cta {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
}

/* ===========================
   END LUXURY SPA HERO
   =========================== */

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
    position: relative;
    animation: bgZoom 20s infinite alternate;
}

@keyframes bgZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-btns {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    /* Softer corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
    opacity: 0;
    /* Hidden initially for scroll reveal */
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Shop Preview */
.shop-preview {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.product-card {
    border: none;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    background: var(--white);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.product-image {
    height: 250px;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    overflow: hidden;
    border-radius: 10px;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    /* Zoom effect */
}

.product-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Keyframes for Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Scroll Reveal Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 5px;
    /* Slide effect */
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        color: var(--primary-color);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .hero-new .hero-wrapper {
        flex-direction: column;
    }

    .hero-image-container {
        width: 100% !important;
    }

    .hero-accent {
        width: 100% !important;
        height: 200px !important;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    .logo-text {
        font-size: 1.5rem !important;
    }
}

/* New Hero Section - Lizaffair Style */
.hero-new {
    width: 100%;
    min-height: 80vh;
    background-color: #6a9ca5;
    /* Teal/muted blue background */
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

.hero-image-container {
    position: relative;
    width: 60%;
    overflow: visible;
    z-index: 5;
}

/* Curved mask for the hero image */
.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: #6a9ca5;
    clip-path: ellipse(60% 50% at 100% 50%);
    z-index: 2;
}

.hero-model {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
}

.hero-text-overlay {
    position: absolute;
    bottom: 18%;
    left: 8%;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: whiteGlow 2s ease-in-out infinite alternate;
}

/* Let's refine the glow for a "smooth white" look */
@keyframes whiteGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

.hero-accent {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6a9ca5;
}

.hero-accent-shape {
    position: absolute;
    width: 75%;
    height: 55%;
    background-color: var(--accent-color);
    border-radius: 100px 0 0 0;
    bottom: 0;
    right: 0;
}

.hero-cta-box {
    position: absolute;
    bottom: 18%;
    right: 15%;
    z-index: 10;
}

.hero-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    transition: transform 0.3s ease;
    text-align: center;
}

.hero-cta-btn:hover {
    transform: scale(1.05);
}

.hero-cta-btn span {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 3px;
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-features {
        flex-direction: column;
    }
}

/* Butterfly Animations */
.butterfly-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ensure full height */
    overflow: hidden;
    /* Or visible if you want them flying out */
    z-index: 20;
    /* Increased z-index to be above hero content */
    pointer-events: none;
}

.butterfly {
    position: absolute;
    width: 45px;
    height: auto;
    opacity: 0.9;
    /* Removed drop-shadow to prevent border look */
}

.butterfly img {
    width: 100%;
    display: block;
}

/* General Float Animation */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, -50px) rotate(5deg);
    }

    50% {
        transform: translate(200px, 0) rotate(0deg);
    }

    75% {
        transform: translate(300px, -50px) rotate(-5deg);
    }

    100% {
        transform: translate(400px, 0) rotate(0deg);
    }
}

/* Specific Butterfly Paths */
.b1 {
    top: 60%;
    left: -10%;
    animation: fly1 15s linear infinite;
    width: 40px;
}

.b2 {
    top: 30%;
    left: -10%;
    animation: fly2 20s linear infinite;
    animation-delay: 2s;
    width: 30px;
    filter: hue-rotate(20deg);
}

.b3 {
    top: 80%;
    left: -10%;
    animation: fly3 18s linear infinite;
    animation-delay: 5s;
    width: 35px;
    filter: hue-rotate(-10deg);
}

.b4 {
    top: 15%;
    left: -10%;
    animation: fly1 22s linear infinite;
    animation-delay: 8s;
    width: 25px;
}

.b5 {
    top: 50%;
    left: -10%;
    animation: fly3 17s linear infinite;
    animation-delay: 1s;
    width: 32px;
}

.b6 {
    top: 40%;
    left: -10%;
    animation: fly2 19s linear infinite;
    animation-delay: 10s;
    width: 28px;
    filter: brightness(1.2);
}

/* Updated Flight Paths */
@keyframes fly1 {
    0% {
        transform: translateX(-100px) translateY(0) rotate(15deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        transform: translateX(25vw) translateY(-60px) rotate(5deg);
    }

    50% {
        transform: translateX(50vw) translateY(20px) rotate(15deg);
    }

    75% {
        transform: translateX(75vw) translateY(-60px) rotate(5deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(110vw) translateY(0) rotate(15deg);
        opacity: 0;
    }
}

@keyframes fly2 {
    0% {
        transform: translateX(-100px) translateY(0) rotate(-5deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        transform: translateX(30vw) translateY(80px) rotate(10deg);
    }

    60% {
        transform: translateX(60vw) translateY(-40px) rotate(-5deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(110vw) translateY(20px) rotate(5deg);
        opacity: 0;
    }
}

@keyframes fly3 {
    0% {
        transform: translateX(-100px) translateY(0) rotate(10deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        transform: translateX(40vw) translateY(-100px) rotate(-10deg);
    }

    70% {
        transform: translateX(70vw) translateY(60px) rotate(15deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(110vw) translateY(0) rotate(0deg);
        opacity: 0;
    }
}

/* Services Page Styles */
.services-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/about-spa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    /* Offset for sticky header if needed, or adjust based on layout */
    padding-top: 80px;
}

.services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Price List Section */
.price-list-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.price-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.price-items {
    list-style: none;
}

.price-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-name {
    font-weight: 500;
}

.service-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Promo Section */
.promo-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.promo-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.promo-text {
    flex: 1;
}

.promo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.promo-text p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.promo-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Membership Section */
.membership-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.membership-card {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.membership-card:hover {
    transform: translateY(-10px);
}

/* Gold Card */
.membership-card.gold {
    background: linear-gradient(135deg, #d4af37, #c5a028);
    color: white;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Black Card */
.membership-card.black {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-header .price {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    /* Override default price color */
}

.card-header .price small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.card-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.card-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.card-features li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-gold {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: white;
}

/* Responsive Services */
@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
    }

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

    .services-hero h1 {
        font-size: 2.5rem;
    }
}

/* Reveal Animation Base Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered Animations for Service Items */
.price-items li {
    opacity: 1;
    /* Default to visible */
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.price-category.visible .price-items li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for list items when parent is visible */
.price-category.visible .price-items li:nth-child(1) {
    transition-delay: 0.2s;
}

.price-category.visible .price-items li:nth-child(2) {
    transition-delay: 0.3s;
}

.price-category.visible .price-items li:nth-child(3) {
    transition-delay: 0.4s;
}

.price-category.visible .price-items li:nth-child(4) {
    transition-delay: 0.5s;
}

.price-category.visible .price-items li:nth-child(5) {
    transition-delay: 0.6s;
}

.price-category.visible .price-items li:nth-child(6) {
    transition-delay: 0.7s;
}

.price-items li:hover {
    background-color: rgba(0, 0, 0, 0.02);
    padding-left: 10px;
}

/* =========================================
   Luxury Services Preview Section
   ========================================= */
.services-preview-section {
    padding: 6rem 0;
    background-color: var(--white);
    text-align: left;
}

.services-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Hero Text Animations */
@keyframes breathe {
    0% {
        letter-spacing: 2px;
        opacity: 0.9;
    }

    100% {
        letter-spacing: 4px;
        opacity: 1;
    }
}

@keyframes subtleFloat {

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

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

.hero-subtitle {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    /* Apply continuous breathing animation */
    animation: breathe 6s ease-in-out infinite alternate;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
    /* 3D Gold Effect */
    text-shadow:
        1px 1px 0 #b38f29,
        2px 2px 0 #b38f29,
        3px 3px 0 #b38f29,
        4px 4px 0 #b38f29,
        5px 5px 10px rgba(0, 0, 0, 0.2);
    /* Apply continuous floating animation */
    animation: subtleFloat 8s ease-in-out infinite;
}

.preview-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.preview-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

.service-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-preview-item {
    text-decoration: none;
    text-align: center;
    /* group: group; Enable grouping based interactions if needed, mostly logical here */
}

.service-preview-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

.service-preview-item:hover h3 {
    color: var(--primary-color);
}

.service-circle {
    width: 100%;
    aspect-ratio: 1;
    /* Makes it a perfect circle response to width */
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-preview-item:hover .service-circle {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.service-preview-item:hover .service-circle img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .preview-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .services-preview-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .preview-title {
        font-size: 2.5rem;
    }

    .service-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   NEW HOMEPAGE SECTIONS - Lizaffair Style
   ============================================ */

/* Watermark Section */
.watermark-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.watermark-content {
    position: relative;
    text-align: center;
}

.watermark-text {
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-style: italic;
    color: rgba(200, 200, 200, 0.3);
    font-weight: 400;
    line-height: 1;
    display: block;
}

.watermark-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.watermark-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.watermark-logo span {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.watermark-light {
    background-color: var(--bg-light);
}

/* Spa Experiences Section */
.spa-experiences {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.spa-experiences-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.spa-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.spa-brand-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.spa-brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.spa-title-section {
    text-align: center;
}

.spa-title-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.spa-title-section p {
    color: var(--text-light);
    font-size: 1rem;
}

.spa-services-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.spa-service-item {
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.spa-service-item:hover {
    transform: translateY(-5px);
}

.spa-service-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid transparent;
    transition: all 0.3s ease;
}

.spa-service-item:hover .spa-service-circle {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.spa-service-item:hover .spa-service-circle img {
    transform: scale(1.1);
}

.spa-service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Spa Packages Section */
.spa-packages {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-header-center p {
    color: var(--text-light);
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.package-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.package-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 250px;
    overflow: hidden;
}

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

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-card h3 {
    padding: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    background: var(--white);
}

/* Pricing Section Home */
.pricing-section-home {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-content {
    color: var(--white);
}

.pricing-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.pricing-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.pricing-content>p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-list {
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
    align-items: baseline;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-item .service-name {
    font-weight: 500;
}

.pricing-item .service-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    min-width: 20px;
}

.pricing-item .service-price {
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-dark {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #0d1247;
    transform: translateY(-2px);
}

.pricing-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Membership Home Section */
.membership-home {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.membership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.membership-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.membership-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.membership-decorations {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.decoration-stone {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333 0%, #666 100%);
}

.membership-content {
    padding: 2rem 0;
}

.membership-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.membership-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.membership-content>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.membership-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.membership-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.membership-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-gold {
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #c5a028;
    transform: translateY(-2px);
}

.membership-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--accent-color);
}

/* Products Home Section */
.products-home {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.products-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.product-item {
    text-align: center;
    max-width: 250px;
}

.product-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.product-item:hover .product-img img {
    transform: scale(1.1);
}

.product-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 100%);
}

/* Testimonials Slider (Marquee) */
.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: slideRight 40s linear infinite;
    /* Left to Right implies moving towards Right -> */
}

/* Pause on hover for better UX */
.testimonials-slider-container:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
        /* Start from half-way (showing second set) */
    }

    100% {
        transform: translateX(0);
        /* Move to 0 (showing first set), creating seamless loop if sets are identical */
    }
}

.testimonial-card {
    width: 350px;
    /* Fixed width for slider items */
    flex-shrink: 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    background: var(--accent-color);
    color: var(--white);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-card.featured .testimonial-rating i {
    color: var(--white);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #e91e63 0%, #ff6090 50%, #9c27b0 100%);
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/about-spa.png') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-white {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: #e91e63;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Active Nav Link */
.nav-links a.active {
    color: var(--accent-color);
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-wrapper,
    .membership-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .watermark-text {
        font-size: 5rem;
    }

    .spa-experiences-header {
        flex-direction: column;
        text-align: center;
    }

    .spa-services-row {
        gap: 2rem;
    }

    .spa-service-circle {
        width: 140px;
        height: 140px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .membership-form {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .pricing-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   NEW SERVICES PAGE STYLES
   ============================================ */

/* Services Hero - Gradient Style */
.services-hero-new {
    min-height: 50vh;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #a855f7 60%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.services-hero-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 15s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.services-hero-new h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

/* Service Category Sections */
.service-category-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.service-section-alt {
    background-color: var(--bg-light);
}

.service-category-header {
    margin-bottom: 2rem;
}

.service-category-header.centered {
    text-align: center;
}

.service-category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.service-category-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-category-header.centered h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Service List Clean Layout */
.service-list-clean {
    max-width: 600px;
}

.service-list-centered {
    max-width: 700px;
    margin: 0 auto;
}

.service-list-item {
    display: flex;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-list-item:hover {
    padding-left: 10px;
    background-color: rgba(212, 175, 55, 0.05);
}

.service-list-item:last-child {
    border-bottom: none;
}

/* Service with Image Layout */
/* Service with Image Layout */
.service-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balance columns */
    gap: 4rem;
    align-items: center;
}

.service-image-side {
    border-radius: 20px;
    overflow: hidden;
    /* Keeps image inside border radius */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    max-height: 500px;

    /* Decorative Border attempt using outline or box-shadow ring? 
       Let's stick to clean simple styling first or add a subtle border */
    border: 5px solid var(--white);
}

/* Ensure the image covers the area nicely */
.service-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-side:hover img {
    transform: scale(1.05);
}

.service-content-side .service-list-clean {
    max-width: 100%;
}

/* Two Column Service Layout */
.service-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.service-column .service-list-clean {
    max-width: 100%;
}

/* Featured Service Banner */
.featured-service-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.featured-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.featured-banner-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.btn-featured {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Services Testimonials Section */
.services-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fff5eb 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author-inline img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author-inline strong {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-author-inline span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background-color: var(--accent-color);
}

/* New Membership Section */
.membership-section-new {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

.membership-section-new .section-header-center h2 {
    color: var(--white);
}

.membership-section-new .section-header-center p {
    color: rgba(255, 255, 255, 0.7);
}

.membership-cards-new.packages-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

/* Ensure cards take full height of grid cell */
.member-card-new.package-black,
.member-card-new.package-gold {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card-new.package-black {
    background-color: #000;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.member-card-new.package-black h3 {
    color: var(--white);
}

.member-card-new.package-gold {
    background-color: #d4af37;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.member-card-new.package-black .member-price,
.member-card-new.package-gold .member-price {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

/* Push button to bottom */
.member-card-new.package-black .btn-member,
.member-card-new.package-gold .btn-member {
    margin-top: auto;
    width: 100%;
}

/* Features List Styling */
.member-card-new.package-black .member-features,
.member-card-new.package-gold .member-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.member-card-new.package-black .member-features li,
.member-card-new.package-gold .member-features li {
    border-bottom: none;
    /* Removed lines for cleaner look */
    color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.member-features {
    text-align: center;
}

.btn-member {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: #000;
}

.btn-outline-black {
    border: 2px solid var(--white);
    /* Keep white border on Gold for contrast? Or Black? Image has white text. */
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-black:hover {
    background: var(--white);
    color: #d4af37;
}

/* Services CTA Section */
.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e91e63 0%, #ec4899 50%, #a855f7 100%);
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-cta .btn-primary {
    background-color: var(--white);
    color: #e91e63;
    border-color: var(--white);
}

.services-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .service-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-two-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .membership-cards-new {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 768px) {
    .services-hero-new h1 {
        font-size: 2.5rem;
    }

    .service-category-section {
        padding: 3rem 0;
    }

    .featured-service-banner {
        height: 300px;
    }

    .featured-banner-overlay h2 {
        font-size: 2rem;
    }

    .service-category-header h2 {
        font-size: 1.6rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   LOCATION MAP SECTION
   ============================================ */

.location-map-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.location-info {
    padding: 2rem 0;
}

.location-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-info>p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c5a028 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.location-item:hover .location-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.location-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.location-text strong {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.location-text span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1247 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
}

.btn-directions i {
    font-size: 1.1rem;
}

/* Map Container */
.map-container {
    position: relative;
}

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.map-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

.map-overlay-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.map-overlay-badge span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    }
}

/* Slide Animations */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Location Section Responsive */
@media (max-width: 1024px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-frame {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .location-info h2 {
        font-size: 2rem;
    }

    .location-icon {
        width: 45px;
        height: 45px;
    }

    .map-frame {
        height: 300px;
    }
}

.designer-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.designer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}


/* ============================================
   BOOKING DASHBOARD (NEW)
   ============================================ */

.booking-section-new {
    padding: 6rem 0;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.booking-header-new {
    margin-bottom: 3rem;
}

.booking-header-new h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.booking-header-new p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.booking-dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

/* --- Left Column: Selection Area --- */

/* Service Pills */
.service-selection-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-pill {
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-pill:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.service-pill.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

/* Date & Time Wrapper */
.datetime-selection-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.current-month {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calendar-nav button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
    padding: 5px;
    transition: color 0.3s;
}

.calendar-nav button:hover {
    color: var(--accent-color);
}

.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-days-grid .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-dark);
}

.calendar-days-grid .day:hover:not(.dimmed) {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
}

.calendar-days-grid .day.dimmed {
    color: #ccc;
    cursor: default;
}

.calendar-days-grid .day.current-day {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
}

.calendar-days-grid .day.selected {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    align-content: start;
}

.time-pill {
    padding: 0.6rem 0.5rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.time-pill:hover {
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.time-pill.selected {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}


/* --- Right Column: Sidebar --- */

.booking-sidebar-column {
    position: relative;
}

.booking-summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 2rem;
}

.summary-header {
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.summary-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-header h3 i {
    color: var(--accent-color);
}

.booked-services-list {
    min-height: 100px;
    margin-bottom: 2rem;
}

.empty-state {
    color: #999;
    font-style: italic;
    font-size: 0.95rem;
}

.selected-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    animation: fadeIn 0.3s ease;
}

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

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

.selected-service-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.remove-service {
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
    font-size: 0.9rem;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 1.5rem 0;
}

/* Sidebar Form */
.sidebar-form-group {
    margin-bottom: 1.2rem;
}

.sidebar-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sidebar-form-group .required {
    color: #ff5252;
}

.sidebar-form-group input,
.sidebar-form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.sidebar-form-group input:focus,
.sidebar-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.location-toggles {
    display: flex;
    gap: 1rem;
}

.loc-toggle {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.loc-toggle.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-book-sidebar {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c5a028 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-book-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.sidebar-contact-info {
    margin-top: 2.5rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.sidebar-contact-info h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-contact-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.sidebar-contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .booking-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .booking-summary-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 600px) {
    .datetime-selection-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-header-new h2 {
        font-size: 2rem;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 4rem 0;
    background-color: var(--white);
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 5px solid var(--white);
}


/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../assets/spa-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
    margin-top: 80px;
    /* Header height offset */
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pinkish/Magenta gradient overlay */
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.4) 0%, rgba(142, 68, 173, 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
    padding-left: 2rem;
}

/* Unique Organic Shape Background for Hero Text Area if needed like reference? 
   Reference has a big white curve. Let's try to mimic the white "blob" or curve. */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 0 50% 50% 0 / 0 80% 80% 0;
    z-index: 1;
    display: none;
    /* Simplify first, maybe add later if exact match needed */
}

.about-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    font-weight: 400;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--white);
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    /* Dark text */
    margin-bottom: 2rem;
}

.welcome-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Mission & Vision Grid */
.mission-section {
    padding: 0 0 5rem 0;
}

.mission-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-image-col {
    flex: 1;
}

.mission-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Organic Blob Mask for Image */
.blob-mask-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    /* Adjust as needed */
    overflow: hidden;
    /* Custom organic shape using border-radius */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2);
    /* Gold shadow hint */
}

.blob-mask-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Video Section Wide */
.about-video-section {
    padding: 3rem 0 6rem 0;
}

.video-container-large {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.play-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    pointer-events: none;
    /* Let clicks pass through to video controls if native */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* About Bottom CTA */
.about-cta-section {
    position: relative;
    padding: 6rem 0;
    /* Pink/Magenta bg */
    background: linear-gradient(135deg, #d81b60 0%, #8e44ad 100%);
    overflow: hidden;
}

.about-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.about-cta-text {
    color: var(--white);
    flex: 1;
}

.cta-small-text {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
}

.about-cta-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Gold Curve Button Container */
.gold-curve-bg {
    background: #c5a028;
    /* Gold */
    padding: 3rem 4rem;
    border-radius: 50px 0 0 50px;
    /* Curve on left */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 300px;
    /* Large decorative block */
    width: 300px;
    position: absolute;
    right: -100px;
    /* Pull it off screen slightly */
    top: 50%;
    transform: translateY(-50%);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
}

.book-text {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.circle-arrow-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a028;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.circle-arrow-btn:hover {
    transform: scale(1.1) rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
    .mission-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .blob-mask-wrapper {
        height: 300px;
    }

    .about-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }


    /* =========================================
   FAQ PAGE STYLES
   ========================================= */


    /* =========================================
   FAQ PAGE STYLES
   ========================================= */

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

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

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

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

    .animate-up {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
    }

    .animate-left {
        opacity: 0;
        animation: slideInLeft 0.8s ease forwards;
    }

    .animate-right {
        opacity: 0;
        animation: slideInRight 0.8s ease forwards;
    }

}


/* =========================================
   FAQ PAGE STYLES
   ========================================= */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.animate-up,
.animate-left,
.animate-right {
    opacity: 0;
}

.animate-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-left.visible {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right.visible {
    animation: slideInRight 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* FAQ Hero */
.faq-hero {
    position: relative;
    height: 70vh;
    /* Increased height for better proportions */
    min-height: 500px;
    background: url('../assets/massage.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: visible;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darker overlay for better text contrast */
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
    /* Better left spacing */
    max-width: 600px;
}

.faq-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Gold Box Overlay - Refined Positioning */
.hero-gold-box {
    position: absolute;
    right: 5%;
    /* Offset from right */
    bottom: -60px;
    /* More overlap */
    width: 280px;
    height: 320px;
    background: #c5a028;
    border-radius: 60px 0 0 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-gold-box:hover {
    transform: translateY(-5px);
}

.gold-box-link {
    text-align: center;
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.gold-box-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.gold-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* FAQ Grid */
.faq-grid-section {
    padding: 10rem 0 6rem 0;
    /* More top padding to clear gold box */
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    /* Increased gap */
}

.faq-item {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    /* separation line */
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Feature Blue Section */
.feature-blue-section {
    background: #f0f7f7;
    /* Slightly fresher tint */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.feature-blue-section::before {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

.feature-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-image {
    flex: 1;
    position: relative;
}

.circle-feature-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    border: 10px solid var(--white);
}

.feature-content {
    flex: 1.2;
}

.feature-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.feature-content p {
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* FAQ Testimonials */
.faq-testimonials {
    padding: 5rem 0;
    text-align: center;
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    /* Ensure slides stay contained */
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
    display: block;
}

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

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

.single-testimonial {
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.single-testimonial .stars {
    color: #c5a028;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c5a028;
}

.profile-icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: #c5a028;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .faq-hero {
        height: auto;
        padding: 6rem 0 10rem 0;
        /* Space for box */
        display: block;
        /* Stack */
    }

    .hero-gold-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -50px auto 0;
        /* Pull up slightly */
        width: 90%;
        max-width: 400px;
        height: auto;
        padding: 3rem 0;
        border-radius: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .circle-feature-img {
        width: 300px;
        height: 300px;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Keyframes for Background Zoom */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image Layer */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/spa-hero.png') no-repeat center center/cover;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Gradient Overlay Layer */
.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Brand-tinted gradient */
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.7) 0%, rgba(212, 175, 55, 0.2) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    padding-left: 5%;
    color: var(--white);
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    /* Pop of gold */
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Info Grid Section */
.contact-info-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: 600px;
    /* Tall portrait look */
}

.contact-details-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-split-layout {
        flex-direction: column;
    }

    .contact-main-img {
        height: auto;
        aspect-ratio: 4/3;
    }
}

.contact-grid {
    /* Legacy fallback or simple grid if needed internally */
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Hours List */
.hours-list {
    font-family: 'Outfit', sans-serif;
    color: #555;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    /* Better alignment */
    max-width: 400px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row .day {
    font-weight: 600;
    color: #333;
}

.hour-row .time {
    font-weight: 400;
    color: #666;
}

/* Details Col */
.big-phone {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #c5a028;
    /* Gold color for emphasis */
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-detail-item {
    margin-bottom: 2rem;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    max-width: 400px;
}

.btn-gold {
    background: #c5a028;
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 2rem;
}

.btn-gold:hover {
    background: #333;
    /* Hover black */
    color: #fff;
}

/* Form Section */
.contact-form-section {
    padding: 0 0 8rem 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
}

.form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.simple-contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #c5a028;
}

.form-textarea {
    min-height: 150px;
    margin-bottom: 2rem;
    resize: vertical;
}

.form-footer {
    text-align: center;
}

/* Map Section */
.map-section {
    width: 100%;
    margin-bottom: -10px;
    /* Remove gap */
    filter: grayscale(20%);
    /* Subtle mute for elegance */
    transition: filter 0.3s ease;
}

.map-section:hover {
    filter: grayscale(0%);
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
    }

    .big-phone {
        font-size: 2.2rem;
    }

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

    .form-wrapper {
        padding: 2rem;
    }
}

/* =========================================
   SPA POLICY SECTION
   ========================================= */
.spa-policy-section {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.policy-content {
    max-width: 900px;
    margin: 4rem auto 0;
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
    border-top: 5px solid #c5a028;
    /* Gold accent top */
}

.policy-group {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.policy-group h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #c5a028;
}

.policy-group p,
.policy-group li {
    font-family: 'Outfit', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-group ul {
    list-style: none;
    margin-top: 1rem;
    padding-left: 1rem;
}

.policy-group ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-group ul li::before {
    content: '•';
    color: #c5a028;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.divider-gold {
    height: 3px;
    width: 60px;
    background: #c5a028;
    margin: 1rem auto;
}

/* Responsive Policy */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }
}

/* Mobile Fix for CTA Overlap */
@media (max-width: 992px) {
    .gold-curve-bg {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 3rem;
        border-radius: 50px;
        /* Fully rounded on mobile */
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        padding: 2rem;
    }

    .about-cta-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .about-cta-text h2 {
        font-size: 2.5rem;
        /* Smaller font for mobile */
    }
}

/* =========================================
   DYNAMIC CALENDAR STYLES
   ========================================= */
.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background-color: #f9f9f9;
    border-color: #c5a028;
}

.calendar-day.selected {
    background-color: #c5a028;
    /* Gold Background */
    color: var(--white);
    border-color: #c5a028;
    font-weight: 600;
}

.calendar-day.dimmed {
    color: #ccc;
    background: none;
    border: none;
    cursor: default;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.current-month {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.calendar-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    padding: 5px;
    transition: color 0.3s ease;
}

.calendar-nav button:hover {
    color: #c5a028;
}

.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* =========================================
   ABOUT PAGE - FOUNDER IMAGE STYLES
   ========================================= */

/* Founder Image in Mission Section */
.founder-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.founder-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Meet the Owner Section */
.meet-owner-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.meet-owner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.meet-owner-section .section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.owner-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.owner-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.owner-image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.owner-image-item.primary {
    grid-row: span 1;
    transform: translateY(0);
}

.owner-image-item.secondary {
    transform: translateY(40px);
}

.owner-image-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.owner-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.owner-image-item.secondary:hover {
    transform: translateY(35px);
}

.owner-image-item:hover img {
    transform: scale(1.05);
}

.owner-details {
    padding-right: 2rem;
}

.owner-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.owner-details h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 1rem;
}

.owner-details p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.owner-details .btn {
    margin-top: 1rem;
}

/* Responsive - Meet Owner Section */
@media (max-width: 992px) {
    .owner-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .owner-image-grid {
        max-width: 500px;
        margin: 0 auto;
    }

    .owner-image-item.secondary {
        transform: translateY(0);
    }

    .owner-image-item.secondary:hover {
        transform: translateY(-5px);
    }

    .owner-details {
        padding-right: 0;
        text-align: center;
    }

    .owner-details h3::after {
        margin: 1rem auto 0;
    }
}

@media (max-width: 600px) {
    .owner-image-grid {
        grid-template-columns: 1fr;
    }

    .owner-image-item img {
        height: 400px;
    }

    .owner-details h3 {
        font-size: 2rem;
    }

    .meet-owner-section {
        padding: 5rem 0;
    }
}

/* Mission Section Grid */
.mission-section {
    padding: 8rem 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-image-col {
    display: flex;
    justify-content: center;
}

.mission-content-col {
    padding-left: 2rem;
}

.mission-item {
    margin-bottom: 2.5rem;
}

.mission-item:last-child {
    margin-bottom: 0;
}

.mission-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.mission-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: var(--accent-color);
}

.mission-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive - Mission Section */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-content-col {
        padding-left: 0;
        text-align: center;
    }

    .mission-item h3 {
        padding-left: 0;
    }

    .mission-item h3::before {
        display: none;
    }

    .founder-image-wrapper {
        margin: 0 auto;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 6rem 0;
    background: #f9f9f9;
    text-align: center;
}

.welcome-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.welcome-content p {
    color: #666;
    line-height: 1.9;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../assets/spa-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
    color: var(--white);
}

.about-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
}

/* Video Showcase */
.about-video-section {
    padding: 6rem 0;
    background: var(--white);
}

.video-container-large {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.play-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

.video-container-large:hover .play-overlay-icon {
    opacity: 1;
}

.play-overlay-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 5px;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1642 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.about-cta-text {
    color: var(--white);
}

.cta-small-text {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.about-cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1.3;
}

.about-cta-action {
    flex-shrink: 0;
}

.gold-curve-bg {
    padding: 2.5rem 3rem;
    background: var(--accent-color);
    border-radius: 80px 20px 20px 80px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.gold-curve-bg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.book-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--white);
}

.circle-arrow-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.circle-arrow-btn:hover {
    background: var(--primary-color);
}

.circle-arrow-btn:hover i {
    color: var(--white);
}

.circle-arrow-btn i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive About Hero */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }

    .about-cta-text h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   SERVICE PAGE SPLIT LAYOUTS
   ========================================= */

.service-with-image {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
}

.service-with-image .service-content-side,
.service-with-image .service-image-side {
    flex: 1;
}

.service-image-side img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.service-image-side img:hover {
    transform: translateY(-10px);
}

/* Round Image Modifier */
.service-image-side img.round-image {
    border-radius: 50%;
    width: 400px;
    /* Fixed width for perfect circle */
    height: 400px;
    margin: 0 auto;
    /* Center if container is wider */
    display: block;
    border: 8px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .service-with-image {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .service-image-side img.round-image {
        width: 300px;
        height: 300px;
    }

    /* Ensure correct order on mobile if needed */
    .service-with-image:nth-child(even) {
        flex-direction: column-reverse;
    }
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-hero {
    position: relative;
    background-image: url('../assets/contact-hero.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 0;
}

.contact-hero .hero-subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}