/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FF6B35;
    --color-secondary: #DC143C;
    --color-accent: #1E3A8A;
    --color-green: #10B981;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light: #F8F9FA;
    --color-bg-yellow: #FFE5D9;
    --color-border: #E0E0E0;
    --color-success: #28A745;
    --color-error: #DC3545;
    --color-footer: #0A0A0A;
    --hero-bg: radial-gradient(circle at right, #f5f7fa 0%, #c3cfe2 100%);
    --hero-text: var(--color-text);
    --hero-glow: transparent;
    --hero-card-bg: rgba(255, 255, 255, 0.6);
    --hero-card-border: rgba(0,0,0,0.05);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --booking-bg: linear-gradient(135deg, #FFE5D9 0%, #FFD3BA 100%);
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background-color: var(--color-secondary);
    color: var(--color-bg);
}

.btn--primary:hover {
    background-color: #FBBF24;
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--header {
    background-color: var(--color-secondary);
    color: var(--color-bg);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn--hero {
    width: 100%;
    margin-bottom: var(--spacing-sm);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--hero-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #b30f30 100%);
    color: var(--color-bg);
    border: 2px solid transparent;
}

.btn--hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    color: var(--color-bg);
}

.btn--hero-secondary {
    background-color: var(--color-bg);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn--hero-secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn--share {
    background-color: var(--color-accent);
    color: var(--color-bg);
    margin-top: var(--spacing-md);
}

.btn--footer {
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 1px;
}

.header__logo-accent {
    color: var(--color-primary);
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.header__nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease-out;
}

.header__nav-link:hover {
    color: var(--color-primary);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__burger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.header__menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.header__menu-icon::before {
    top: -8px;
}

.header__menu-icon::after {
    bottom: -8px;
}

/* ============================================
   Theme Management (Dark Mode)
   ============================================ */
[data-theme="dark"] {
    --color-primary: #FF6B35;
    --color-secondary: #DC143C;
    --color-accent: #60A5FA;
    --color-text: #F8F9FA;
    --color-text-light: #A0AEC0;
    --color-bg: #0A0A0A;
    --color-bg-light: #1A1A1A;
    --color-border: #2D3748;
    --hero-bg: radial-gradient(circle at right, #1A1A1A 0%, #050505 100%);
    --hero-text: #FFFFFF;
    --hero-glow: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    --hero-card-bg: rgba(255, 255, 255, 0.03);
    --hero-card-border: rgba(255,255,255,0.05);
    --glass-bg: rgba(10, 10, 10, 0.9);
    --booking-bg: linear-gradient(135deg, #1A1A1A 0%, #050505 100%);
}

/* ============================================
   Form Input Styles for Dark Mode
   ============================================ */
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] textarea {
    background-color: #1A1A1A !important;
    color: #F8F9FA !important;
    border-color: #2D3748 !important;
}

[data-theme="dark"] input[type="text"]::placeholder,
[data-theme="dark"] input[type="email"]::placeholder,
[data-theme="dark"] input[type="tel"]::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #A0AEC0 !important;
}

[data-theme="dark"] input[type="text"]:focus,
[data-theme="dark"] input[type="email"]:focus,
[data-theme="dark"] input[type="tel"]:focus,
[data-theme="dark"] textarea:focus {
    background-color: #1A1A1A !important;
    color: #F8F9FA !important;
    border-color: #FF6B35 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

[data-theme="dark"] input[readonly] {
    background-color: #2D3748 !important;
    color: #A0AEC0 !important;
}

/* Search results styles for dark mode */
[data-theme="dark"] #search-results {
    background-color: #1A1A1A !important;
    border-color: #2D3748 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] #search-results div {
    border-bottom-color: #2D3748 !important;
    color: #F8F9FA !important;
}

[data-theme="dark"] #search-results div:hover {
    background-color: #2D3748 !important;
}

/* ============================================
   Theme Toggle Button
   ============================================ */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(100, 100, 100, 0.1);
}

/* ============================================
   Hero Section Ultra Premium (Dynamic Theme)
   ============================================ */
.hero {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--hero-bg);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--hero-text);
    transition: background 0.4s ease;
}

/* Subtle glow effect behind the text in Dark mode */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: var(--hero-glow);
    filter: blur(80px);
    z-index: 0;
    transition: background 0.4s ease;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero__buttons {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.hero__highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--hero-card-bg);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--hero-card-border);
    transition: var(--transition);
}

.hero__highlight-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero__highlight-text {
    font-size: 0.95rem;
    color: var(--hero-text);
    font-weight: 500;
}

.hero__illustration {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero__image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--hero-card-border);
    background-color: var(--hero-card-bg);
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero__image:hover {
    transform: scale(1.05);
}

.hero__share {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* Espaces pour photos personnalisées */
.hero__photo-space {
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px dashed var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.hero__photo-space::before {
    content: '📷 Ajoutez votre photo ici';
    display: block;
}

.hero__photo-space--right {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Introduction Section
   ============================================ */
.intro {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--color-bg);
}

.intro__container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    text-transform: lowercase;
}

.intro__text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.intro__subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.intro__description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--color-bg);
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.services__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    color: var(--color-text);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 24px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
    color: var(--color-secondary);
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.service-card__description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   Mission Section
   ============================================ */
.mission {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--color-bg-light);
}

.mission__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.mission__visual {
    position: relative;
}

.mission__car-image {
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.3s ease-out;
}

.mission__car-image:hover {
    transform: rotate(-3deg) scale(1.05);
}

.mission__car-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
}

.mission__icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.mission__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.mission__icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.mission__text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--spacing-sm);
}

.mission__tagline {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

.mission__content {
    padding: var(--spacing-lg);
}

.mission__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.mission__text-content {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Steps Section
   ============================================ */
.steps {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--color-bg);
    position: relative;
}

.steps__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.steps__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    color: var(--color-text);
}

.steps__list {
    position: relative;
    padding: var(--spacing-xl) 0;
}

/* Zigzag connecting line using SVG */
.steps__list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 45px;
    bottom: 45px;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        var(--color-primary) 0,
        var(--color-primary) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 2px;
}

/* Create zigzag effect with pseudo-elements */
.step:nth-child(odd) .step__number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 200px;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--color-primary) 0,
        var(--color-primary) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateX(-50%) translateY(20px);
    z-index: 0;
}

.step:nth-child(even) .step__number::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    width: 200px;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--color-primary) 0,
        var(--color-primary) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateX(50%) translateY(20px);
    z-index: 0;
}

.step:last-child .step__number::after {
    display: none;
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xxl);
    min-height: 120px;
}

.step:last-child {
    margin-bottom: 0;
}

.step--left {
    flex-direction: row;
}

.step--right {
    flex-direction: row-reverse;
}

.step__number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step:hover .step__number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.step__content {
    flex: 1;
    max-width: 500px;
}

.step--left .step__content {
    text-align: left;
}

.step--right .step__content {
    text-align: right;
}

.step__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    line-height: 1.3;
}

.step__description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.step__description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.step__arrow {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: var(--spacing-xs);
    display: inline-block;
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--booking-bg);
}

.booking__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
}

.booking__contact {
    padding: var(--spacing-lg);
}

.booking__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.booking__intro {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.booking__contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.booking__contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.booking__contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.booking__contact-text {
    font-size: 1rem;
    color: var(--color-text);
}

.booking__form-wrapper {
    background-color: var(--color-bg);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.booking__form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

/* ============================================
   Booking Form
   ============================================ */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.booking-form__group {
    display: flex;
    flex-direction: column;
}

.booking-form__group--full {
    grid-column: 1 / -1;
}

.booking-form__label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    font-size: 0.9rem;
}

.booking-form__input {
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--color-bg);
}

.booking-form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease-out;
}

.booking-form__input--textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form__input--error {
    border-color: var(--color-error);
}

.booking-form__error {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    min-height: 1.25rem;
    display: block;
}

.booking-form__actions {
    margin-top: var(--spacing-sm);
}

.booking-form__success {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: #D4EDDA;
    border: 1px solid var(--color-success);
    border-radius: 4px;
    color: #155724;
    text-align: center;
    font-weight: 500;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--color-bg);
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    color: var(--color-text);
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.faq__item {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq__item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.faq__image-container {
    width: 100%;
    height: 220px;
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.faq__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq__image {
    width: 100%;
    height: 200px;
    margin-bottom: var(--spacing-md);
    border-radius: 4px;
    overflow: hidden;
}

.faq__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.faq__answer {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

[data-theme="dark"] .faq {
    background-color: var(--color-bg);
}

[data-theme="dark"] .faq__item {
    background-color: var(--color-bg-light);
    border-color: var(--color-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .faq__item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

[data-theme="dark"] .faq__title,
[data-theme="dark"] .faq__question {
    color: var(--color-text);
}

[data-theme="dark"] .faq__answer {
    color: var(--color-text-light);
}

[data-theme="dark"] .faq__image-container,
[data-theme="dark"] .faq__image {
    background-color: #111827;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-footer);
    color: var(--color-bg);
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    border-top: 1px solid var(--color-border);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-lg);
}

.footer__logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.footer__logo-accent {
    color: var(--color-primary);
}

.footer__text {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer__contact {
    margin-top: var(--spacing-md);
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer__subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.footer__nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer__nav-link:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-xs);
}

.footer__newsletter {
    margin-top: var(--spacing-lg);
}

.footer__newsletter-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
}

.footer__newsletter-input-group {
    display: flex;
    gap: var(--spacing-xs);
}

.footer__newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-bg);
    font-family: var(--font-primary);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.15);
}

