/* ============================================
   EMMA'S LUXURY MOBILE MASSAGE - STYLES
   Replicated from WordPress/Neve theme
   ============================================ */

/* Font Faces */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../assets/fonts/PlusJakartaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../assets/fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel Decorative';
    src: url('../assets/fonts/CinzelDecorative-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables - Matched to WP Neve Theme */
:root {
    /* Primary colors from WP */
    --color-dark: #181c28;           /* --nv-primary-accent */
    --color-dark-alt: #14171c;       /* --nv-dark-bg */
    --color-cream: #FAF7F2;          /* --nv-site-bg (card backgrounds) */
    --color-cream-dark: #E5E2DD;     /* Darker cream for hover states */
    --color-light-bg: #f4f4f4;       /* --nv-light-bg (section backgrounds) */
    --color-sage: #7C9885;           /* Used inline in WP */
    --color-sage-light: #8DA895;
    --color-gold: #d4af37;           /* --nv-secondary-accent (bright gold) */
    --color-gold-light: #E5C8A7;
    --color-text: #181c28;           /* --nv-text-color (darker) */
    --color-text-light: #6b6b6b;
    /* Additional WP accent colors */
    --color-green: #2c5530;          /* --nv-c-1 (forest green) */
    --color-amber: #feb960;          /* --nv-c-2 (bright amber) */
    --color-teal: #4a8b8b;           /* Teal accent */
    --color-whatsapp: #25D366;       /* WhatsApp brand color */
    --color-whatsapp-hover: #20BA5A; /* WhatsApp hover state */

    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);

    /* Carousel/JS constants */
    --carousel-gap: 2rem;
    --scroll-offset: 45px;
    --animation-duration: 1500ms;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
    background-color: var(--color-dark-alt);
    overscroll-behavior: none;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    padding-top: 35px;
    cursor: default;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Prevent text cursor on all headings and paragraphs */
h1, h2, h3, h4, h5, h6, p, span, div {
    cursor: default;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* =================================
   BUTTONS - Matching WP styles
   ================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Primary Button - Creamy White */
.btn-primary {
    background-color: var(--color-cream);
    color: var(--color-dark);
    border-color: var(--color-cream);
}

.btn-primary:hover {
    background-color: var(--color-cream-dark);
    border-color: var(--color-cream-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Secondary Button - Outline with sage */
.btn-secondary {
    background-color: rgba(43, 43, 43, 0.7);
    color: var(--color-cream);
    border: 2px solid var(--color-sage);
}

.btn-secondary:hover {
    background-color: var(--color-sage);
    color: var(--color-cream);
    border-color: var(--color-sage);
    transform: translateY(-2px);
}

/* =================================
   BOOKING CTA - Gold gradient button
   ================================= */
.booking-cta {
    text-align: center;
    padding: 80px 20px;
}

.booking-cta a,
.btn-booking {
    background: linear-gradient(135deg, #D4B896 0%, #E5C8A7 50%, #D4B896 100%);
    color: #2B2B2B;
    padding: 28px 60px;
    font-size: 1.3em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 25px rgba(212, 184, 150, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(0);
    border: none;
}

.booking-cta a:hover,
.btn-booking:hover {
    background: linear-gradient(135deg, #7C9885 0%, #8DA895 50%, #7C9885 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(124, 152, 133, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

/* subtlePulse animation removed - box-shadow is not compositable */

/* =================================
   BOOKING FORM - Expandable panel
   ================================= */
.booking-form-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease;
    padding: 0 20px;
}

.booking-form-panel.open {
    max-height: 1200px;
    padding: 40px 20px 20px;
}

.booking-form-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--color-dark-alt);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-form-intro {
    text-align: center;
    color: var(--color-gold);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.booking-field {
    margin-bottom: 20px;
}

.booking-label {
    display: block;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.booking-hint {
    font-weight: 400;
    color: rgba(250, 247, 242, 0.7);
    font-size: 0.85rem;
}

.booking-input,
.booking-select,
.booking-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-dark);
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    cursor: text;
}

.booking-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(124, 152, 133, 0.15);
}

.booking-input::placeholder,
.booking-textarea::placeholder {
    color: #999;
}

.booking-textarea {
    min-height: 100px;
    resize: vertical;
}

.booking-phone-wrapper {
    display: flex;
    align-items: stretch;
}

.booking-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 16px;
}

.booking-phone-wrapper .booking-input {
    border-radius: 0 8px 8px 0;
    flex: 1;
}

/* Date/Time row for multiple options */
.booking-datetime-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.booking-datetime-row .booking-date-input {
    flex: 1.2;
}

.booking-datetime-row .booking-time-select {
    flex: 0.8;
}

.booking-submit {
    width: 100%;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    background: linear-gradient(135deg, #D4B896 0%, #E5C8A7 50%, #D4B896 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 184, 150, 0.3);
    margin-top: 10px;
}

.booking-submit:hover {
    background: linear-gradient(135deg, #7C9885 0%, #8DA895 50%, #7C9885 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 152, 133, 0.4);
}

.booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.booking-success {
    background: rgba(124, 152, 133, 0.2);
    border: 2px solid var(--color-sage);
    color: var(--color-cream);
}

.booking-success h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 8px;
}

.booking-error {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #dc3545;
}

.booking-or {
    text-align: center;
    margin-top: 20px;
    color: rgba(250, 247, 242, 0.7);
    font-size: 0.9rem;
}

.booking-or a {
    color: var(--color-gold);
    font-weight: 600;
}

.booking-or a:hover {
    color: var(--color-cream);
}

/* Loading spinner for booking form */
.booking-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-left-color: var(--color-dark);
    border-radius: 50%;
    animation: bookingSpin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes bookingSpin {
    to { transform: rotate(360deg); }
}

/* Flatpickr custom theme */
.flatpickr-calendar {
    font-family: var(--font-body);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 8px;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--color-sage);
    border-color: var(--color-sage);
}

.flatpickr-day:hover {
    background: rgba(124, 152, 133, 0.2);
    border-color: transparent;
}

.flatpickr-months .flatpickr-month {
    background: var(--color-dark);
    color: var(--color-cream);
    border-radius: 8px 8px 0 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--color-cream);
    font-weight: 600;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--color-cream);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--color-gold);
}

span.flatpickr-weekday {
    color: var(--color-dark);
    font-weight: 600;
}

/* Hide form on success */
.booking-form.hidden {
    display: none;
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 20px;
    }

    .booking-input,
    .booking-select,
    .booking-textarea {
        padding: 12px 14px;
    }
}

