/* ============================================
   L'AUBE MATERNELLE - LUXURY MIDWIFE WEBSITE
   Premium CSS Stylesheet
   ============================================
   
   COLOR PALETTE (Luxury/Organic - NO GREEN):
   - Background: Ivory #FDFBF7
   - Alt Background: Warm Beige #E6DCCA
   - Accent: Powder Pink #F3E5E4
   - Text: Taupe #8D7F75
   - Primary CTA: Terracotta #C07A65
   
   FONTS:
   - French Headings: Playfair Display (Serif)
   - French Body: Montserrat (Sans)
   - Arabic Headings: Amiri (Naskh)
   - Arabic Body: Tajawal (Sans)
   
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors - Elegant Rose Gold & Soft Lavender Palette */
    --color-ivory: #FEFCFD;
    --color-beige: #F8F0F5;
    --color-beige-light: #FBF7F9;
    --color-pink: #FDEFF5;
    --color-pink-dark: #F5DDE8;
    --color-nude: #EADCE5;
    
    --color-terracotta: #D4829A;
    --color-terracotta-dark: #C06B85;
    --color-terracotta-light: #E8A5B8;
    
    --color-taupe: #9B8A9E;
    --color-taupe-dark: #6B5B70;
    --color-taupe-light: #B8AAB8;
    
    --color-text: #4A3F50;
    --color-text-light: #6B5F72;
    --color-text-muted: #9890A0;
    
    --color-white: #FFFFFF;
    --color-black: #3A3040;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --font-heading-ar: 'Amiri', 'Traditional Arabic', serif;
    --font-body-ar: 'Tajawal', 'Arial', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 90px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows - Softer */
    --shadow-sm: 0 2px 4px rgba(180, 170, 160, 0.06);
    --shadow-md: 0 4px 12px rgba(180, 170, 160, 0.10);
    --shadow-lg: 0 10px 30px rgba(180, 170, 160, 0.12);
    --shadow-xl: 0 20px 40px rgba(212, 165, 154, 0.12);
    --shadow-glow: 0 0 40px rgba(212, 165, 154, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-smooth: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Arabic RTL Styles */
html[dir="rtl"] body {
    font-family: var(--font-body-ar);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .nav__logo,
html[dir="rtl"] .footer__logo {
    font-family: var(--font-heading-ar);
}

/* Arabic text needs slightly larger size */
html[dir="rtl"] body {
    font-size: 1.05rem;
}

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

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-taupe-dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

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

em {
    font-style: italic;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-lg);
}

.section {
    padding-block: var(--space-5xl);
}

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

.section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin-inline: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn--secondary:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

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

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

.btn--full {
    width: 100%;
}

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

.btn.loading .btn__text {
    display: none;
}

.btn.loading .btn__loading {
    display: flex;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(253, 251, 247, 0);
    backdrop-filter: blur(0px);
    transition: all var(--transition-base);
}

.header.scrolled::before {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-wide);
    margin-inline: auto;
    padding-inline: var(--space-xl);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-taupe-dark);
    z-index: 10;
}

.logo-symbol {
    font-size: var(--text-2xl);
    color: var(--color-terracotta);
}

/* Logo Image */
.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 38px;
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-taupe);
    position: relative;
    padding-block: var(--space-xs);
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-terracotta);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-terracotta);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link--cta {
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-terracotta);
    color: var(--color-white) !important;
    border-radius: var(--radius-sm);
}

.nav__link--cta:hover {
    background-color: var(--color-terracotta-dark);
}

.nav__link--cta::after {
    display: none;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    z-index: 10;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background-color: var(--color-beige-light);
    border-radius: var(--radius-full);
    padding: var(--space-xs);
}

.lang-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-taupe);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.lang-btn.active {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.lang-btn:hover:not(.active) {
    color: var(--color-terracotta);
}

.lang-divider {
    width: 1px;
    height: 16px;
    background-color: var(--color-nude);
}

/* Mobile Navigation */
.nav__toggle,
.nav__close {
    display: none;
    color: var(--color-taupe-dark);
}

@media (max-width: 1024px) {
    .nav__menu {
        position: fixed;
        top: 0;
        inset-inline-end: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-ivory);
        padding: var(--space-5xl) var(--space-2xl);
        box-shadow: var(--shadow-xl);
        transition: inset-inline-end var(--transition-smooth);
        z-index: 1001;
    }
    
    .nav__menu.show-menu {
        inset-inline-end: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xl);
    }
    
    .nav__link {
        font-size: var(--text-lg);
    }
    
    .nav__toggle,
    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav__close {
        position: absolute;
        top: var(--space-xl);
        inset-inline-end: var(--space-xl);
    }
}