.footer__copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-fade-in {
    opacity: 0;
}

.animate-fade-in.animated {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.animate-slide-up.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-down {
    opacity: 0;
    transform: translateY(-50px);
}

.animate-slide-down.animated {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.animate-slide-left.animated {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.animate-slide-right.animated {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
}

.animate-scale.animated {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger Animation Delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

/* Parallax Effect */
.parallax {
    transition: transform 0.3s ease-out;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .mission__container {
        grid-template-columns: 1fr;
    }
    
    .booking__container {
        grid-template-columns: 1fr;
    }
    
    .faq__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header__burger {
        display: flex;
        order: 3;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__cta {
        order: 2;
        margin-right: var(--spacing-sm);
    }
    
    .header__nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-bg);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
        order: 4;
    }
    
    .header__nav.active {
        left: 0;
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md) 0;
    }
    
    .header__nav-item {
        border-bottom: 1px solid var(--color-border);
    }
    
    .header__nav-link {
        display: block;
        padding: var(--spacing-md);
        text-align: center;
    }

    .header__nav {
        display: none;
    }
    
    .header__nav.active {
        display: block;
    }
    
    .header__menu-toggle {
        display: block;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero__highlights {
        align-items: flex-start;
    }
    
    .hero__cards {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .hero__card {
        width: 70px;
        height: 105px;
        font-size: 1.75rem;
    }
    
    .hero__card--green {
        font-size: 0.875rem;
    }
    
    .intro__title,
    .services__title,
    .steps__title,
    .faq__title {
        font-size: 2rem;
    }
    
    .mission__title {
        font-size: 1.75rem;
    }
    
    .steps__title {
        font-size: 2rem;
    }
    
    .steps__list::before {
        display: none;
    }
    
    .step {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: var(--spacing-xl);
        gap: var(--spacing-md);
    }
    
    /* Sur mobile, toujours mettre le numéro en premier */
    .step--right {
        flex-direction: column !important;
    }
    
    .step--right .step__number {
        order: 1;
    }
    
    .step--right .step__content {
        order: 2;
    }
    
    .step--left .step__number {
        order: 1;
    }
    
    .step--left .step__content {
        order: 2;
    }
    
    .step__number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .step__content {
        max-width: 100%;
        text-align: center !important;
    }
    
    .step__title {
        font-size: 1.25rem;
    }
    
    .step__description {
        font-size: 1rem;
    }
    
    .booking-form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-xl) var(--spacing-sm);
        min-height: auto;
    }
    
    .intro,
    .services,
    .mission,
    .booking,
    .faq {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .steps {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .steps__title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .step {
        margin-bottom: var(--spacing-lg);
    }
    
    .step__number {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
    }
    
    .step__title {
        font-size: 1.125rem;
    }
    
    .step__description {
        font-size: 0.95rem;
    }
    
    .intro__title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn--large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero__photo-space {
        min-height: 150px;
        font-size: 0.8rem;
    }
    
    .estimation__title {
        font-size: 2rem;
    }
    
    .estimation-form {
        padding: var(--spacing-md);
    }
}

/* ============================================
   Estimation Page
   ============================================ */
.estimation {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--color-bg);
    min-height: 80vh;
}

.estimation__container {
    max-width: 800px;
    margin: 0 auto;
}

.estimation__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.estimation__subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

.estimation-form {
    background-color: var(--color-bg);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.estimation-form__group {
    margin-bottom: var(--spacing-lg);
}

.estimation-form__label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    font-size: 1rem;
}

.estimation-form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease-out;
    background-color: var(--color-bg);
}

.estimation-form__input:focus {
    outline: none;
    border-color: #165789;
    box-shadow: 0 0 0 3px rgba(22, 87, 137, 0.1);
    transform: translateY(-2px);
}

.estimation-form__input--error {
    border-color: var(--color-error);
}

.estimation-form__error {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    display: block;
    min-height: 1.25rem;
}

.estimation-form__actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.estimation-form__result {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    border: 2px solid #165789;
}

.estimation-result__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.estimation-result__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.estimation-result__note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
}

.estimation__photo-space {
    min-height: 200px;
    background-color: rgba(22, 87, 137, 0.05);
    border: 2px dashed #165789;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.estimation__photo-space::before {
    content: '📷 Ajoutez votre photo ici';
    display: block;
}
:root {
    --primary-red: #DC143C;
    --dark-grey: #1a1a1a;
    --light-grey: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-carousel {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

/* العنوان */
.news-carousel__header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-carousel__title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-carousel__line {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
}

/* الكارت */
.news-card {
    background: var(--hero-card-bg);
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--hero-card-border);
    position: relative;
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.1);
}

.news-card__image-wrapper {
    position: relative;
    height: 240px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-card__img {
    transform: scale(1.1);
}

.news-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* شارة التاريخ */
.news-card__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);
}

.news-card__date span:first-child { font-size: 1.2rem; }
.news-card__date span:last-child { font-size: 0.7rem; text-transform: uppercase; opacity: 0.9; }

.news-card__body {
    padding: 2rem;
    flex-grow: 1;
}

.news-card__headline {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.3;
}