/* =================================
   CONTACT BAR - Fixed header
   ================================= */
.contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--color-dark-alt);
    color: var(--color-cream);
    padding: 5px 20px;
    text-align: center;
    font-size: 16px;
    z-index: 1001;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

/* Extend background below contact bar to prevent Firefox gap on scroll */
.contact-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 5px;
    background: var(--color-dark-alt);
    z-index: -1;
}

.contact-bar.hidden {
    transform: translateY(-100%);
}

/* Desktop - keep header always visible */
@media (min-width: 1200px) {
    .contact-bar.hidden {
        transform: translateY(0) !important;
    }

    body {
        padding-top: 0;
    }
}

.contact-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-gold);
    text-shadow: 0 0 4px rgba(212, 184, 150, 0.4);
}

.contact-link:hover {
    text-shadow: 0 0 12px rgba(212, 184, 150, 0.7),
                 0 0 6px rgba(212, 184, 150, 0.5);
}

/* subtleGlow animation removed - text-shadow is not compositable */

.contact-link .icon {
    width: 16px;
    height: 16px;
}

.contact-divider {
    color: var(--color-text-light);
}

.contact-hours {
    color: var(--color-cream);
    opacity: 0.9;
}


/* =================================
   HERO SECTION - Fluid viewport-based design
   ================================= */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--color-dark-alt);
    padding: var(--spacing-md);
    padding-top: 50px;
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vh, 2rem);
}

/* Hero Logo - scales with viewport height */
.hero-logo {
    width: clamp(200px, 80vw, 400px);
    height: auto;
    max-height: clamp(200px, 35dvh, 400px);
    object-fit: contain;
}

