/* General Styles & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Playfair+Display:wght@400;500;700&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Gilda+Display&display=swap');

:root {
    /* Color Palette */
    --color-alabaster-white: #FAFAF9;
    --color-cool-slate-grey: #71717A;
    --color-champagne-gold: #D4AF37;
    --color-blush-pink: #F1D5D2; /* Subtle highlight */
    --color-mist-blue: #E2E8F0; /* Subtle highlight */
    --color-dark-grey: #333333; /* For very dark text/elements on light bg if needed */

    /* Typography */
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;
    --font-cormorant: 'Cormorant Garamond', serif;
    --font-gilda: 'Gilda Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--color-cool-slate-grey);
    background-color: var(--color-alabaster-white);
    line-height: 1.7; /* Slightly increased for better readability */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    color: var(--color-champagne-gold);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1); /* Subtle text shadow for depth */
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.1rem; }

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

a {
    color: var(--color-champagne-gold);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--color-cool-slate-grey);
    text-shadow: 0.5px 0.5px 1px var(--color-champagne-gold);
}

/* Glassmorphism Sticky Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 250, 249, 0.85); /* Alabaster white with translucency */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Subtle gold border */
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: flex-start; /* Change from space-between to start */
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    gap: var(--spacing-lg); /* Base gap between elements */
}

.header__logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.header__logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.header__logo img:hover {
    transform: scale(1.02);
}

.header__socials {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    margin-right: auto; /* This pushes the nav to the far right */
}

.header__nav {
    padding-right: var(--spacing-lg); /* Extra space at the end of links */
}

.header__nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
}

.header__nav a {
    font-family: var(--font-cormorant);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-champagne-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header__nav a:hover::after,
.header__nav a.active::after {
    transform: scaleX(1);
}

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

/* Featured Services Section */
.featured-services {
    padding: var(--spacing-xxl) var(--spacing-xl);
    background-color: #fff;
}

.services-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.service-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1.0);
}

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

.service-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    /* Shorter, tighter gradient by default */
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: var(--color-alabaster-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 30%; /* Much shorter to show more image */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__content {
    height: 55%; /* Expands only on hover */
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.6) 80%, 
        rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(6px); /* More focus on text when hovering */
}

.service-card h3 {
    color: var(--color-alabaster-white);
    font-family: var(--font-cormorant);
    font-size: 1.9rem; /* Reduced from 2.2rem to prevent wrapping */
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    white-space: nowrap; /* Ensures it stays on one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    opacity: 0; /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.service-card:hover p {
    opacity: 1; /* Reveals description on hover */
    transform: translateY(0);
}

.service-card .btn-text {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-card:hover .btn-text {
    opacity: 1;
}

.service-card:hover p {
    transform: translateY(0);
}

.service-card .btn-text {
    color: var(--color-champagne-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials Section */
.home-testimonials {
    background-color: var(--color-alabaster-white);
    padding: var(--spacing-xxl) var(--spacing-xl);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0 auto;
}

.review-card {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-blush-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
}

.review-card__info h4 {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-grey);
    margin-bottom: 2px;
}

.review-card__stars {
    display: flex;
    color: #FFD700; /* Gold for stars */
    font-size: 1.1rem;
}

.review-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-cool-slate-grey);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.review-card__tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-champagne-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.google-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-xl);
    font-size: 0.9rem;
    color: var(--color-cool-slate-grey);
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Slightly smaller items */
    grid-auto-rows: 250px;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) auto 0 auto;
    max-width: 1000px; /* Contain the grid width */
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05); /* Subtle box for contained images */
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the container width and height */
    transition: all 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: none; /* Keep image contained, no expansion */
    filter: brightness(0.7);
}

.gallery-item__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 80%;
}

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

/* Section Spacing & Refinements */
.section-spacing {
    padding: var(--spacing-xxl) var(--spacing-xl);
}

.text-gold {
    color: var(--color-champagne-gold);
}

.font-serif {
    font-family: var(--font-cormorant);
}

/* Update general typography */
h1, h2, h3 {
    font-family: var(--font-cormorant);
    letter-spacing: 0.05em;
    font-weight: 400;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-xs);
}

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

