/* ==========================================================================
   ROSEWOOD SPA — CORE DESIGN SYSTEM & STYLESHEET
   Brand Direction: Luxury, Feminine, Elegant, Relaxing, Premium, Warm
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Alex+Brush&display=swap');

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Brand Color Palette */
    --primary: #D9829A;          /* Rose Pink */
    --primary-dark: #9E3F58;     /* Deep Rose / Wine */
    --primary-light: #F4BAC8;    /* Soft Blush Accent */
    --rose-light: #F7D6DE;       /* Soft Pink Tint */
    --gold: #D6A85F;             /* Champagne Gold */
    --gold-light: #F1D39A;       /* Soft Gold Glow */
    --gold-dark: #A87C38;        /* Deep Warm Gold */
    --cream: #FFF8F3;            /* Warm Cream Background */
    --ivory: #FFFDFB;            /* Soft Ivory Body Background */
    --text: #4A2530;             /* Dark Wine Heading & Body Text */
    --muted: #80636A;            /* Taupe / Muted Accent Text */
    --white: #FFFFFF;            /* Pure White */
    --overlay-dark: rgba(42, 18, 25, 0.45);
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 15px rgba(158, 63, 88, 0.06);
    --shadow-md: 0 10px 30px rgba(158, 63, 88, 0.1);
    --shadow-lg: 0 20px 40px rgba(74, 37, 48, 0.12);
    --gold-glow: 0 0 20px rgba(214, 168, 95, 0.35);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Alex Brush', cursive;

    /* Spacing & Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --container-width: 1280px;

    /* Transitions */
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory);
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    cursor: pointer;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.script-accent {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 2rem;
}

/* --------------------------------------------------------------------------
   4. REUSABLE CONTAINER & UTILITIES
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

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

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0.75rem auto 0;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 253, 251, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(214, 168, 95, 0.25);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   5. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(158, 63, 88, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(158, 63, 88, 0.4);
    color: var(--white);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 168, 95, 0.5);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

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

/* Phone Pill CTA */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.phone-pill:hover {
    background: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   6. GLOBAL STICKY HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition-normal);
    overflow: visible;
}

.site-header.scrolled {
    background-color: rgba(255, 253, 251, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(214, 168, 95, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px; /* Always tall enough for 80px logo */
    overflow: visible;
}

/* Logo Styling */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 8px rgba(214, 168, 95, 0.5));
}

.logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.08);
    filter: drop-shadow(0 4px 14px rgba(214, 168, 95, 0.6));
}

.logo-text {
    display: none; /* Logo image only — no text */
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-dark);
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 2px;
}

.site-header:not(.scrolled) .logo-main {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header:not(.scrolled) .logo-sub {
    color: var(--gold-light);
}

.site-header:not(.scrolled) .logo-img {
    filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.4)) brightness(1.1);
}

/* Header Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.4rem 0;
}

.site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

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

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

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

.site-header:not(.scrolled) .nav-link:hover,
.site-header:not(.scrolled) .nav-link.active {
    color: var(--gold-light);
}

/* Mobile Hamburger Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.site-header:not(.scrolled) .hamburger span {
    background-color: var(--white);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-dark);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-dark);
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--ivory);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-normal);
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.mobile-menu-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(42, 18, 25, 0.72) 0%,
        rgba(158, 63, 88, 0.45) 50%,
        rgba(42, 18, 25, 0.65) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold-light);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* Inner Page Hero Header with Luxury Background Image */
.page-hero {
    position: relative;
    padding: 9.5rem 0 5.5rem;
    min-height: 45vh;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background-color: #2A1219;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 18, 25, 0.82) 0%,
        rgba(158, 63, 88, 0.65) 50%,
        rgba(42, 18, 25, 0.82) 100%
    );
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   8. TRUST / FEATURE HIGHLIGHT BAR
   -------------------------------------------------------------------------- */
.feature-bar {
    background: var(--white);
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(214, 168, 95, 0.3);
    padding: 2.2rem 2rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-dark);
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.feature-info p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(214, 168, 95, 0.4);
    border-radius: calc(var(--radius-md) - 8px);
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.25rem 1.8rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--gold);
}

.about-badge-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.about-badge-sub {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.owner-info-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(214, 168, 95, 0.25);
    margin: 2rem 0;
}

.owner-avatar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rose-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-details h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.owner-details p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US / COMPARATIVE ADVANTAGE SECTION
   -------------------------------------------------------------------------- */
.why-choose-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(214, 168, 95, 0.25);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 100%);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gold-light);
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIAL CARDS & ANIMATED CAROUSEL
   -------------------------------------------------------------------------- */
.testimonial-trust-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(254, 250, 246, 0.9);
    border: 1px solid rgba(214, 168, 95, 0.35);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(214, 168, 95, 0.12);
    backdrop-filter: blur(8px);
}