/* Hero Title with Text Mask Animation */
.hero-title {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    color: var(--color-cream);
    margin: 0;
    background-image: url('../assets/images/emma-massage-therapist-preston.webp');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    animation: breatheText 10s ease-in-out infinite;
    transform-origin: 50% 50%;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes breatheText {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.0375) translateY(-3.75px);
    }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(0.5rem, 2vh, 1.5rem);
}

/* Mobile: hide About button */
@media (max-width: 768px) {
    .hero-buttons .btn-secondary {
        display: none;
    }
}

/* Phone Landscape - show About button */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-logo {
        width: clamp(120px, 50vw, 200px);
        max-height: clamp(120px, 30dvh, 200px);
    }

    .hero-title {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }

    .hero-buttons .btn-secondary {
        display: inline-block;
    }
}

/* Desktop - keep contact bar always visible */
@media (min-width: 1200px) {
    .hero {
        padding-top: 35px;
    }
}

/* =================================
   SECTIONS
   ================================= */
.section {
    padding: var(--spacing-xl) 0;
}


/* Services Section */
.services {
    background: var(--color-light-bg);
    padding-top: 0;
    padding-bottom: 0;
}

/* Navy header bar for Services section */
.services-header {
    background: var(--color-dark-alt);
    padding: var(--spacing-lg) var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + var(--spacing-md));
    padding-right: calc(50vw - 50% + var(--spacing-md));
}

.services-header .section-title {
    color: var(--color-cream);
    margin-bottom: var(--spacing-xs);
}

.services-header .section-subtitle {
    color: var(--color-gold);
    opacity: 0.9;
}

.services .section-title::after {
    display: none;
}

.service-category {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.service-category:last-child {
    margin-bottom: 0;
}

/* Aromatherapy section with hover background images */
.service-category.aromatherapy-category {
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + var(--spacing-md));
    padding-right: calc(50vw - 50% + var(--spacing-md));
}

/* Three separate pseudo-elements for crossfade effect */
.service-category.aromatherapy-category::before,
.service-category.aromatherapy-category::after,
.service-category.aromatherapy-category .bg-layer {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}


.service-category.aromatherapy-category::before {
    background-image: url('../assets/images/teatree-lavender-aromatherapy-oils.webp');
    z-index: 0;
}

.service-category.aromatherapy-category::after {
    background-image: url('../assets/images/jasmine-vetiver-aromatherapy-blend.webp');
    z-index: 0;
}

.service-category.aromatherapy-category .bg-layer {
    background-image: url('../assets/images/rose-sandalwood-aromatherapy-massage.webp');
    z-index: 0;
}

.service-category.aromatherapy-category.bg-teatree::before {
    opacity: 1;
}

.service-category.aromatherapy-category.bg-jasmine::after {
    opacity: 1;
}

.service-category.aromatherapy-category.bg-rose .bg-layer {
    opacity: 1;
}

.service-category.aromatherapy-category > * {
    position: relative;
    z-index: 1;
}

/* Aromatherapy section header styling - visible on dark backgrounds */
.aromatherapy-category .category-title {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: color 0.5s ease, background 0.5s ease, text-shadow 0.5s ease;
}

.aromatherapy-category .category-description {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    transition: color 0.5s ease, background 0.5s ease, text-shadow 0.5s ease;
}

/* When background image is showing */
.aromatherapy-category.bg-teatree .category-title,
.aromatherapy-category.bg-jasmine .category-title,
.aromatherapy-category.bg-rose .category-title {
    color: var(--color-gold);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    background: rgba(24, 28, 40, 0.7);
}

.aromatherapy-category.bg-teatree .category-description,
.aromatherapy-category.bg-jasmine .category-description,
.aromatherapy-category.bg-rose .category-description {
    color: var(--color-cream);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
    background: rgba(24, 28, 40, 0.6);
}

.category-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: var(--color-cream);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--transition);
}

.price-card.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.price-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: var(--shadow-lg);
}