.news-card__description {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.news-card__link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-card__link:hover { gap: 15px; }

/* أزرار التحكم */
.news-carousel__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.nav-btn {
    background: white;
    border: 2px solid #eee;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-grey);
}

.nav-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

.news-carousel__dots {
    display: flex;
    gap: 10px;
}

.news-carousel__dot {
    width: 12px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.news-carousel__dot--active {
    width: 35px;
    background: var(--primary-red);
}

/* تجاوب الشاشات */
@media (max-width: 768px) {
    .news-carousel__footer { flex-direction: column-reverse; gap: 2rem; }
    .news-carousel__title { font-size: 2rem; }
}

/* ============================================
   Mobile Bottom Action Bar & Pro Mobile Overrides
   ============================================ */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    /* Floating Premium Pill Bottom Nav */
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 24px;
        left: 5%;
        width: 90%;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;
        border-radius: 40px;
        z-index: 9999;
        height: 70px;
        align-items: center;
        justify-content: space-evenly;
        padding: 5px 15px;
        transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
        will-change: transform, opacity;
    }

    .mobile-action-bar.mobile-action-bar--hidden {
        transform: translateY(calc(120% + env(safe-area-inset-bottom)));
        opacity: 0;
        pointer-events: none;
    }
    
    .mobile-action-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.70rem;
        font-weight: 700;
        color: var(--color-text-light);
        text-transform: uppercase;
        border: none;
        background: transparent;
        padding: 5px;
        transition: all 0.3s;
        border-radius: 30px;
    }

    .mobile-action-btn:hover, .mobile-action-btn:active {
        background: rgba(0,0,0,0.05);
    }
    
    .mobile-action-btn i {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }
    
    .mobile-action-btn--whatsapp {
        color: #25D366;
    }
    
    .mobile-action-btn--call {
        color: var(--color-accent);
    }
    
    .mobile-action-btn--book {
        color: #FFFFFF;
        background: linear-gradient(135deg, var(--color-secondary) 0%, #b30f30 100%);
        border-radius: 30px;
        height: 56px;
        padding: 0 15px;
        max-width: 120px;
        box-shadow: 0 8px 15px rgba(220, 20, 60, 0.3);
    }

    .mobile-action-btn--book:hover, .mobile-action-btn--book:active {
        background: linear-gradient(135deg, #b30f30 0%, var(--color-secondary) 100%);
        box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
    }
    
    .mobile-action-btn--book i {
        font-size: 1.4rem;
    }

    /* Padding for Body */
    body {
        padding-bottom: 95px !important;
    }

    /* Improved Mobile Navigation Drawer */
    .header {
        background-color: var(--glass-bg) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--color-border);
    }
    .header__nav.active {
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(0,0,0,0.05);
        background: rgba(255, 255, 255, 0.98);
        animation: slideDownMenu 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .header__nav-link {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Floating WhatsApp Icon hide (since we have bottom nav) */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Hero Buttons Display Stacked Seamlessly */
    .hero__buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    html {
        scroll-padding-top: 92px;
    }

    #accueil,
    #services,
    #reservation,
    #faq,
    #contact {
        scroll-margin-top: 92px;
    }

    .header__container {
        gap: 0.5rem;
        min-height: 72px;
    }

    .header__cta,
    .btn,
    .btn--hero,
    .btn--header {
        min-height: 48px;
    }

    .btn--hero {
        width: 100%;
        justify-content: center;
    }

    .mobile-action-bar {
        bottom: max(16px, env(safe-area-inset-bottom));
        left: max(12px, env(safe-area-inset-left));
        width: calc(100% - max(24px, env(safe-area-inset-left) + env(safe-area-inset-right)));
        height: 74px;
        padding: 6px 12px;
        border-radius: 28px;
    }

    .mobile-action-btn {
        min-height: 56px;
        font-size: 0.72rem;
    }

    .mobile-action-btn i {
        font-size: 1.3rem;
    }

    .mobile-action-btn--book {
        min-width: 118px;
        max-width: 132px;
        height: 58px;
    }

    body {
        padding-bottom: calc(102px + env(safe-area-inset-bottom)) !important;
    }

    .booking {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .booking__container {
        gap: 1rem;
    }

    .booking__contact {
        padding: 0.25rem;
    }

    .booking__title,
    .booking__form-title {
        line-height: 1.15;
    }

    .booking__form-wrapper {
        padding: 1rem;
        border-radius: 20px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    }

    .booking-form {
        gap: 0.85rem;
    }

    .booking-form__row {
        gap: 0.85rem;
    }

    .booking-form__label {
        font-size: 0.95rem;
        margin-bottom: 0.45rem;
    }

    .booking-form__input {
        min-height: 54px;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        font-size: 16px;
        line-height: 1.35;
    }

    .booking-form__input[type="datetime-local"] {
        min-height: 56px;
    }

    .booking-form__input--textarea {
        min-height: 132px;
    }

    .booking-form__error {
        margin-top: 0.35rem;
        font-size: 0.82rem;
        min-height: 1rem;
    }

    .booking-form__actions .btn,
    .booking-form__actions button {
        width: 100%;
        min-height: 54px;
    }

    .booking-autocomplete-results {
        border-radius: 16px !important;
        max-height: min(260px, 40vh) !important;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14) !important;
    }
}

/* Dark Mode Exceptions for Logo */
[data-theme="dark"] .header__logo-text,
[data-theme="dark"] .footer__logo {
    color: #ffffff !important;
}



/* ============================================
   Reset & Base Styles
   ============================================ */
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/

/*:root {*/
/*    --color-primary: #FF6B35;*/
/*    --color-secondary: #DC143C;*/
/*    --color-accent: #1E3A8A;*/
/*    --color-green: #10B981;*/
/*    --color-text: #333333;*/
/*    --color-text-light: #666666;*/
/*    --color-bg: #FFFFFF;*/
/*    --color-bg-light: #F8F9FA;*/
/*    --color-bg-yellow: #FFE5D9;*/
/*    --color-border: #E0E0E0;*/
/*    --color-success: #28A745;*/
/*    --color-error: #DC3545;*/
/*    --color-footer: #0A0A0A;*/
/*    --hero-bg: radial-gradient(circle at right, #f5f7fa 0%, #c3cfe2 100%);*/
/*    --hero-text: var(--color-text);*/
/*    --hero-glow: transparent;*/
/*    --hero-card-bg: rgba(255, 255, 255, 0.6);*/
/*    --hero-card-border: rgba(0,0,0,0.05);*/
/*    --glass-bg: rgba(255, 255, 255, 0.9);*/
/*    --booking-bg: linear-gradient(135deg, #FFE5D9 0%, #FFD3BA 100%);*/
    
/*    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;*/
    
/*    --spacing-xs: 0.5rem;*/
/*    --spacing-sm: 1rem;*/
/*    --spacing-md: 1.5rem;*/
/*    --spacing-lg: 2rem;*/
/*    --spacing-xl: 3rem;*/
/*    --spacing-xxl: 4rem;*/
    
/*    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);*/
/*    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);*/
/*    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);*/
/*    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);*/
/*}*/

/*html {*/
/*    scroll-behavior: smooth;*/
/*}*/

/*body {*/
/*    font-family: var(--font-primary);*/
/*    font-size: 16px;*/
/*    line-height: 1.6;*/
/*    color: var(--color-text);*/
/*    background-color: var(--color-bg);*/
/*    overflow-x: hidden;*/
/*}*/

/*img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*}*/

/*a {*/
/*    text-decoration: none;*/
/*    color: inherit;*/
/*}*/

/* ============================================
   Button Styles
   ============================================ */
/*.btn {*/
/*    display: inline-block;*/
/*    padding: 0.875rem 2rem;*/
/*    font-size: 1rem;*/
/*    font-weight: 600;*/
/*    text-align: center;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*    border: none;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    font-family: var(--font-primary);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.btn::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-radius: 50%;*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*    transform: translate(-50%, -50%);*/
/*    transition: width 0.6s, height 0.6s;*/
/*}*/

/*.btn:hover::before {*/
/*    width: 300px;*/
/*    height: 300px;*/
/*}*/

/*.btn--primary {*/
/*    background-color: var(--color-secondary);*/
/*    color: var(--color-bg);*/
/*}*/

/*.btn--primary:hover {*/
/*    background-color: #FBBF24;*/
/*    color: var(--color-text);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: var(--shadow-md);*/
/*}*/

/*.btn--header {*/
/*    background-color: var(--color-secondary);*/
/*    color: var(--color-bg);*/
/*    padding: 0.75rem 1.5rem;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.btn--hero {*/
/*    width: 100%;*/
/*    margin-bottom: var(--spacing-sm);*/
/*    padding: 1rem 1.5rem;*/
/*    border-radius: 50px;*/
/*    font-weight: 700;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*.btn--hero-primary {*/
/*    background: linear-gradient(135deg, var(--color-secondary) 0%, #b30f30 100%);*/
/*    color: var(--color-bg);*/
/*    border: 2px solid transparent;*/
/*}*/

/*.btn--hero-primary:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);*/
/*    color: var(--color-bg);*/
/*}*/

/*.btn--hero-secondary {*/
/*    background-color: var(--color-bg);*/
/*    color: var(--color-text);*/
/*    border: 2px solid var(--color-border);*/
/*}*/

/*.btn--hero-secondary:hover {*/
/*    border-color: var(--color-secondary);*/
/*    color: var(--color-secondary);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);*/
/*}*/

/*.btn--share {*/
/*    background-color: var(--color-accent);*/
/*    color: var(--color-bg);*/
/*    margin-top: var(--spacing-md);*/
/*}*/

/*.btn--footer {*/
/*    background-color: var(--color-primary);*/
/*    color: var(--color-bg);*/
/*    padding: 0.75rem 1.5rem;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.btn--large {*/
/*    padding: 1rem 2.5rem;*/
/*    font-size: 1.125rem;*/
/*}*/

/* ============================================
   Header
   ============================================ */
/*.header {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    background-color: var(--color-bg);*/
/*    box-shadow: var(--shadow-sm);*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease-out;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.header__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: var(--spacing-sm) var(--spacing-md);*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    position: relative;*/
/*}*/

/*.header__logo-text {*/
/*    font-size: 1.75rem;*/
/*    font-weight: 700;*/
/*    color: var(--color-text);*/
/*    letter-spacing: 1px;*/
/*}*/

/*.header__logo-accent {*/
/*    color: var(--color-primary);*/
/*}*/

/*.header__nav-list {*/
/*    display: flex;*/
/*    list-style: none;*/
/*    gap: var(--spacing-lg);*/
/*}*/

/*.header__nav-link {*/
/*    font-weight: 500;*/
/*    color: var(--color-text);*/
/*    transition: var(--transition);*/
/*    font-size: 0.9rem;*/
/*    position: relative;*/
/*    padding: 0.5rem 0;*/
/*}*/

/*.header__nav-link::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background-color: var(--color-primary);*/
/*    transition: width 0.3s ease-out;*/
/*}*/

/*.header__nav-link:hover {*/
/*    color: var(--color-primary);*/
/*}*/

/*.header__nav-link:hover::after {*/
/*    width: 100%;*/
/*}*/

/*.header__burger {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    gap: 5px;*/
/*    background: none;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    padding: 5px;*/
/*}*/

/*.header__burger span {*/
/*    width: 25px;*/
/*    height: 3px;*/
/*    background-color: var(--color-text);*/
/*    transition: var(--transition);*/
/*    border-radius: 2px;*/
/*}*/

/*.header__menu-toggle {*/
/*    display: none;*/
/*    background: none;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    padding: var(--spacing-xs);*/
/*}*/

/*.header__menu-icon {*/
/*    display: block;*/
/*    width: 24px;*/
/*    height: 2px;*/
/*    background-color: var(--color-text);*/
/*    position: relative;*/
/*}*/

/*.header__menu-icon::before,*/
/*.header__menu-icon::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 24px;*/
/*    height: 2px;*/
/*    background-color: var(--color-text);*/
/*    transition: var(--transition);*/
/*}*/

/*.header__menu-icon::before {*/
/*    top: -8px;*/
/*}*/

/*.header__menu-icon::after {*/
/*    bottom: -8px;*/
/*}*/

/* ============================================
   Theme Management (Dark Mode)
   ============================================ */
/*[data-theme="dark"] {*/
/*    --color-primary: #FF6B35;*/
/*    --color-secondary: #DC143C;*/
/*    --color-accent: #60A5FA;*/
/*    --color-text: #F8F9FA;*/
/*    --color-text-light: #A0AEC0;*/
/*    --color-bg: #0A0A0A;*/
/*    --color-bg-light: #1A1A1A;*/
/*    --color-border: #2D3748;*/
/*    --hero-bg: radial-gradient(circle at right, #1A1A1A 0%, #050505 100%);*/
/*    --hero-text: #FFFFFF;*/
/*    --hero-glow: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);*/
/*    --hero-card-bg: rgba(255, 255, 255, 0.03);*/
/*    --hero-card-border: rgba(255,255,255,0.05);*/
/*    --glass-bg: rgba(10, 10, 10, 0.9);*/
/*    --booking-bg: linear-gradient(135deg, #1A1A1A 0%, #050505 100%);*/
/*}*/

/* ============================================
   Form Input Styles for Dark Mode
   ============================================ */
/*[data-theme="dark"] input[type="text"],*/
/*[data-theme="dark"] input[type="email"],*/
/*[data-theme="dark"] input[type="tel"],*/
/*[data-theme="dark"] textarea {*/
/*    background-color: #1A1A1A !important;*/
/*    color: #F8F9FA !important;*/
/*    border-color: #2D3748 !important;*/
/*}*/

/*[data-theme="dark"] input[type="text"]::placeholder,*/
/*[data-theme="dark"] input[type="email"]::placeholder,*/
/*[data-theme="dark"] input[type="tel"]::placeholder,*/
/*[data-theme="dark"] textarea::placeholder {*/
/*    color: #A0AEC0 !important;*/
/*}*/

/*[data-theme="dark"] input[type="text"]:focus,*/
/*[data-theme="dark"] input[type="email"]:focus,*/
/*[data-theme="dark"] input[type="tel"]:focus,*/
/*[data-theme="dark"] textarea:focus {*/
/*    background-color: #1A1A1A !important;*/
/*    color: #F8F9FA !important;*/
/*    border-color: #FF6B35 !important;*/
/*    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;*/
/*}*/

/*[data-theme="dark"] input[readonly] {*/
/*    background-color: #2D3748 !important;*/
/*    color: #A0AEC0 !important;*/
/*}*/

/* Search results styles for dark mode */
/*[data-theme="dark"] #search-results {*/
/*    background-color: #1A1A1A !important;*/
/*    border-color: #2D3748 !important;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;*/
/*}*/

/*[data-theme="dark"] #search-results div {*/
/*    border-bottom-color: #2D3748 !important;*/
/*    color: #F8F9FA !important;*/
/*}*/

/*[data-theme="dark"] #search-results div:hover {*/
/*    background-color: #2D3748 !important;*/
/*}*/

/* ============================================
   Theme Toggle Button
   ============================================ */
/*.theme-toggle {*/
/*    background: transparent;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    font-size: 1.25rem;*/
/*    color: var(--color-text);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border-radius: 50%;*/
/*    transition: var(--transition);*/
/*}*/

/*.theme-toggle:hover {*/
/*    background: rgba(100, 100, 100, 0.1);*/
/*}*/

/* ============================================
   Hero Section Ultra Premium (Dynamic Theme)
   ============================================ */
/*.hero {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background: var(--hero-bg);*/
/*    min-height: 85vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    color: var(--hero-text);*/
/*    transition: background 0.4s ease;*/
/*}*/

/* Subtle glow effect behind the text in Dark mode */
/*.hero::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -20%;*/
/*    left: -10%;*/
/*    width: 50%;*/
/*    height: 60%;*/
/*    background: var(--hero-glow);*/
/*    filter: blur(80px);*/
/*    z-index: 0;*/
/*    transition: background 0.4s ease;*/
/*}*/

/*.hero__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: var(--spacing-xxl);*/
/*    align-items: center;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.hero__content {*/
/*    animation: fadeInLeft 0.8s ease-out;*/
/*}*/

/*.hero__buttons {*/
/*    margin-bottom: var(--spacing-lg);*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 1rem;*/
/*}*/

/*.hero__highlights {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: var(--spacing-sm);*/
/*    margin-top: var(--spacing-lg);*/
/*}*/

/*.hero__highlight {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: var(--spacing-sm);*/
/*    background: var(--hero-card-bg);*/
/*    padding: 0.6rem 1rem;*/
/*    border-radius: 12px;*/
/*    border: 1px solid var(--hero-card-border);*/
/*    transition: var(--transition);*/
/*}*/

/*.hero__highlight-icon {*/
/*    color: var(--color-primary);*/
/*    flex-shrink: 0;*/
/*}*/

/*.hero__highlight-text {*/
/*    font-size: 0.95rem;*/
/*    color: var(--hero-text);*/
/*    font-weight: 500;*/
/*}*/

/*.hero__illustration {*/
/*    position: relative;*/
/*    animation: fadeInRight 0.8s ease-out;*/
/*}*/

/*.hero__image-wrapper {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    border-radius: 24px;*/
/*    box-shadow: 0 30px 60px rgba(0,0,0,0.5);*/
/*    border: 1px solid var(--hero-card-border);*/
/*    background-color: var(--hero-card-bg);*/
/*}*/

/*.hero__image {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);*/
/*}*/

/*.hero__image:hover {*/
/*    transform: scale(1.05);*/
/*}*/

/*.hero__share {*/
/*    width: 100%;*/
/*    margin-top: var(--spacing-md);*/
/*}*/

/* Espaces pour photos personnalisées */
/*.hero__photo-space {*/
/*    min-height: 200px;*/
/*    background-color: rgba(255, 255, 255, 0.5);*/
/*    border: 2px dashed var(--color-border);*/
/*    border-radius: 8px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: var(--spacing-md) 0;*/
/*    padding: var(--spacing-md);*/
/*    text-align: center;*/
/*    color: var(--color-text-light);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.hero__photo-space::before {*/
/*    content: '📷 Ajoutez votre photo ici';*/
/*    display: block;*/
/*}*/

/*.hero__photo-space--right {*/
/*    margin-top: var(--spacing-lg);*/
/*    margin-bottom: var(--spacing-lg);*/
/*}*/

/* ============================================
   Introduction Section
   ============================================ */
/*.intro {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background-color: var(--color-bg);*/
/*}*/

/*.intro__container {*/
/*    max-width: 1000px;*/
/*    margin: 0 auto;*/
/*}*/

/*.intro__title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-md);*/
/*    color: var(--color-text);*/
/*    text-transform: lowercase;*/
/*}*/

/*.intro__text {*/
/*    font-size: 1.125rem;*/
/*    color: var(--color-text-light);*/
/*    margin-bottom: var(--spacing-lg);*/
/*    line-height: 1.8;*/
/*}*/

/*.intro__subtitle {*/
/*    font-size: 1.75rem;*/
/*    font-weight: 600;*/
/*    color: var(--color-accent);*/
/*    margin-bottom: var(--spacing-sm);*/
/*}*/

/*.intro__description {*/
/*    font-size: 1rem;*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.8;*/
/*}*/

/* ============================================
   Services Section
   ============================================ */
/*.services {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background-color: var(--color-bg);*/
/*}*/

/*.services__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*}*/

/*.services__title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    text-align: center;*/
/*    margin-bottom: var(--spacing-xxl);*/
/*    color: var(--color-text);*/
/*}*/

/*.services__grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: var(--spacing-lg);*/
/*}*/

/*.service-card {*/
/*    background-color: var(--color-bg);*/
/*    border: 1px solid rgba(0,0,0,0.03);*/
/*    border-radius: 24px;*/
/*    padding: var(--spacing-xl);*/
/*    text-align: center;*/
/*    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);*/
/*    animation: fadeInUp 0.6s ease-out backwards;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    box-shadow: var(--shadow-sm);*/
/*}*/

/*.service-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);*/
/*    transition: left 0.5s;*/
/*}*/

/*.service-card:hover::before {*/
/*    left: 100%;*/
/*}*/

/*.service-card:nth-child(1) {*/
/*    animation-delay: 0.1s;*/
/*}*/

/*.service-card:nth-child(2) {*/
/*    animation-delay: 0.2s;*/
/*}*/

/*.service-card:nth-child(3) {*/
/*    animation-delay: 0.3s;*/
/*}*/

/*.service-card:nth-child(4) {*/
/*    animation-delay: 0.4s;*/
/*}*/

/*.service-card:hover {*/
/*    transform: translateY(-12px) scale(1.02);*/
/*    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);*/
/*    border-color: var(--color-primary);*/
/*}*/

/*.service-card__icon {*/
/*    width: 64px;*/
/*    height: 64px;*/
/*    margin: 0 auto var(--spacing-md);*/
/*    color: var(--color-primary);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: var(--transition);*/
/*}*/

/*.service-card:hover .service-card__icon {*/
/*    transform: scale(1.1);*/
/*    color: var(--color-secondary);*/
/*}*/

/*.service-card__title {*/
/*    font-size: 1.25rem;*/
/*    font-weight: 600;*/
/*    margin-bottom: var(--spacing-sm);*/
/*    color: var(--color-text);*/
/*}*/

/*.service-card__description {*/
/*    font-size: 1rem;*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.6;*/
/*}*/

/* ============================================
   Mission Section
   ============================================ */
/*.mission {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background-color: var(--color-bg-light);*/
/*}*/

/*.mission__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: var(--spacing-xxl);*/
/*    align-items: center;*/
/*}*/

/*.mission__visual {*/
/*    position: relative;*/
/*}*/

/*.mission__car-image {*/
/*    position: relative;*/
/*    transform: rotate(-5deg);*/
/*    transition: transform 0.3s ease-out;*/
/*}*/

/*.mission__car-image:hover {*/
/*    transform: rotate(-3deg) scale(1.05);*/
/*}*/

/*.mission__car-svg {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    filter: drop-shadow(var(--shadow-lg));*/
/*}*/

/*.mission__icons {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: var(--spacing-lg);*/
/*    margin-top: var(--spacing-md);*/
/*}*/

/*.mission__icon {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--color-bg);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--color-accent);*/
/*    box-shadow: var(--shadow-md);*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    cursor: pointer;*/
/*}*/

/*.mission__icon:hover {*/
/*    transform: translateY(-5px) scale(1.1);*/
/*    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);*/
/*    background-color: var(--color-accent);*/
/*    color: var(--color-bg);*/
/*}*/

/*.mission__text {*/
/*    text-align: center;*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    color: var(--color-text);*/
/*    margin-top: var(--spacing-sm);*/
/*}*/

/*.mission__tagline {*/
/*    text-align: center;*/
/*    font-size: 1.125rem;*/
/*    color: var(--color-text-light);*/
/*    font-style: italic;*/
/*    margin-top: var(--spacing-xs);*/
/*}*/

/*.mission__content {*/
/*    padding: var(--spacing-lg);*/
/*}*/

/*.mission__title {*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-md);*/
/*    color: var(--color-text);*/
/*}*/

/*.mission__text-content {*/
/*    font-size: 1rem;*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.8;*/
/*    margin-bottom: var(--spacing-md);*/
/*}*/

/* ============================================
   Steps Section
   ============================================ */
/*.steps {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background-color: var(--color-bg);*/
/*    position: relative;*/
/*}*/

/*.steps__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*}*/

/*.steps__title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    text-align: center;*/
/*    margin-bottom: var(--spacing-xxl);*/
/*    color: var(--color-text);*/
/*}*/

/*.steps__list {*/
/*    position: relative;*/
/*    padding: var(--spacing-xl) 0;*/
/*}*/

/* Zigzag connecting line using SVG */
/*.steps__list::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 45px;*/
/*    bottom: 45px;*/
/*    width: 3px;*/
/*    background: repeating-linear-gradient(*/
/*        to bottom,*/
/*        var(--color-primary) 0,*/
/*        var(--color-primary) 8px,*/
/*        transparent 8px,*/
/*        transparent 16px*/
/*    );*/
/*    transform: translateX(-50%);*/
/*    z-index: 0;*/
/*    border-radius: 2px;*/
/*}*/

/* Create zigzag effect with pseudo-elements */
/*.step:nth-child(odd) .step__number::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 50%;*/
/*    width: 200px;*/
/*    height: 3px;*/
/*    background: repeating-linear-gradient(*/
/*        to right,*/
/*        var(--color-primary) 0,*/
/*        var(--color-primary) 8px,*/
/*        transparent 8px,*/
/*        transparent 16px*/
/*    );*/
/*    transform: translateX(-50%) translateY(20px);*/
/*    z-index: 0;*/
/*}*/

/*.step:nth-child(even) .step__number::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    right: 50%;*/
/*    width: 200px;*/
/*    height: 3px;*/
/*    background: repeating-linear-gradient(*/
/*        to right,*/
/*        var(--color-primary) 0,*/
/*        var(--color-primary) 8px,*/
/*        transparent 8px,*/
/*        transparent 16px*/
/*    );*/
/*    transform: translateX(50%) translateY(20px);*/
/*    z-index: 0;*/
/*}*/

/*.step:last-child .step__number::after {*/
/*    display: none;*/
/*}*/

/*.step {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: var(--spacing-xl);*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    margin-bottom: var(--spacing-xxl);*/
/*    min-height: 120px;*/
/*}*/

/*.step:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

/*.step--left {*/
/*    flex-direction: row;*/
/*}*/

/*.step--right {*/
/*    flex-direction: row-reverse;*/
/*}*/

/*.step__number {*/
/*    width: 90px;*/
/*    height: 90px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--color-primary);*/
/*    color: var(--color-bg);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 1.75rem;*/
/*    font-weight: 700;*/
/*    flex-shrink: 0;*/
/*    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.step:hover .step__number {*/
/*    transform: scale(1.1);*/
/*    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);*/
/*}*/

/*.step__content {*/
/*    flex: 1;*/
/*    max-width: 500px;*/
/*}*/

/*.step--left .step__content {*/
/*    text-align: left;*/
/*}*/

/*.step--right .step__content {*/
/*    text-align: right;*/
/*}*/

/*.step__title {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-sm);*/
/*    color: var(--color-text);*/
/*    line-height: 1.3;*/
/*}*/

/*.step__description {*/
/*    font-size: 1.05rem;*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.7;*/
/*}*/

/*.step__description strong {*/
/*    color: var(--color-primary);*/
/*    font-weight: 600;*/
/*}*/

/*.step__arrow {*/
/*    color: var(--color-primary);*/
/*    font-size: 1.2rem;*/
/*    margin-right: var(--spacing-xs);*/
/*    display: inline-block;*/
/*}*/

/* ============================================
   Booking Section
   ============================================ */
/*.booking {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background: var(--booking-bg);*/
/*}*/

/*.booking__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: var(--spacing-xxl);*/
/*}*/

/*.booking__contact {*/
/*    padding: var(--spacing-lg);*/
/*}*/

/*.booking__title {*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-md);*/
/*    color: var(--color-text);*/
/*}*/

/*.booking__intro {*/
/*    font-size: 1rem;*/
/*    color: var(--color-text-light);*/
/*    margin-bottom: var(--spacing-lg);*/
/*    line-height: 1.6;*/
/*}*/

/*.booking__contact-info {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: var(--spacing-md);*/
/*}*/

/*.booking__contact-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: var(--spacing-sm);*/
/*}*/

/*.booking__contact-icon {*/
/*    color: var(--color-primary);*/
/*    flex-shrink: 0;*/
/*}*/

/*.booking__contact-text {*/
/*    font-size: 1rem;*/
/*    color: var(--color-text);*/
/*}*/

/*.booking__form-wrapper {*/
/*    background-color: var(--color-bg);*/
/*    padding: var(--spacing-xl);*/
/*    border-radius: 8px;*/
/*    box-shadow: var(--shadow-lg);*/
/*}*/

/*.booking__form-title {*/
/*    font-size: 1.75rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-lg);*/
/*    color: var(--color-text);*/
/*}*/

/* ============================================
   Booking Form
   ============================================ */
/*.booking-form {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: var(--spacing-md);*/
/*}*/

/*.booking-form__row {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: var(--spacing-md);*/
/*}*/

/*.booking-form__group {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.booking-form__group--full {*/
/*    grid-column: 1 / -1;*/
/*}*/

/*.booking-form__label {*/
/*    font-weight: 600;*/
/*    margin-bottom: var(--spacing-xs);*/
/*    color: var(--color-text);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.booking-form__input {*/
/*    padding: 0.875rem;*/
/*    border: 2px solid var(--color-border);*/
/*    border-radius: 4px;*/
/*    font-size: 1rem;*/
/*    font-family: var(--font-primary);*/
/*    transition: var(--transition);*/
/*    background-color: var(--color-bg);*/
/*}*/

/*.booking-form__input:focus {*/
/*    outline: none;*/
/*    border-color: var(--color-primary);*/
/*    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);*/
/*    transform: translateY(-2px);*/
/*    transition: all 0.3s ease-out;*/
/*}*/

/*.booking-form__input--textarea {*/
/*    resize: vertical;*/
/*    min-height: 120px;*/
/*}*/

/*.booking-form__input--error {*/
/*    border-color: var(--color-error);*/
/*}*/

/*.booking-form__error {*/
/*    color: var(--color-error);*/
/*    font-size: 0.875rem;*/
/*    margin-top: var(--spacing-xs);*/
/*    min-height: 1.25rem;*/
/*    display: block;*/
/*}*/

/*.booking-form__actions {*/
/*    margin-top: var(--spacing-sm);*/
/*}*/

/*.booking-form__success {*/
/*    margin-top: var(--spacing-md);*/
/*    padding: var(--spacing-md);*/
/*    background-color: #D4EDDA;*/
/*    border: 1px solid var(--color-success);*/
/*    border-radius: 4px;*/
/*    color: #155724;*/
/*    text-align: center;*/
/*    font-weight: 500;*/
/*}*/

/* ============================================
   FAQ Section
   ============================================ */
/*.faq {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background-color: var(--color-bg);*/
/*}*/

/*.faq__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*}*/

/*.faq__title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    text-align: center;*/
/*    margin-bottom: var(--spacing-xxl);*/
/*    color: var(--color-text);*/
/*}*/

/*.faq__grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: var(--spacing-lg);*/
/*}*/

/*.faq__item {*/
/*    background-color: var(--color-bg);*/
/*    border: 1px solid var(--color-border);*/
/*    border-radius: 8px;*/
/*    padding: var(--spacing-lg);*/
/*    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    cursor: pointer;*/
/*}*/

/*.faq__item:hover {*/
/*    box-shadow: var(--shadow-lg);*/
/*    transform: translateY(-5px);*/
/*    border-color: var(--color-primary);*/
/*}*/

/*.faq__image-container {*/
/*    width: 100%;*/
/*    height: 220px;*/
/*    margin-bottom: var(--spacing-md);*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    background-color: var(--color-bg-light);*/
/*}*/

/*.faq__img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*}*/

/*.faq__image {*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    margin-bottom: var(--spacing-md);*/
/*    border-radius: 4px;*/
/*    overflow: hidden;*/
/*}*/

/*.faq__image-placeholder {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.faq__question {*/
/*    font-size: 1.25rem;*/
/*    font-weight: 600;*/
/*    margin-bottom: var(--spacing-sm);*/
/*    color: var(--color-text);*/
/*}*/

/*.faq__answer {*/
/*    font-size: 1rem;*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.6;*/
/*}*/

/*[data-theme="dark"] .faq {*/
/*    background-color: var(--color-bg);*/
/*}*/

/*[data-theme="dark"] .faq__item {*/
/*    background-color: var(--color-bg-light);*/
/*    border-color: var(--color-border);*/
/*    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);*/
/*}*/

/*[data-theme="dark"] .faq__item:hover {*/
/*    border-color: var(--color-primary);*/
/*    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);*/
/*}*/

/*[data-theme="dark"] .faq__title,*/
/*[data-theme="dark"] .faq__question {*/
/*    color: var(--color-text);*/
/*}*/

/*[data-theme="dark"] .faq__answer {*/
/*    color: var(--color-text-light);*/
/*}*/

/*[data-theme="dark"] .faq__image-container,*/
/*[data-theme="dark"] .faq__image {*/
/*    background-color: #111827;*/
/*}*/

/* ============================================
   Footer
   ============================================ */
/*.footer {*/
/*    background-color: var(--color-footer);*/
/*    color: var(--color-bg);*/
/*    padding: var(--spacing-xl) var(--spacing-md);*/
/*    position: relative;*/
/*    border-top: 1px solid var(--color-border);*/
/*}*/

/*.footer__container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*}*/

/*.footer__content {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: var(--spacing-xxl);*/
/*    margin-bottom: var(--spacing-lg);*/
/*}*/

/*.footer__logo {*/
/*    font-size: 1.75rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-md);*/
/*    letter-spacing: 1px;*/
/*}*/

/*.footer__logo-accent {*/
/*    color: var(--color-primary);*/
/*}*/

/*.footer__text {*/
/*    margin-bottom: var(--spacing-xs);*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*    font-size: 0.95rem;*/
/*}*/

/*.footer__contact {*/
/*    margin-top: var(--spacing-md);*/
/*}*/

/*.footer__social {*/
/*    display: flex;*/
/*    gap: var(--spacing-sm);*/
/*    margin-top: var(--spacing-md);*/
/*}*/

/*.footer__social-link {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border-radius: 50%;*/
/*    background-color: rgba(255, 255, 255, 0.1);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--color-bg);*/
/*    transition: var(--transition);*/
/*}*/

/*.footer__social-link:hover {*/
/*    background-color: var(--color-primary);*/
/*    transform: translateY(-2px);*/
/*}*/

/*.footer__subtitle {*/
/*    font-size: 1.25rem;*/
/*    font-weight: 600;*/
/*    margin-bottom: var(--spacing-md);*/
/*}*/

/*.footer__nav {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: var(--spacing-xs);*/
/*    margin-bottom: var(--spacing-lg);*/
/*}*/

/*.footer__nav-link {*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*    font-size: 0.95rem;*/
/*    transition: var(--transition);*/
/*}*/

/*.footer__nav-link:hover {*/
/*    color: var(--color-primary);*/
/*    padding-left: var(--spacing-xs);*/
/*}*/

/*.footer__newsletter {*/
/*    margin-top: var(--spacing-lg);*/
/*}*/

/*.footer__newsletter-label {*/
/*    display: block;*/
/*    font-size: 0.9rem;*/
/*    font-weight: 600;*/
/*    margin-bottom: var(--spacing-xs);*/
/*    color: rgba(255, 255, 255, 0.9);*/
/*}*/

/*.footer__newsletter-input-group {*/
/*    display: flex;*/
/*    gap: var(--spacing-xs);*/
/*}*/

/*.footer__newsletter-input {*/
/*    flex: 1;*/
/*    padding: 0.75rem;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    border-radius: 4px;*/
/*    background-color: rgba(255, 255, 255, 0.1);*/
/*    color: var(--color-bg);*/
/*    font-family: var(--font-primary);*/
/*}*/

/*.footer__newsletter-input::placeholder {*/
/*    color: rgba(255, 255, 255, 0.5);*/
/*}*/

/*.footer__newsletter-input:focus {*/
/*    outline: none;*/
/*    border-color: var(--color-primary);*/
/*    background-color: rgba(255, 255, 255, 0.15);*/
/*}*/

/*.footer__copyright {*/
/*    text-align: center;*/
/*    padding-top: var(--spacing-lg);*/
/*    border-top: 1px solid rgba(255, 255, 255, 0.2);*/
/*    color: rgba(255, 255, 255, 0.6);*/
/*    font-size: 0.875rem;*/
/*}*/

/*.whatsapp-float {*/
/*    position: fixed;*/
/*    bottom: 30px;*/
/*    right: 30px;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: #25D366;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--color-bg);*/
/*    box-shadow: var(--shadow-lg);*/
/*    z-index: 999;*/
/*    transition: var(--transition);*/
/*    animation: pulse 2s infinite;*/
/*}*/

/*.whatsapp-float:hover {*/
/*    transform: scale(1.1);*/
/*    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);*/
/*}*/

/* ============================================
   Animations
   ============================================ */
/*@keyframes fadeInLeft {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateX(-30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@keyframes fadeInRight {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateX(30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@keyframes fadeInUp {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*@keyframes fadeInDown {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(-30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*@keyframes fadeIn {*/
/*    from {*/
/*        opacity: 0;*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*@keyframes slideInLeft {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateX(-50px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@keyframes slideInRight {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateX(50px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@keyframes scaleIn {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: scale(0.9);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*@keyframes float {*/
/*    0%, 100% {*/
/*        transform: translateY(0);*/
/*    }*/
/*    50% {*/
/*        transform: translateY(-20px);*/
/*    }*/
/*}*/

/*@keyframes pulse {*/
/*    0%, 100% {*/
/*        transform: scale(1);*/
/*    }*/
/*    50% {*/
/*        transform: scale(1.05);*/
/*    }*/
/*}*/

/*@keyframes pulse-ring {*/
/*    0% {*/
/*        transform: scale(1);*/
/*        opacity: 1;*/
/*    }*/
/*    100% {*/
/*        transform: scale(1.5);*/
/*        opacity: 0;*/
/*    }*/
/*}*/

/*@keyframes shake {*/
/*    0%, 100% {*/
/*        transform: translateX(0);*/
/*    }*/
/*    10%, 30%, 50%, 70%, 90% {*/
/*        transform: translateX(-5px);*/
/*    }*/
/*    20%, 40%, 60%, 80% {*/
/*        transform: translateX(5px);*/
/*    }*/
/*}*/

/*@keyframes rotate {*/
/*    from {*/
/*        transform: rotate(0deg);*/
/*    }*/
/*    to {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

/* Scroll Animation Classes */
/*.animate-on-scroll {*/
/*    opacity: 0;*/
/*    transition: opacity 0.6s ease-out, transform 0.6s ease-out;*/
/*}*/

/*.animate-on-scroll.animated {*/
/*    opacity: 1;*/
/*}*/

/*.animate-fade-in {*/
/*    opacity: 0;*/
/*}*/

/*.animate-fade-in.animated {*/
/*    animation: fadeIn 0.8s ease-out forwards;*/
/*}*/

/*.animate-slide-up {*/
/*    opacity: 0;*/
/*    transform: translateY(50px);*/
/*}*/

/*.animate-slide-up.animated {*/
/*    animation: fadeInUp 0.8s ease-out forwards;*/
/*}*/

/*.animate-slide-down {*/
/*    opacity: 0;*/
/*    transform: translateY(-50px);*/
/*}*/

/*.animate-slide-down.animated {*/
/*    animation: fadeInDown 0.8s ease-out forwards;*/
/*}*/

/*.animate-slide-left {*/
/*    opacity: 0;*/
/*    transform: translateX(-50px);*/
/*}*/

/*.animate-slide-left.animated {*/
/*    animation: slideInLeft 0.8s ease-out forwards;*/
/*}*/

/*.animate-slide-right {*/
/*    opacity: 0;*/
/*    transform: translateX(50px);*/
/*}*/

/*.animate-slide-right.animated {*/
/*    animation: slideInRight 0.8s ease-out forwards;*/
/*}*/

/*.animate-scale {*/
/*    opacity: 0;*/
/*    transform: scale(0.8);*/
/*}*/

/*.animate-scale.animated {*/
/*    animation: scaleIn 0.6s ease-out forwards;*/
/*}*/

/* Stagger Animation Delays */
/*.animate-delay-1 {*/
/*    transition-delay: 0.1s;*/
/*}*/

/*.animate-delay-2 {*/
/*    transition-delay: 0.2s;*/
/*}*/

/*.animate-delay-3 {*/
/*    transition-delay: 0.3s;*/
/*}*/

/*.animate-delay-4 {*/
/*    transition-delay: 0.4s;*/
/*}*/

/*.animate-delay-5 {*/
/*    transition-delay: 0.5s;*/
/*}*/

/* Parallax Effect */
/*.parallax {*/
/*    transition: transform 0.3s ease-out;*/
/*}*/

/* ============================================
   Responsive Design
   ============================================ */
/*@media (max-width: 968px) {*/
/*    .services__grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
    
/*    .mission__container {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
    
/*    .booking__container {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
    
/*    .faq__grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
    
/*    .footer__content {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .header__burger {*/
/*        display: flex;*/
/*        order: 3;*/
/*    }*/
    
/*    .header__logo {*/
/*        order: 1;*/
/*    }*/
    
/*    .header__cta {*/
/*        order: 2;*/
/*        margin-right: var(--spacing-sm);*/
/*    }*/
    
/*    .header__nav {*/
/*        position: fixed;*/
/*        top: 70px;*/
/*        left: -100%;*/
/*        width: 100%;*/
/*        background-color: var(--color-bg);*/
/*        box-shadow: var(--shadow-lg);*/
/*        transition: left 0.3s ease;*/
/*        z-index: 999;*/
/*        order: 4;*/
/*    }*/
    
/*    .header__nav.active {*/
/*        left: 0;*/
/*    }*/
    
/*    .header__nav-list {*/
/*        flex-direction: column;*/
/*        gap: 0;*/
/*        padding: var(--spacing-md) 0;*/
/*    }*/
    
/*    .header__nav-item {*/
/*        border-bottom: 1px solid var(--color-border);*/
/*    }*/
    
/*    .header__nav-link {*/
/*        display: block;*/
/*        padding: var(--spacing-md);*/
/*        text-align: center;*/
/*    }*/

/*    .header__nav {*/
/*        display: none;*/
/*    }*/
    
/*    .header__nav.active {*/
/*        display: block;*/
/*    }*/
    
/*    .header__menu-toggle {*/
/*        display: block;*/
/*    }*/
    
/*    .hero__container {*/
/*        grid-template-columns: 1fr;*/
/*        gap: var(--spacing-lg);*/
/*        text-align: center;*/
/*    }*/
    
/*    .hero__highlights {*/
/*        align-items: flex-start;*/
/*    }*/
    
/*    .hero__cards {*/
/*        position: relative;*/
/*        top: auto;*/
/*        left: auto;*/
/*        transform: none;*/
/*        justify-content: center;*/
/*        margin-top: var(--spacing-md);*/
/*    }*/
    
/*    .hero__card {*/
/*        width: 70px;*/
/*        height: 105px;*/
/*        font-size: 1.75rem;*/
/*    }*/
    
/*    .hero__card--green {*/
/*        font-size: 0.875rem;*/
/*    }*/
    
/*    .intro__title,*/
/*    .services__title,*/
/*    .steps__title,*/
/*    .faq__title {*/
/*        font-size: 2rem;*/
/*    }*/
    
/*    .mission__title {*/
/*        font-size: 1.75rem;*/
/*    }*/
    
/*    .steps__title {*/
/*        font-size: 2rem;*/
/*    }*/
    
/*    .steps__list::before {*/
/*        display: none;*/
/*    }*/
    
/*    .step {*/
/*        flex-direction: column !important;*/
/*        align-items: center !important;*/
/*        text-align: center !important;*/
/*        margin-bottom: var(--spacing-xl);*/
/*        gap: var(--spacing-md);*/
/*    }*/
    
    /* Sur mobile, toujours mettre le numéro en premier */
/*    .step--right {*/
/*        flex-direction: column !important;*/
/*    }*/
    
/*    .step--right .step__number {*/
/*        order: 1;*/
/*    }*/
    
/*    .step--right .step__content {*/
/*        order: 2;*/
/*    }*/
    
/*    .step--left .step__number {*/
/*        order: 1;*/
/*    }*/
    
/*    .step--left .step__content {*/
/*        order: 2;*/
/*    }*/
    
/*    .step__number {*/
/*        width: 80px;*/
/*        height: 80px;*/
/*        font-size: 1.5rem;*/
/*    }*/
    
/*    .step__content {*/
/*        max-width: 100%;*/
/*        text-align: center !important;*/
/*    }*/
    
/*    .step__title {*/
/*        font-size: 1.25rem;*/
/*    }*/
    
/*    .step__description {*/
/*        font-size: 1rem;*/
/*    }*/
    
/*    .booking-form__row {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .hero {*/
/*        padding: var(--spacing-xl) var(--spacing-sm);*/
/*        min-height: auto;*/
/*    }*/
    
/*    .intro,*/
/*    .services,*/
/*    .mission,*/
/*    .booking,*/
/*    .faq {*/
/*        padding: var(--spacing-xl) var(--spacing-sm);*/
/*    }*/
    
/*    .steps {*/
/*        padding: var(--spacing-xl) var(--spacing-sm);*/
/*    }*/
    
/*    .steps__title {*/
/*        font-size: 1.75rem;*/
/*        margin-bottom: var(--spacing-xl);*/
/*    }*/
    
/*    .step {*/
/*        margin-bottom: var(--spacing-lg);*/
/*    }*/
    
/*    .step__number {*/
/*        width: 70px;*/
/*        height: 70px;*/
/*        font-size: 1.25rem;*/
/*    }*/
    
/*    .step__title {*/
/*        font-size: 1.125rem;*/
/*    }*/
    
/*    .step__description {*/
/*        font-size: 0.95rem;*/
/*    }*/
    
/*    .intro__title {*/
/*        font-size: 1.75rem;*/
/*    }*/
    
/*    .btn {*/
/*        padding: 0.75rem 1.5rem;*/
/*        font-size: 0.9rem;*/
/*    }*/
    
/*    .btn--large {*/
/*        padding: 0.875rem 2rem;*/
/*        font-size: 1rem;*/
/*    }*/
    
/*    .whatsapp-float {*/
/*        width: 50px;*/
/*        height: 50px;*/
/*        bottom: 20px;*/
/*        right: 20px;*/
/*    }*/
    
/*    .hero__photo-space {*/
/*        min-height: 150px;*/
/*        font-size: 0.8rem;*/
/*    }*/
    
/*    .estimation__title {*/
/*        font-size: 2rem;*/
/*    }*/
    
/*    .estimation-form {*/
/*        padding: var(--spacing-md);*/
/*    }*/
/*}*/

/* ============================================
   Estimation Page
   ============================================ */
/*.estimation {*/
/*    padding: var(--spacing-xxl) var(--spacing-md);*/
/*    background-color: var(--color-bg);*/
/*    min-height: 80vh;*/
/*}*/

/*.estimation__container {*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*}*/

/*.estimation__title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    text-align: center;*/
/*    margin-bottom: var(--spacing-sm);*/
/*    color: var(--color-text);*/
/*}*/

/*.estimation__subtitle {*/
/*    text-align: center;*/
/*    color: var(--color-text-light);*/
/*    margin-bottom: var(--spacing-xl);*/
/*    font-size: 1.125rem;*/
/*}*/

/*.estimation-form {*/
/*    background-color: var(--color-bg);*/
/*    padding: var(--spacing-xl);*/
/*    border-radius: 12px;*/
/*    box-shadow: var(--shadow-lg);*/
/*}*/

/*.estimation-form__group {*/
/*    margin-bottom: var(--spacing-lg);*/
/*}*/

/*.estimation-form__label {*/
/*    display: block;*/
/*    font-weight: 600;*/
/*    margin-bottom: var(--spacing-xs);*/
/*    color: var(--color-text);*/
/*    font-size: 1rem;*/
/*}*/

/*.estimation-form__input {*/
/*    width: 100%;*/
/*    padding: 1rem;*/
/*    border: 2px solid var(--color-border);*/
/*    border-radius: 8px;*/
/*    font-size: 1rem;*/
/*    font-family: var(--font-primary);*/
/*    transition: all 0.3s ease-out;*/
/*    background-color: var(--color-bg);*/
/*}*/

/*.estimation-form__input:focus {*/
/*    outline: none;*/
/*    border-color: #165789;*/
/*    box-shadow: 0 0 0 3px rgba(22, 87, 137, 0.1);*/
/*    transform: translateY(-2px);*/
/*}*/

/*.estimation-form__input--error {*/
/*    border-color: var(--color-error);*/
/*}*/

/*.estimation-form__error {*/
/*    color: var(--color-error);*/
/*    font-size: 0.875rem;*/
/*    margin-top: var(--spacing-xs);*/
/*    display: block;*/
/*    min-height: 1.25rem;*/
/*}*/

/*.estimation-form__actions {*/
/*    text-align: center;*/
/*    margin-top: var(--spacing-xl);*/
/*}*/

/*.estimation-form__result {*/
/*    margin-top: var(--spacing-xl);*/
/*    padding: var(--spacing-lg);*/
/*    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);*/
/*    border-radius: 8px;*/
/*    border: 2px solid #165789;*/
/*}*/

/*.estimation-result__title {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: var(--spacing-md);*/
/*    color: var(--color-text);*/
/*}*/

/*.estimation-result__text {*/
/*    font-size: 1.05rem;*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.7;*/
/*    margin-bottom: var(--spacing-sm);*/
/*}*/

/*.estimation-result__note {*/
/*    font-size: 0.95rem;*/
/*    color: var(--color-text-light);*/
/*    font-style: italic;*/
/*}*/

/*.estimation__photo-space {*/
/*    min-height: 200px;*/
/*    background-color: rgba(22, 87, 137, 0.05);*/
/*    border: 2px dashed #165789;*/
/*    border-radius: 8px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: var(--spacing-lg) 0;*/
/*    padding: var(--spacing-md);*/
/*    text-align: center;*/
/*    color: var(--color-text-light);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.estimation__photo-space::before {*/
/*    content: '📷 Ajoutez votre photo ici';*/
/*    display: block;*/
/*}*/
/*:root {*/
/*    --primary-red: #DC143C;*/
/*    --dark-grey: #1a1a1a;*/
/*    --light-grey: #f8f9fa;*/
/*    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);*/
/*}*/

/*.news-carousel {*/
/*    padding: 6rem 0;*/
/*    background-color: var(--color-bg);*/
/*}*/

/* العنوان */
/*.news-carousel__header {*/
/*    text-align: center;*/
/*    margin-bottom: 4rem;*/
/*}*/

/*.news-carousel__title {*/
/*    font-size: 2.8rem;*/
/*    font-weight: 900;*/
/*    color: var(--color-text);*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.news-carousel__line {*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: var(--primary-red);*/
/*    margin: 0 auto;*/
/*}*/

/* الكارت */
/*.news-card {*/
/*    background: var(--hero-card-bg);*/
/*    border-radius: 20px;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    transition: var(--transition);*/
/*    border: 1px solid var(--hero-card-border);*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.news-card:hover {*/
/*    transform: translateY(-12px);*/
/*    box-shadow: 0 22px 40px rgba(0,0,0,0.1);*/
/*}*/

/*.news-card__image-wrapper {*/
/*    position: relative;*/
/*    height: 240px;*/
/*    border-radius: 20px 20px 0 0;*/
/*    overflow: hidden;*/
/*}*/

/*.news-card__img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.8s ease;*/
/*}*/

/*.news-card:hover .news-card__img {*/
/*    transform: scale(1.1);*/
/*}*/

/*.news-card__img-placeholder {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/* شارة التاريخ */
/*.news-card__date {*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    left: 20px;*/
/*    background: var(--primary-red);*/
/*    color: white;*/
/*    padding: 8px 12px;*/
/*    border-radius: 12px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    font-weight: bold;*/
/*    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);*/
/*}*/

/*.news-card__date span:first-child { font-size: 1.2rem; }*/
/*.news-card__date span:last-child { font-size: 0.7rem; text-transform: uppercase; opacity: 0.9; }*/

/*.news-card__body {*/
/*    padding: 2rem;*/
/*    flex-grow: 1;*/
/*}*/

/*.news-card__headline {*/
/*    font-size: 1.4rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: 1rem;*/
/*    color: var(--color-text);*/
/*    line-height: 1.3;*/
/*}*/

/*.news-card__description {*/
/*    color: var(--color-text-light);*/
/*    line-height: 1.6;*/
/*    margin-bottom: 1.5rem;*/
/*    font-size: 0.95rem;*/
/*}*/

/*.news-card__link {*/
/*    color: var(--primary-red);*/
/*    text-decoration: none;*/
/*    font-weight: 700;*/
/*    font-size: 0.9rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    transition: gap 0.3s ease;*/
/*}*/

/*.news-card__link:hover { gap: 15px; }*/

/* أزرار التحكم */
/*.news-carousel__footer {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-top: 3rem;*/
/*}*/

/*.nav-btn {*/
/*    background: white;*/
/*    border: 2px solid #eee;*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 15px;*/
/*    cursor: pointer;*/
/*    transition: var(--transition);*/
/*    color: var(--dark-grey);*/
/*}*/

/*.nav-btn:hover {*/
/*    border-color: var(--primary-red);*/
/*    color: var(--primary-red);*/
/*    background: rgba(220, 20, 60, 0.05);*/
/*}*/

/*.news-carousel__dots {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*}*/

/*.news-carousel__dot {*/
/*    width: 12px;*/
/*    height: 6px;*/
/*    background: #e0e0e0;*/
/*    border-radius: 10px;*/
/*    cursor: pointer;*/
/*    transition: var(--transition);*/
/*}*/

/*.news-carousel__dot--active {*/
/*    width: 35px;*/
/*    background: var(--primary-red);*/
/*}*/

/* تجاوب الشاشات */
/*@media (max-width: 768px) {*/
/*    .news-carousel__footer { flex-direction: column-reverse; gap: 2rem; }*/
/*    .news-carousel__title { font-size: 2rem; }*/
/*}*/

/* ============================================
   Mobile Bottom Action Bar & Pro Mobile Overrides
   ============================================ */
/*.mobile-action-bar {*/
/*    display: none;*/
/*}*/

/*@media (max-width: 768px) {*/
    /* Floating Premium Pill Bottom Nav */
/*    .mobile-action-bar {*/
/*        display: flex;*/
/*        position: fixed;*/
/*        bottom: 24px;*/
/*        left: 5%;*/
/*        width: 90%;*/
/*        background: var(--glass-bg);*/
/*        backdrop-filter: blur(20px);*/
/*        -webkit-backdrop-filter: blur(20px);*/
/*        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;*/
/*        border-radius: 40px;*/
/*        z-index: 9999;*/
/*        height: 70px;*/
/*        align-items: center;*/
/*        justify-content: space-evenly;*/
/*        padding: 5px 15px;*/
/*    }*/
    
/*    .mobile-action-btn {*/
/*        flex: 1;*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        text-align: center;*/
/*        font-size: 0.70rem;*/
/*        font-weight: 700;*/
/*        color: var(--color-text-light);*/
/*        text-transform: uppercase;*/
/*        border: none;*/
/*        background: transparent;*/
/*        padding: 5px;*/
/*        transition: all 0.3s;*/
/*        border-radius: 30px;*/
/*    }*/

/*    .mobile-action-btn:hover, .mobile-action-btn:active {*/
/*        background: rgba(0,0,0,0.05);*/
/*    }*/
    
/*    .mobile-action-btn i {*/
/*        font-size: 1.4rem;*/
/*        margin-bottom: 2px;*/
/*    }*/
    
/*    .mobile-action-btn--whatsapp {*/
/*        color: #25D366;*/
/*    }*/
    
/*    .mobile-action-btn--call {*/
/*        color: var(--color-accent);*/
/*    }*/
    
/*    .mobile-action-btn--book {*/
/*        color: #FFFFFF;*/
/*        background: linear-gradient(135deg, var(--color-secondary) 0%, #b30f30 100%);*/
/*        border-radius: 30px;*/
/*        height: 56px;*/
/*        padding: 0 15px;*/
/*        max-width: 120px;*/
/*        box-shadow: 0 8px 15px rgba(220, 20, 60, 0.3);*/
/*    }*/

/*    .mobile-action-btn--book:hover, .mobile-action-btn--book:active {*/
/*        background: linear-gradient(135deg, #b30f30 0%, var(--color-secondary) 100%);*/
/*        box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);*/
/*    }*/
    
/*    .mobile-action-btn--book i {*/
/*        font-size: 1.4rem;*/
/*    }*/

    /* Padding for Body */
/*    body {*/
/*        padding-bottom: 95px !important;*/
/*    }*/

    /* Improved Mobile Navigation Drawer */
/*    .header {*/
/*        background-color: var(--glass-bg) !important;*/
/*        backdrop-filter: blur(15px);*/
/*        border-bottom: 1px solid var(--color-border);*/
/*    }*/
/*    .header__nav.active {*/
/*        box-shadow: 5px 0 25px rgba(0,0,0,0.15);*/
/*        border-radius: 0 0 20px 20px;*/
/*        border: 1px solid rgba(0,0,0,0.05);*/
/*        background: rgba(255, 255, 255, 0.98);*/
/*        animation: slideDownMenu 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);*/
/*    }*/

/*    @keyframes slideDownMenu {*/
/*        from { opacity: 0; transform: translateY(-10px); }*/
/*        to { opacity: 1; transform: translateY(0); }*/
/*    }*/

/*    .header__nav-link {*/
/*        font-size: 1.1rem;*/
/*        font-weight: 700;*/
/*        letter-spacing: 0.5px;*/
/*    }*/

    /* Floating WhatsApp Icon hide (since we have bottom nav) */
/*    .whatsapp-float {*/
/*        display: none !important;*/
/*    }*/
    
    /* Hero Buttons Display Stacked Seamlessly */
/*    .hero__buttons {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        gap: 0.5rem;*/
/*    }*/
/*}*/

/* Dark Mode Exceptions for Logo */
/*[data-theme="dark"] .header__logo-text,*/
/*[data-theme="dark"] .footer__logo {*/
/*    color: #ffffff !important;*/
/*}*/