/* ============================================
   SMALL MOBILE FIX (< 400px)
   ============================================ */
@media (max-width: 400px) {
    :root {
        --header-height: 70px;
    }
    
    .nav {
        padding-inline: var(--space-md);
    }
    
    .nav__logo {
        font-size: var(--text-base);
    }
    
    .logo-symbol {
        font-size: var(--text-lg);
    }
    
    .lang-switcher {
        padding: 2px;
    }
    
    .lang-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 10px;
    }
    
    .nav__toggle {
        padding: var(--space-xs);
    }
    
    .nav__toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .nav__actions {
        gap: var(--space-sm);
    }
    
    .hero__title {
        font-size: var(--text-2xl);
    }
    
    .hero__description {
        font-size: var(--text-sm);
    }
    
    .section__title {
        font-size: var(--text-2xl);
    }
    
    .container {
        padding-inline: var(--space-md);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: var(--space-md);
        inset-inline-end: var(--space-md);
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        linear-gradient(135deg, rgba(253, 239, 245, 0.88) 0%, rgba(248, 240, 245, 0.85) 50%, rgba(254, 252, 253, 0.80) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Moroccan Pattern Overlay (Zellige inspired) */
.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23C07A65' stroke-width='0.5'/%3E%3Cpath d='M30 10L50 30L30 50L10 30z' fill='none' stroke='%23C07A65' stroke-width='0.5'/%3E%3Cpath d='M30 20L40 30L30 40L20 30z' fill='none' stroke='%23C07A65' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(253, 251, 247, 0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-3xl);
    padding-top: calc(var(--header-height) + var(--space-3xl));
}

.hero__badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    background-color: rgba(192, 122, 101, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
}

.hero__title {
    font-size: var(--text-6xl);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero__title em {
    display: block;
    font-style: italic;
    color: var(--color-terracotta);
}

.hero__description {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-2xl);
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

/* Water Birth Highlight */
.hero__highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.highlight__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-beige) 100%);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
}

.highlight__content {
    text-align: start;
}

.highlight__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-taupe-dark);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-taupe);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-terracotta), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero__title {
        font-size: var(--text-4xl);
    }
    
    .hero__description {
        font-size: var(--text-base);
    }
    
    .hero__highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight__content {
        text-align: center;
    }
}

/* ============================================
   INTRO / WELCOME SECTION
   ============================================ */
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.intro__image {
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 1;
}

.intro__accent {
    position: absolute;
    bottom: -20px;
    inset-inline-start: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-pink);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.intro__content .section__label,
.intro__content .section__title {
    text-align: start;
}

.intro__content .section__title {
    margin-bottom: var(--space-xl);
}

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

.intro__text p {
    color: var(--color-text-light);
}

.intro__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    padding-block: var(--space-xl);
    border-top: 1px solid var(--color-beige);
    border-bottom: 1px solid var(--color-beige);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-terracotta);
}

.stat__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .intro__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .intro__image {
        max-width: 400px;
        margin-inline: auto;
    }
    
    .intro__stats {
        justify-content: center;
    }
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-pink) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-taupe);
    font-weight: 500;
    border: 2px dashed var(--color-nude);
}

.image-placeholder small {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.image-placeholder--water {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-beige) 100%);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.about__card {
    background-color: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid transparent;
}

.about__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-terracotta-light);
}

.about__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-beige-light) 100%);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.about__card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.about__card-text {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* Certifications */
.about__certs {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-beige);
}

.certs__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-taupe);
    margin-bottom: var(--space-lg);
}

.certs__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cert {
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-white);
    border: 1px solid var(--color-beige);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-taupe);
}

@media (max-width: 968px) {
    .about__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-inline: auto;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--color-beige);
}

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

.service--featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--color-terracotta-light);
}

.service__badge {
    position: absolute;
    top: var(--space-md);
    inset-inline-end: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-terracotta);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    z-index: 1;
}

.service__image .image-placeholder {
    border-radius: 0;
    border: none;
    min-height: 300px;
}

.service__content {
    padding: var(--space-2xl);
}

.service__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-beige-light) 100%);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.service__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.service__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.service__benefits,
.service__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service__benefits li,
.service__features li {
    position: relative;
    padding-inline-start: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-text);
}

.service__benefits li::before,
.service__features li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--color-terracotta);
    font-weight: 600;
}

@media (max-width: 968px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}



/* ============================================
   BOOKING SECTION
   ============================================ */
.booking__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.booking__info .section__label,
.booking__info .section__title {
    text-align: start;
}