.price-card:hover .duration,
.price-card:hover .price,
.price-card:hover .standard-description,
.price-card:hover .blend-name,
.price-card:hover .blend-price,
.price-card:hover .blend-description,
.price-card:hover .blend-tagline {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.price-card .duration,
.price-card .blend-name,
.price-card .suite-name {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    transition: transform 0.3s ease;
}

.price-card .blend-description,
.price-card .suite-description,
.price-card .standard-description {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s ease;
}

.price-card .price,
.price-card .blend-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.price-card .blend-tagline {
    transition: transform 0.3s ease;
}

/* Standard Massage Cards */
.price-card.standard-card {
    border-top: none;
    border-bottom: 8px solid;
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-card.standard-card .standard-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-card.standard-card .duration {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.price-card.standard-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0.5rem 0;
}

.price-card.standard-card .standard-description {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.price-card.accent-dark {
    border-bottom-color: var(--color-dark);
}

.price-card.accent-sage {
    border-bottom-color: var(--color-sage);
}

.price-card.accent-gold {
    border-bottom-color: var(--color-gold);
}


/* Aromatherapy Cards - WP Style */
.price-card.aroma-card {
    border-top: none;
    border-bottom: 8px solid;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-card.aroma-card .blend-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-card.aroma-card .blend-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    text-align: center;
}

.price-card.aroma-card .blend-duration {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.price-card.aroma-card .blend-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0.75rem 0;
}

.price-card.aroma-card .blend-description {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    min-height: 8em;
}

.price-card.aroma-card .blend-tagline {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.price-card.aroma-green {
    border-bottom-color: var(--color-green);
    background: linear-gradient(to bottom, rgba(44, 85, 48, 0.06) 0%, rgba(44, 85, 48, 0.12) 100%), var(--color-cream);
}

.price-card.aroma-teal {
    border-bottom-color: var(--color-teal);
    background: linear-gradient(to bottom, rgba(74, 139, 139, 0.06) 0%, rgba(74, 139, 139, 0.12) 100%), var(--color-cream);
}

.price-card.aroma-gold {
    border-bottom-color: var(--color-gold);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.12) 100%), var(--color-cream);
}

/* Dim non-hovered aroma cards */
.pricing-grid.aromatherapy .aroma-card.animated {
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--transition);
}

.pricing-grid.aromatherapy:hover .aroma-card.animated {
    opacity: 0.5 !important;
}

.pricing-grid.aromatherapy .aroma-card.animated:hover {
    opacity: 1 !important;
}


/* Testimonials Section */
.testimonials {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    padding-top: var(--spacing-lg);
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/massage-therapy-testimonials-bg.webp') center center / cover no-repeat;
    opacity: 0.4;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    color: var(--color-cream);
}

.testimonials .section-title::after {
    display: none;
}

.reviews-link {
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .reviews-link {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .reviews-link {
        font-size: 1.5rem;
    }
}

.reviews-link::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: var(--spacing-sm) auto 0;
}

.reviews-link a {
    color: var(--color-gold);
}

.reviews-link a:hover {
    text-decoration: underline;
}

/* Carousel Container */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-track .testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
}

.carousel-btn {
    background: var(--color-cream);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.carousel-dot.active::after {
    background: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.2);
}

/* Progress bar - hidden on desktop, shown on mobile */
.carousel-progress {
    display: none;
}

.testimonial-card {
    background: var(--color-cream);
    padding: 32px 24px;
    border: none;
    border-bottom: 8px solid var(--color-dark);
    border-radius: 0;
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
}

.testimonial-card.accent-green {
    border-bottom-color: var(--color-green);
}

.testimonial-card.accent-amber {
    border-bottom-color: var(--color-amber);
}

.testimonial-card.accent-gold {
    border-bottom-color: var(--color-gold);
}

.testimonial-card.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card.accent-green .testimonial-author {
    color: #1e3d21;
}

.testimonial-card.accent-amber .testimonial-author {
    color: #8a5a00;
}

.testimonial-card.accent-gold .testimonial-author {
    color: #5c4a00;
}

.testimonial-text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
}

/* FAQ Section */
.faq {
    background: var(--color-light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-md) 0;
    font-family: var(--font-body); /* Not Cinzel for FAQ questions */
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-sage);
}

.faq-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    color: var(--color-text-light);
}

/* =================================
   FOOTER
   ================================= */
.footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin: 0 auto var(--spacing-sm);
}