.header__social-icon {
    color: var(--color-dark-grey);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.header__social-icon:hover {
    color: var(--color-champagne-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.header__social-icon .material-symbols-outlined {
    font-size: 1.4rem;
}

.header__social-icon.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.header__social-icon.booksy:hover {
    background: rgba(0, 168, 255, 0.1);
    color: #00a8ff; /* Booksy Blue */
}

/* Mobile Menu Toggle button refinement - hiding it since replaced by socials */
.menu-toggle {
    display: none !important;
}

.nav-close {
    display: none;
}

/* Main Content Area */
main {
    padding-top: 60px; /* Reduced from 100px */
    min-height: calc(100vh - 120px);
}

section {
    padding: var(--spacing-xl) var(--spacing-xl); /* Reduced from xxl */
    max-width: 1280px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md) var(--spacing-xl); /* Reduced from spacing-lg */
    text-align: center;
    font-size: 0.85rem; /* Reduced from 0.95rem */
    color: var(--color-cool-slate-grey);
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.03);
}

.footer p {
    margin-bottom: var(--spacing-sm);
}

.footer__social-links a {
    margin: 0 12px; /* Increased margin */
    color: var(--color-champagne-gold);
    font-size: 1.3rem; /* Slightly larger icons */
    transition: transform 0.3s ease;
}

.footer__social-links a:hover {
    color: var(--color-cool-slate-grey);
    transform: translateY(-3px); /* Lift effect on hover */
}

/* Reveal on Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px); /* Slightly more pronounced initial translate */
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.6, 0.3, 1.0); /* Slower and smoother transition */
    will-change: opacity, transform;
}

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

/* Utility Classes for Layout */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 3.2rem; /* Adjusted for h1 in HTML */
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--color-champagne-gold);
    letter-spacing: 0.05em; /* Added letter spacing */
}

.section-subtitle {
    font-family: var(--font-inter);
    font-size: 1.2rem; /* Slightly larger */
    color: var(--color-cool-slate-grey);
    text-align: center;
    margin-bottom: var(--spacing-xl); /* More space */
    max-width: 900px; /* Wider max-width */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Gold Divider */
.gold-divider {
    width: 80px; /* Fixed width */
    height: 2px;
    background-color: var(--color-champagne-gold);
    margin: var(--spacing-lg) auto; /* Centered with vertical spacing */
    border-radius: 1px;
    opacity: 0.7;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1em 2.5em; /* Slightly more padding */
    background-color: var(--color-champagne-gold);
    color: var(--color-alabaster-white);
    border: none;
    font-family: var(--font-inter);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em; /* Increased letter spacing */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border-radius: 5px; /* Slightly more rounded */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow */
}

.btn:hover {
    background-color: var(--color-cool-slate-grey);
    color: var(--color-champagne-gold);
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Increased shadow on hover */
}

/* Elegant Accordion Styles */
.accordion-container {
    max-width: 900px;
    margin: var(--spacing-xxl) auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--color-champagne-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: var(--color-champagne-gold);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--color-champagne-gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg); /* Plus to X */
}

.accordion-item.active .accordion-header {
    background: rgba(212, 175, 55, 0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.02);
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* Large enough for content */
    transition: max-height 1s ease-in-out;
}

.accordion-inner {
    padding: var(--spacing-xl);
}

.service-list {
    list-style: none;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(113, 113, 122, 0.1);
}

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

.service-name {
    font-weight: 400;
    color: var(--color-cool-slate-grey);
}