.booking__info .section__title {
    margin-bottom: var(--space-lg);
}

.booking__description {
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.booking__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text);
}

.feature svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.booking__contact {
    padding: var(--space-xl);
    background-color: var(--color-pink);
    border-radius: var(--radius-lg);
}

.booking__contact p {
    font-size: var(--text-sm);
    color: var(--color-taupe);
    margin-bottom: var(--space-sm);
}

.booking__phone {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-terracotta);
}

/* Form Styling */
.booking__form-wrapper {
    background-color: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.booking__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form__row {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form__row--half {
    flex-direction: row;
}

.form__row--half .form__group {
    flex: 1;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    position: relative;
}

.form__group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-taupe);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: var(--space-md);
    border: 1px solid var(--color-beige);
    border-radius: var(--radius-md);
    background-color: var(--color-ivory);
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(192, 122, 101, 0.1);
}

.form__group input.error,
.form__group select.error {
    border-color: #dc3545;
}

.form__group .form__error {
    display: none;
    font-size: var(--text-xs);
    color: #dc3545;
}

.form__group input.error + .form__error,
.form__group select.error + .form__error {
    display: block;
}

.form__privacy {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Form States */
.form__success,
.form__error-message {
    display: none;
    text-align: center;
    padding: var(--space-2xl);
}

.form__success.show,
.form__error-message.show {
    display: block;
}

.form__success .booking__form,
.form__error-message .booking__form {
    display: none;
}

.success__icon svg {
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.error__icon svg {
    color: #dc3545;
    margin-bottom: var(--space-lg);
}

.form__success h3,
.form__error-message h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.form__success p,
.form__error-message p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

@media (max-width: 968px) {
    .booking__wrapper {
        grid-template-columns: 1fr;
    }
    
    .form__row--half {
        flex-direction: column;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.contact__card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-base);
}

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

.contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-beige-light) 100%);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.contact__card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.contact__card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.contact__card a {
    color: var(--color-terracotta);
}

.contact__card a:hover {
    text-decoration: underline;
}

/* Map Placeholder */
.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    min-height: 350px;
    background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-pink) 100%);
    border: 2px dashed var(--color-nude);
    border-radius: var(--radius-lg);
    color: var(--color-taupe);
}

.map-placeholder svg {
    color: var(--color-terracotta);
}

.map-placeholder small {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

@media (max-width: 968px) {
    .contact__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background-image: 
        linear-gradient(135deg, rgba(107, 91, 112, 0.92) 0%, rgba(74, 63, 80, 0.95) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding-block: var(--space-4xl) var(--space-xl);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding-block: var(--space-5xl);
    background-color: var(--color-beige-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery__item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

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

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-beige) 100%);
    border: 2px dashed var(--color-nude);
    color: var(--color-taupe);
    font-size: var(--text-sm);
    text-align: center;
    gap: var(--space-xs);
}

.gallery__item--placeholder svg {
    color: var(--color-terracotta);
    margin-bottom: var(--space-xs);
}

@media (max-width: 968px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GALLERY MARQUEE FOR MOBILE
   ============================================ */
@media (max-width: 768px) {
    .gallery__grid {
        display: flex !important;
        overflow: hidden !important;
        gap: 0;
        padding: var(--space-md) 0;
        width: 100%;
    }
    
    .gallery__marquee-wrapper {
        display: flex !important;
        animation: marquee 20s linear infinite;
        gap: var(--space-md);
        will-change: transform;
    }
    
    .gallery__grid .gallery__item {
        flex-shrink: 0 !important;
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        border-radius: var(--radius-md);
        opacity: 1 !important;
        transform: none !important;
    }
    
    .gallery__grid .gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RTL Marquee */
html[dir="rtl"] .gallery__marquee-wrapper {
    animation: marquee-rtl 20s linear infinite;
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer__logo .logo-symbol {
    color: var(--color-terracotta-light);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    max-width: 280px;
}

.footer__links h4,
.footer__services h4,
.footer__social h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer__links ul,
.footer__services ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a,
.footer__services a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__services a:hover {
    color: var(--color-terracotta-light);
}

.social__icons {
    display: flex;
    gap: var(--space-md);
}

.social__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social__icons a:hover {
    background-color: var(--color-terracotta);
    transform: translateY(-3px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: var(--space-xl);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
    color: var(--color-white);
}

@media (max-width: 968px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__tagline {
        margin-inline: auto;
    }
    
    .social__icons {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    inset-inline-end: var(--space-xl);
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-up.animate-in,
.reveal-left.animate-in,
.reveal-right.animate-in {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-terracotta);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}