.footer-tagline {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-contact a {
    color: var(--color-cream);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* =================================
   SIDE NAV FAB (Contact Button in Side Nav)
   Horizontal toolbar with labeled icons
   ================================= */

/* Container - positioned relative for the toolbar */
.side-nav-fab {
    position: relative;
    margin-bottom: 24px;
}

/* Toggle button - same size as expanded icons */
.side-nav-fab-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-gold);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.side-nav-fab-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--color-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Optical adjustment for chat icon */
.side-nav-fab-toggle .icon-chat {
    transform: translate(0.5px, -0.5px);
}

.side-nav-fab-toggle .icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.side-nav-fab-toggle:hover {
    transform: scale(1.1);
}

.side-nav-fab.open .side-nav-fab-toggle .icon-chat {
    opacity: 0;
    transform: rotate(90deg);
}

.side-nav-fab.open .side-nav-fab-toggle .icon-close {
    opacity: 1;
    transform: rotate(0);
}

/* Options - cream ribbon sliding out to the left, centered on toggle */
.side-nav-fab-options {
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateX(20px) translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    background: var(--color-cream);
    border-radius: 40px;
    padding: 14px 52px 14px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.side-nav-fab.open .side-nav-fab-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(-50%);
}

/* Individual contact option - vertical stack (icon + label) */
.side-nav-fab-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 0 10px;
    min-width: 52px;
    margin-top: 16px;
}

/* Icon */
.side-nav-fab-option .fab-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.side-nav-fab-option:hover .fab-icon {
    transform: scale(1.1);
}

.side-nav-fab-option svg {
    width: 20px;
    height: 20px;
}

/* Label - below icon, navy blue */
.side-nav-fab-option .fab-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button colors */
.fab-call {
    background: var(--color-sage);
}
.fab-call svg {
    fill: white;
}

.fab-whatsapp {
    background: var(--color-whatsapp);
}
.fab-whatsapp svg {
    fill: white;
}

.fab-whatsapp-call {
    background: var(--color-whatsapp);
}
.fab-whatsapp-call svg {
    fill: white;
}

.fab-sms {
    background: #5c6bc0;
}
.fab-sms svg {
    fill: white;
}

.fab-email {
    background: #ea4335;
}
.fab-email svg {
    fill: white;
}