.service-duration {
    font-family: var(--font-playfair);
    color: var(--color-champagne-gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Maintain banner styling for inside accordions */
.category-banner-small {
    height: 120px;
    border-radius: 4px;
    margin-bottom: var(--spacing-lg);
    background-position: center;
    background-size: cover;
}

/* Testimonials Page Specific Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: var(--spacing-lg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
    font-family: var(--font-playfair);
    font-size: 1.4rem; /* Slightly larger */
    font-style: italic;
    color: var(--color-cool-slate-grey);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding: 0 var(--spacing-sm);
    line-height: 1.5;
}

.testimonial-card blockquote::before {
    content: '“';
    font-family: var(--font-playfair);
    font-size: 3.5rem; /* Larger quote marks */
    color: var(--color-champagne-gold);
    position: absolute;
    left: 0;
    top: -0.2em; /* Adjusted position */
    line-height: 1;
    opacity: 0.8; /* Slightly more opaque */
    z-index: 1;
}

.testimonial-card blockquote::after {
    content: '”';
    font-family: var(--font-playfair);
    font-size: 3.5rem; /* Larger quote marks */
    color: var(--color-champagne-gold);
    position: absolute;
    right: 0;
    bottom: -0.5em;
    line-height: 1;
    opacity: 0.8; /* Slightly more opaque */
    z-index: 1;
}

.testimonial-card cite {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 1.15rem; /* Slightly larger */
    font-weight: 700;
    color: var(--color-champagne-gold);
    letter-spacing: 0.05em;
}

.testimonial-card cite span {
    font-weight: 400;
    color: var(--color-cool-slate-grey);
    font-size: 0.95rem; /* Slightly larger */
    display: block;
    margin-top: 0.3rem;
}

/* ===== Reviews Carousel ===== */
.carousel-container {
    position: relative;
    display: flex;
    align-items: flex-start; /* arrows sit at top, cards grow downward naturally */
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    width: 100%;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-champagne-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.25;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    padding: 0;
    z-index: 2;
    position: sticky;
    top: calc(50vh - 24px); /* keeps arrows visually centred in the viewport while scrolling tall cards */
}

.carousel-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.carousel-track {
    display: flex !important;
    grid-template-columns: unset !important;
    align-items: flex-start; /* allow each card to size to its own content */
    gap: var(--spacing-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    margin: 0 !important;
}

.carousel-track .review-card {
    flex-shrink: 0;
    min-width: 0;
    /* Width set dynamically by JS */
}

.carousel-arrow:hover {
    opacity: 1;
    background-color: var(--color-champagne-gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.carousel-arrow:disabled {
    opacity: 0.08;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.carousel-arrow .material-symbols-outlined {
    font-size: 1.3rem;
}

/* Bookings Page Specific Styles */
.bookings-container {
    max-width: 900px;
    margin: var(--spacing-xxl) auto; /* Adjusted margin */
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: var(--spacing-xxl); /* Increased padding */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Enhanced shadow */
    text-align: center;
}

.booking-title {
    font-family: var(--font-cormorant);
    color: var(--color-champagne-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-intro {
    margin-bottom: 2rem;
}

.booking-cta-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.booking-cta-icon {
    font-size: 2.2rem;
    color: var(--color-champagne-gold);
    margin-bottom: var(--spacing-sm);
}

.booking-cta-copy {
    color: var(--color-cool-slate-grey);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.booking-integration-note {
    background-color: var(--color-mist-blue); /* Subtle highlight color */
    color: var(--color-dark-grey); /* Darker text for contrast on highlight */
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-top: var(--spacing-xl);
    font-size: 1rem;
    line-height: 1.6;
    border: 1px solid rgba(226, 232, 240, 0.5); /* Lighter border for highlight */
}

.booking-integration-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
}

.booking-integration-note .material-symbols-outlined {
    color: var(--color-champagne-gold);
}

.booking-integration-note strong {
    color: var(--color-champagne-gold);
}

.booking-widget-placeholder {
    width: 100%;
    min-height: 600px;
    background-color: var(--color-alabaster-white);
    border: 2px dashed var(--color-champagne-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inter);
    color: var(--color-cool-slate-grey);
    font-size: 1.2rem;
    text-align: center;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05); /* Inner shadow for depth */
}

/* Contact Page Specific Styles */
.contact-container {
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    margin-top: var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    vertical-align: middle;
}

.whatsapp-btn-small:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-btn-small .material-symbols-outlined {
    font-size: 1.1rem !important;
    margin: 0 !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-champagne-gold);
    color: var(--color-alabaster-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-dark-grey);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top .material-symbols-outlined {
    font-size: 1.8rem;
}

.contact-info h2, .contact-form h2 {
    font-size: 2.5rem; /* Adjusted for h2 */
    margin-bottom: var(--spacing-lg);
    color: var(--color-champagne-gold);
    text-align: center;
    letter-spacing: 0.05em;
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.contact-info ul {
    list-style: none;
    margin-top: var(--spacing-lg);
}

.contact-info ul li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
}

/* Specific styling for the hours grid */
.hours-list {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    margin-top: 5px;
    width: 100%;
}

.hours-day {
    font-weight: 700;
    color: var(--color-champagne-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.hours-time {
    color: var(--color-cool-slate-grey);
}

.contact-info ul li .material-symbols-outlined { /* Updated for Material Symbols */
    color: var(--color-champagne-gold);
    font-size: 1.4rem; /* Slightly larger icons */
    margin-top: 0.1em;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-form label {
    font-weight: 700;
    color: var(--color-cool-slate-grey);
    margin-bottom: 0.2rem;
    display: block;
    font-size: 1.05rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 1em; /* Increased padding */
    border: 1px solid rgba(113, 113, 122, 0.4); /* More defined border */
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3); /* More transparent input */
    color: var(--color-cool-slate-grey);
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-champagne-gold);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3); /* More pronounced focus shadow */
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px; /* Taller textarea */
}

.contact-form button {
    margin-top: var(--spacing-lg);
    width: auto;
    align-self: flex-start;
}

/* ===================================
   RESPONSIVE / MOBILE STYLES
   =================================== */

/* Tablet and smaller devices */
@media (max-width: 1024px) {
    :root {
        --spacing-xxl: 3rem;
        --spacing-xl: 2.5rem;
    }

    .header {
        padding: 0 var(--spacing-lg);
        gap: var(--spacing-lg);
    }

    .header__logo img {
        height: 80px;
        max-width: 250px;
    }

    .header__nav a {
        font-size: 1.05rem;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    h3 { font-size: 1.9rem; }

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

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --spacing-xxl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.25rem;
    }

    /* Header - Mobile Menu */
    .header {
        flex-direction: row;
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
        gap: 0;
        position: relative;
        background: #a9a9a9; /* Match desktop gray header */
    }

    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }

    .header__logo:focus-visible {
        outline: 2px solid var(--color-champagne-gold);
        outline-offset: 4px;
        border-radius: 4px;
    }

    .header__logo img {
        height: 60px;
        max-width: 200px;
    }

    /* Show hamburger menu button */
    .menu-toggle {
        display: block;
        position: absolute;
        right: var(--spacing-md);
    }

    /* Hide navigation by default on mobile */
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #a9a9a9; /* Match gray header */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1200;
    }

    /* Show navigation when active */
    .header__nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Close button inside mobile nav */
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--color-alabaster-white);
        padding: 0.5rem;
        z-index: 1201;
        line-height: 1;
    }

    .nav-close .material-symbols-outlined {
        font-size: 2rem;
    }

    .nav-close:hover {
        opacity: 0.75;
    }

    .header__nav ul {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        padding: 0;
    }

    .header__nav li {
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }

    .header__nav.active li {
        animation: fadeInUp 0.5s ease forwards;
    }

    .header__nav.active li:nth-child(1) { animation-delay: 0.1s; }
    .header__nav.active li:nth-child(2) { animation-delay: 0.2s; }
    .header__nav.active li:nth-child(3) { animation-delay: 0.3s; }
    .header__nav.active li:nth-child(4) { animation-delay: 0.4s; }
    .header__nav.active li:nth-child(5) { animation-delay: 0.5s; }
    .header__nav.active li:nth-child(6) { animation-delay: 0.6s; }

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

    .header__nav a {
        font-size: 1.5rem;
        padding: var(--spacing-sm);
        color: var(--color-alabaster-white); /* White for contrast on gray */
    }

    .header__nav a::after {
        bottom: 0;
    }

    /* Typography */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }

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

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* Main Content */
    main {
        padding-top: 20px;
    }

    section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-category {
        padding: var(--spacing-md);
    }

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

    .service-category li {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .service-category li span:last-child {
        font-size: 1rem;
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Carousel mobile adjustments */
    .carousel-container {
        gap: var(--spacing-xs);
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        opacity: 0.5;
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-card blockquote {
        font-size: 1.1rem;
    }

    .testimonial-card blockquote::before,
    .testimonial-card blockquote::after {
        font-size: 2.5rem;
    }

    .testimonial-card cite {
        font-size: 1rem;
    }

    /* Bookings */
    .bookings-container {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) var(--spacing-sm);
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-cta-card {
        padding: var(--spacing-lg);
    }

    .booking-widget-placeholder {
        min-height: 400px;
        font-size: 1rem;
        padding: var(--spacing-md);
    }

    /* Contact Page */
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-info, .contact-form {
        padding: var(--spacing-lg);
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.9rem;
    }

    .contact-info ul li {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 0.9em 1.8em;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

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

    /* Footer */
    .footer {
        padding: var(--spacing-md);
        font-size: 0.85rem;
    }

    .footer__social-links a {
        margin: 0 8px;
        font-size: 1.2rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .header__logo img {
        height: 50px;
        max-width: 180px;
    }

    .header__nav a {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .service-category li {
        font-size: 0.95rem;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }

    .gold-divider {
        width: 60px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        flex-direction: row;
        justify-content: space-between;
    }

    .header__logo {
        width: auto;
    }

    .header__nav {
        width: auto;
        flex: 1;
        margin-top: 0;
    }

    .header__nav ul {
        gap: var(--spacing-xs);
    }

    .header__logo img {
        height: 50px;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .header__nav a {
        padding: var(--spacing-sm);
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__social-links a {
        padding: var(--spacing-xs);
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