.trust-rating-score {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.trust-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--muted);
    border-left: 1px solid rgba(214, 168, 95, 0.3);
    padding-left: 0.75rem;
}

.testimonial-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid rgba(214, 168, 95, 0.3);
    color: var(--text);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(107, 30, 48, 0.25);
    transform: translateY(-2px);
}

.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0.5rem 2.5rem 0.5rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 1.75rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.17rem);
    min-width: calc(33.333% - 1.17rem);
    background: var(--white);
    padding: 2.25rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(107, 30, 48, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(214, 168, 95, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(107, 30, 48, 0.12), 0 0 20px rgba(214, 168, 95, 0.2);
    border-color: var(--gold);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.star-rating {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(214, 168, 95, 0.12);
    color: var(--gold-dark);
    border: 1px solid rgba(214, 168, 95, 0.25);
}

.quote-watermark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    color: var(--gold);
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-card:hover .quote-watermark {
    opacity: 0.18;
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(214, 168, 95, 0.18);
    position: relative;
    z-index: 2;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.author-avatar-gradient {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light) 0%, #fce4ec 100%);
    border: 2px solid var(--gold-light);
    color: var(--primary-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.verified-check-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.author-info span {
    font-size: 0.78rem;
    color: var(--muted);
    display: block;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #4285F4;
    font-weight: 600;
    background: rgba(66, 133, 244, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
}

/* Carousel Controls & Pagination */
.carousel-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.carousel-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(214, 168, 95, 0.4);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(107, 30, 48, 0.25);
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(214, 168, 95, 0.35);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.dot.active {
    width: 28px;
    border-radius: 14px;
    background: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(107, 30, 48, 0.3);
}


/* --------------------------------------------------------------------------
   12. FAQ ACCORDION COMPONENT
   -------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(214, 168, 95, 0.25);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    background: none;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem 1.75rem;
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0.5, 1), padding 0.4s ease;
}

.faq-answer p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. SERVICE CARDS & GRID
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

/* Responsive grid helper — used for why-choose and contact layouts */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(214, 168, 95, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-card-body {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-card-body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(214, 168, 95, 0.15);
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Service Detail Alternating Rows */
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail-row:nth-child(even) {
    direction: rtl;
}

.service-detail-row:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}

.service-detail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Quick View */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 8, 12, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    padding: 1.5rem;
}

.modal-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 650px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gold);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* --------------------------------------------------------------------------
   14. SPECIAL CTA SECTION
   -------------------------------------------------------------------------- */
.special-cta {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6E2B3D 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.special-cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(var(--gold-light) 1px, transparent 1px);
    background-size: 24px 24px;
}

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

.special-cta h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    margin-bottom: 1.25rem;
}

.special-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   15. GALLERY GRID & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.6rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--cream);
    border: 1px solid rgba(214, 168, 95, 0.3);
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 18, 25, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

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

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

.gallery-overlay-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--white);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 8, 12, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    padding: 2rem;
}

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

.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 85vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   16. BOOKING FORM & INPUT STYLES
   -------------------------------------------------------------------------- */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(214, 168, 95, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(214, 168, 95, 0.3);
    background: var(--ivory);
    color: var(--text);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 130, 154, 0.15);
}

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

/* --------------------------------------------------------------------------
   16.1 INTERACTIVE MAP WRAPPER
   -------------------------------------------------------------------------- */
.map-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(214, 168, 95, 0.35);
    border-bottom: 1px solid rgba(214, 168, 95, 0.35);
    border-left: none;
    border-right: none;
    background: var(--cream);
}

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


.map-floating-cta {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 10;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(30, 12, 17, 0.86) 0%, rgba(18, 7, 10, 0.93) 100%), url('../assets/images/footer-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: rgba(255, 255, 255, 0.85);
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(214, 168, 95, 0.35);
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.4);
}


/* Footer logo uses slightly smaller image */
.site-footer .logo-img {
    width: 110px;
    height: 110px;
    filter: brightness(1.15) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.25));
}

.site-footer .logo {
    margin-bottom: 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    text-decoration: underline;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   18. FLOATING CONTACT ACTIONS (DESKTOP & MOBILE STICKY BAR)
   -------------------------------------------------------------------------- */
.floating-actions-desktop {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.float-btn-whatsapp { background: #25D366; }
.float-btn-phone { background: var(--primary-dark); }
.float-btn-top { background: var(--gold); opacity: 0; pointer-events: none; }
.float-btn-top.is-visible { opacity: 1; pointer-events: auto; }

.float-btn:hover {
    transform: scale(1.1);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-top: 1px solid rgba(214, 168, 95, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
}

.mobile-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 0.5rem;
}

.mobile-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}