/* Tablet */
@media (min-width: 768px) {
    .side-nav-fab-toggle {
        width: 44px;
        height: 44px;
    }

    .side-nav-fab-toggle svg {
        width: 22px;
        height: 22px;
    }

    .side-nav-fab-options {
        right: -4px;
        padding: 16px 58px 16px 18px;
        border-radius: 44px;
    }

    .side-nav-fab-option {
        padding: 0 12px;
        min-width: 58px;
        margin-top: 18px;
    }

    .side-nav-fab-option .fab-icon {
        width: 44px;
        height: 44px;
    }

    .side-nav-fab-option svg {
        width: 22px;
        height: 22px;
    }

    .side-nav-fab-option .fab-label {
        font-size: 11px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .side-nav-fab-toggle {
        width: 48px;
        height: 48px;
    }

    .side-nav-fab-toggle svg {
        width: 24px;
        height: 24px;
    }

    .side-nav-fab-options {
        right: -4px;
        padding: 18px 64px 18px 20px;
        border-radius: 48px;
    }

    .side-nav-fab-option {
        padding: 0 14px;
        min-width: 62px;
        margin-top: 20px;
    }

    .side-nav-fab-option .fab-icon {
        width: 48px;
        height: 48px;
    }

    .side-nav-fab-option svg {
        width: 24px;
        height: 24px;
    }
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stack third card below on tablet for standard massage */
    .pricing-grid:not(.aromatherapy) {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-track .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* iPad Mini Portrait (744px - 768px) */
@media (min-width: 744px) and (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-grid.aromatherapy {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .carousel-track .testimonial-card {
        flex: 0 0 100%;
    }
}

/* iPad Portrait (768px - 834px) */
@media (min-width: 768px) and (max-width: 834px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-grid.aromatherapy {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .price-card.standard-card,
    .price-card.aroma-card {
        padding: var(--spacing-lg) var(--spacing-lg);
    }
}

/* iPad Landscape & iPad Pro Portrait (834px - 1024px) */
@media (min-width: 834px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: var(--spacing-md);
    }

    .pricing-grid.aromatherapy {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Center the third card when it wraps */
    .pricing-grid .price-card:last-child {
        grid-column: 1 / -1;
        max-width: 380px;
        justify-self: center;
    }
}

/* iPad Pro Landscape (1024px - 1380px) - covers all iPad landscapes including M4 13" */
@media (min-width: 1024px) and (max-width: 1380px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .contact-bar-inner {
        font-size: 0.8rem;
    }



    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        padding: 0 var(--spacing-sm);
    }


    .price-card.standard-card,
    .price-card.aroma-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .price-card.standard-card .duration,
    .price-card.aroma-card .blend-name {
        font-size: 1.3rem;
    }

    .price-card.standard-card .standard-description,
    .price-card.aroma-card .blend-description {
        font-size: 0.9rem;
    }

    .testimonials .container {
        padding: 0 var(--spacing-sm);
        overflow: hidden;
    }

    .carousel-container {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        overflow: hidden;
    }

    .carousel-track-container {
        width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-track .testimonial-card {
        flex: 0 0 100%;
        min-width: 0;
        width: 100%;
    }

    .carousel-btn {
        display: none;
    }

    /* Hide dots on mobile, show progress bar instead */
    .carousel-dots {
        display: none;
    }

    .carousel-progress {
        display: block;
        width: 80%;
        max-width: 200px;
        height: 4px;
        background: rgba(255,255,255,0.2);
        border-radius: 2px;
        margin: 1.5rem auto 0;
        overflow: hidden;
    }

    .carousel-progress-bar {
        height: 100%;
        background: var(--color-gold);
        border-radius: 2px;
        transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .testimonial-card {
        padding: 24px 20px;
        min-height: 0;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }


    .category-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .category-description {
        font-size: 0.95rem;
        padding: 0 var(--spacing-sm);
    }

}

/* Larger iPhones (Pro Max, Plus, iPhone 11: 414px-440px) */
@media (min-width: 414px) and (max-width: 480px) {
    .pricing-grid {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }

    .price-card.standard-card,
    .price-card.aroma-card {
        padding: var(--spacing-md) var(--spacing-md);
    }
}

/* Small/standard iPhones (375px-413px: iPhone 13 mini, iPhone 13/14/15/16 base) */
@media (max-width: 413px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .contact-area {
        display: none;
    }

    .contact-bar-inner {
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-booking {
        padding: 20px 32px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.75rem;
    }



    .footer-contact {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .footer-contact span:nth-child(2) {
        display: none;
    }

    /* Pricing cards mobile */
    .pricing-grid {
        max-width: 100%;
        padding: 0 var(--spacing-xs);
        gap: var(--spacing-sm);
    }

    .price-card.standard-card,
    .price-card.aroma-card {
        padding: var(--spacing-md) var(--spacing-sm);
        border-bottom-width: 6px;
    }

    .price-card.standard-card .standard-emoji,
    .price-card.aroma-card .blend-emoji {
        font-size: 1.75rem;
    }

    .price-card.standard-card .duration {
        font-size: 1.2rem;
    }

    .price-card.standard-card .price {
        font-size: 1.3rem;
    }

    .price-card.standard-card .standard-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .price-card.aroma-card .blend-name {
        font-size: 1.1rem;
    }

    .price-card.aroma-card .blend-price {
        font-size: 1.3rem;
    }

    .price-card.aroma-card .blend-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .category-description {
        font-size: 0.9rem;
    }

    /* Testimonials mobile */
    .testimonial-card {
        padding: 20px 16px;
    }

    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.65;
    }
}

/* =================================
   APPROACH SECTIONS - Overlapping Cards
   ================================= */
.approach-section {
    width: 100%;
    background: var(--color-light-bg);
    padding: 80px 0;
}

.approach-section .section-title {
    margin-bottom: 40px;
}

.approach-block {
    max-width: 1140px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.approach-block:last-child {
    margin-bottom: 0;
}

.approach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
}

/* The floating card */
.approach-card {
    background: var(--color-cream);
    padding: 32px;
    position: relative;
    z-index: 10;
    margin-right: -40px;
    box-shadow: 0 0 32px rgba(14, 14, 14, 0.08);
    border-bottom: 8px solid var(--color-sage);
    /* Initial state for animation - fully hidden including border */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0.7s;
    will-change: transform, opacity;
}

.approach-card.animated {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0s;
}

.approach-card[data-accent="primary"] {
    border-bottom-color: var(--color-sage);
}

.approach-card[data-accent="secondary"] {
    border-bottom-color: var(--color-gold);
}

.approach-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

.approach-card p strong {
    color: var(--color-dark);
}

/* The static image - NO transforms, stays completely still */
.approach-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    transform: none !important;
    transition: none !important;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
    transition: none !important;
}

/* Reverse layout - image on left, card on right */
.approach-row.reverse .approach-image {
    order: 1;
}

.approach-row.reverse .approach-card {
    order: 2;
    margin-right: 0;
    margin-left: -40px;
    /* Animation from right for reversed rows */
    transform: translateX(60px);
}

.approach-row.reverse .approach-card.animated {
    transform: translateX(0);
}

/* Responsive approach sections */
@media (max-width: 900px) {
    .approach-section {
        padding: 64px 0;
    }

    .approach-block {
        margin-bottom: 64px;
        padding: 0 24px;
    }

    .approach-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .approach-row.reverse {
        direction: ltr;
    }

    .approach-card {
        margin: -40px 16px 0;
        padding: 24px;
        order: 2;
        /* Reset animation direction for mobile */
        transform: translateY(30px);
    }

    .approach-card.animated {
        transform: translateY(0);
    }

    .approach-row.reverse .approach-card {
        margin-left: 16px;
        margin-right: 16px;
        transform: translateY(30px);
    }

    .approach-row.reverse .approach-card.animated {
        transform: translateY(0);
    }

    .approach-image {
        order: 1;
        aspect-ratio: 1;
        max-height: 400px;
    }
}

@media (max-width: 413px) {
    .approach-section {
        padding: 40px 0;
    }

    .approach-block {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .approach-card {
        padding: 16px;
        margin: -30px 8px 0;
    }

    .approach-row.reverse .approach-card {
        margin-left: 8px;
        margin-right: 8px;
    }

    .approach-image {
        max-height: 300px;
    }
}

/* =================================
   REDUCED MOTION - Accessibility
   ================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-title {
        animation: none;
    }

    .booking-cta a,
    .btn-booking {
        animation: none;
    }

    .contact-link {
        animation: none;
    }

    .contact-fab-toggle {
        animation: none;
    }

    .carousel-track {
        transition: none;
    }

    .approach-card {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .price-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =================================
   SKIP LINK - Accessibility
   ================================= */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* =================================
   SIDE NAVIGATION - Minimal dot nav
   ================================= */
.side-nav {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-nav.visible {
    opacity: 1;
    visibility: visible;
}

.side-nav-dot {
    width: 10px;
    height: 10px;
    background: rgba(24, 28, 40, 0.3);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.side-nav-dot:hover {
    background: var(--color-gold);
    transform: scale(1.3);
}

.side-nav-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* Label on hover */
.side-nav-label {
    position: absolute;
    right: 20px;
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.side-nav-dot:hover .side-nav-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .side-nav {
        right: 16px;
        gap: 20px;
    }

    .side-nav-dot {
        width: 12px;
        height: 12px;
    }
}

/* Desktop - slightly larger, more spacing */
@media (min-width: 1024px) {
    .side-nav {
        right: 24px;
        gap: 24px;
    }

    .side-nav-dot {
        width: 12px;
        height: 12px;
    }

    .side-nav-label {
        font-size: 13px;
        padding: 6px 12px;
    }
}


/* Mobile: ColorOS/Oppo fix - GPU compositing for fixed elements */
/* Preserves fade-in transition */
@media (max-width: 767px) {
    .side-nav {
        position: fixed !important;
        right: 12px !important;
        -webkit-transform: translateY(-50%) translateZ(0);
        transform: translateY(-50%) translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .side-nav.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .side-nav-fab,
    .side-nav-fab-toggle,
    .side-nav-dot {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Hide on very small screens */
@media (max-width: 320px) {
    .side-nav {
        display: none !important;
    }
}