/* ==========================================================================
   BAZI TRANSPORTS - PREMIUM DESIGN SYSTEM & STYLESHEET
   Core Color: #004aad | Primary Typography: Prompt (Bold & Italic Emphasized)
   ========================================================================== */

/* 1. IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,700&display=swap');

/* 2. DESIGN VARIABLES */
:root {
    /* Colors */
    --primary: #004aad;
    --primary-dark: #003680;
    --primary-light: #1e70e6;
    --secondary: #00b4d8;
    --accent: #25d366; /* WhatsApp Green */
    --accent-hover: #1ebd54;
    --white: #ffffff;
    
    /* Neutrals */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Typography */
    --font-sans: 'Prompt', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 74, 173, 0.1), 0 8px 10px -6px rgba(0, 74, 173, 0.05);
    --shadow-lg: 0 20px 30px -10px rgba(15, 23, 42, 0.15);
    --shadow-pulse: 0 0 0 0 rgba(37, 211, 102, 0.6);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
}

/* 3. RESET & BASE ESTILOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--neutral-50);
    color: var(--neutral-800);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* 4. TYPOGRAPHY SYSTEM (EMPHASIZING PROMPT BOLD & ITALIC) */
h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-900);
    font-style: italic;
    font-weight: 700; /* Bold */
    line-height: 1.2;
}

.text-italic {
    font-style: italic;
}

.text-bold {
    font-weight: 700;
}

/* Section Title Styling */
.section-title {
    font-size: 2.5rem;
    color: var(--neutral-900);
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    transform: skewX(-20deg);
}

/* Custom Highlight colors */
.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }

/* 5. SLANTED BUTTONS & HERO ACTIONS (DYNAMIC EXPRESS STYLE) */
.btn-slanted {
    position: relative;
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-medium);
    margin-top: 1rem;
}

.btn-slanted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transform: skewX(-12deg);
    z-index: -1;
    border-radius: 4px;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.btn-slanted .btn-text {
    display: inline-block;
    color: var(--white);
    transform: skewX(0); /* keep content straight or let it flow */
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-slanted:hover::before {
    background-color: var(--primary-dark);
    transform: skewX(-12deg) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.5);
}

/* Accent WhatsApp version of Slanted Button */
.btn-slanted.btn-whatsapp::before {
    background-color: var(--accent);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-slanted.btn-whatsapp:hover::before {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Standard Outline Slanted Button */
.btn-slanted-outline {
    position: relative;
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-medium);
    margin-top: 1rem;
}

.btn-slanted-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--white);
    background-color: transparent;
    transform: skewX(-12deg);
    z-index: -1;
    border-radius: 4px;
    transition: var(--transition-medium);
}

.btn-slanted-outline .btn-text {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-slanted-outline:hover::before {
    background-color: var(--white);
    transform: skewX(-12deg) scale(1.03);
}

.btn-slanted-outline:hover .btn-text {
    color: var(--primary);
}

/* Secondary Slanted version for forms */
.btn-slanted.btn-secondary-color::before {
    background-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}
.btn-slanted.btn-secondary-color:hover::before {
    background-color: #0096b4;
}

/* 5.5 MARQUEE TOP BAR */
.marquee-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-fast 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@keyframes marquee-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 6. GLASSMORPHIC HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    height: 70px;
    border-bottom: 1px solid rgba(0, 74, 173, 0.08);
}

.header-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.header.scrolled .logo-img {
    height: 45px;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--neutral-700);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.header:not(.scrolled) .nav-link {
    color: var(--white);
}

/* Header in standard pages (like es.html when not scrolled, we will overlay the white logo or dark logo as needed. 
To make it perfectly visible on dark images, we use white links when not scrolled, and dark links when scrolled) */
.header:not(.scrolled) .logo-light-bg {
    display: none;
}
.header:not(.scrolled) .logo-dark-bg {
    display: block;
    filter: brightness(0) invert(1); /* Forces the black logo to be white */
}
.header.scrolled .logo-light-bg {
    display: block;
}
.header.scrolled .logo-dark-bg {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
    transform: skewX(-15deg);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.header:not(.scrolled) .nav-link:hover {
    color: var(--white) !important;
}
.header:not(.scrolled) .nav-link:hover::after {
    background-color: var(--secondary);
    width: 100%;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 3px;
    border-radius: 25px;
    transition: var(--transition-fast);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header:not(.scrolled) .lang-selector {
    color: var(--primary);
}

.header.scrolled .lang-selector {
    color: var(--primary);
}

.lang-btn {
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 20px;
    transition: var(--transition-fast);
    color: var(--primary);
    text-align: center;
}

.lang-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.lang-divider {
    display: none;
}

.header:not(.scrolled) .lang-divider {
    color: rgba(0, 74, 173, 0.3);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background-color: var(--neutral-900);
    transition: var(--transition-medium);
}

.header:not(.scrolled) .mobile-nav-toggle span {
    background-color: var(--white);
}

/* 7. HERO SECTION (INTRODUCCIÓN) */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: var(--white);
    overflow: hidden;
}

/* Parallax Truck background or premium design pattern */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Fallback grid lines for technical feeling */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 74, 173, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 74, 173, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

.hero-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s var(--transition-slow);
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: none !important; /* Requested by user to remove */
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 4px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--neutral-200);
    margin-bottom: 1.5rem;
    max-width: 580px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-feat-item svg {
    color: var(--secondary);
    width: 32px;
    height: 32px;
}

.hero-feat-title {
    font-weight: 700;
    font-size: 1.05rem;
    font-style: italic;
}

.hero-feat-desc {
    font-size: 0.85rem;
    color: var(--neutral-200);
}

/* Interactive Quote Form in Hero (Fast Quote) */
.hero-form-wrapper {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s var(--transition-slow);
}

.form-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title svg {
    color: var(--secondary);
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neutral-200);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    transition: var(--transition-fast);
    color-scheme: dark;
}

.form-select option {
    background-color: #ffffff;
    color: var(--neutral-900);
}

.form-input:focus, .form-select:focus {
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

/* 8. SERVICIOS SECTION */
.section {
    padding: 6.5rem 2rem;
}

.section-bg-light {
    background-color: var(--white);
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--neutral-50);
    border-radius: var(--border-radius);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--neutral-100);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: skewX(-20deg);
    transform-origin: left;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 74, 173, 0.15);
}

.service-card:hover::before {
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    transform: skewX(0);
}

.service-img-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    background-color: rgba(0, 74, 173, 0.08);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 1.2rem;
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--neutral-900);
    text-transform: uppercase;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--neutral-700);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.service-link svg {
    transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* 9. RESEÑAS SECTION */
.reviews-section {
    background-color: var(--neutral-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-radial-gradient: circle, rgba(0, 74, 173, 0.15) 0%, transparent 70%;
    z-index: 0;
    border-radius: 50%;
}

.reviews-section .section-title {
    color: var(--white);
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition-medium);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 180, 216, 0.3);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24; /* Amber star color */
    margin-bottom: 1.2rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.review-text {
    font-size: 0.98rem;
    color: var(--neutral-200);
    margin-bottom: 1.8rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary);
}

.review-info-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-info-meta {
    font-size: 0.8rem;
    color: var(--secondary);
}

/* 10. SOBRE NOSOTROS SECTION */
.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    animation: fadeInLeft 0.8s ease;
}

.about-action {
    margin-top: 2.5rem;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.about-text {
    color: var(--neutral-700);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-badge-icon {
    color: var(--primary);
    background-color: rgba(0, 74, 173, 0.08);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-icon svg {
    width: 24px;
    height: 24px;
}

.about-badge-title {
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.about-badge-desc {
    font-size: 0.85rem;
    color: var(--neutral-700);
}

.about-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-img-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    transform: skewX(-6deg);
    border-radius: var(--border-radius);
    z-index: 1;
    opacity: 0.2;
}

/* 11. CONTACTO SECTION WITH GOOGLE MAPS */
.contact-section {
    background-color: var(--neutral-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-box {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-100);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(0, 74, 173, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
}

.contact-method-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neutral-700);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.contact-method-val {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--neutral-900);
}

/* WhatsApp block callout in Contact */
.whatsapp-callout-card {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
}

.whatsapp-callout-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(37, 211, 102, 0.12);
    border-radius: 50%;
    z-index: 0;
}

.whatsapp-callout-content {
    position: relative;
    z-index: 1;
}

.whatsapp-callout-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.whatsapp-callout-text {
    font-size: 0.95rem;
    color: var(--neutral-200);
    margin-bottom: 1.5rem;
}

/* Styled Map Wrapper (Baipor Group Style) */
.map-outer-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    height: 100%;
    min-height: 450px;
    display: flex;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.1) contrast(1.05);
}

/* 12. FAQS SECTION (ACCORDION) */
.faqs-section {
    background-color: var(--white);
}

.faqs-container {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--neutral-50);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    padding: 1.3rem 1.8rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
}

.faq-title {
    font-size: 1.12rem;
    font-style: italic;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    transition: var(--transition-fast);
}

.faq-item.active .faq-title {
    color: var(--primary);
}

.faq-icon-wrapper {
    color: var(--neutral-700);
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) cubic-bezier(0, 1, 0, 1);
    background-color: var(--white);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height var(--transition-medium) cubic-bezier(1, 0, 1, 0);
}

.faq-body {
    padding: 1.5rem 1.8rem;
    font-size: 0.98rem;
    color: var(--neutral-700);
    border-top: 1px solid var(--neutral-100);
}

/* 13. FOOTER STYLE */
.footer {
    background-color: var(--neutral-900);
    color: var(--white);
    padding: 5rem 2rem 2rem 2rem;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--neutral-200);
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.8rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link-item {
    font-size: 0.92rem;
    color: var(--neutral-200);
}

.footer-link-item a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

/* SEO Optimization Footer Block */
.footer-seo-block {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.footer-seo-text {
    font-size: 0.8rem;
    color: var(--neutral-200);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Legal Credits bar */
.footer-credits {
    max-width: var(--container-max);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--neutral-200);
}

.footer-credits-links {
    display: flex;
    gap: 1.5rem;
}

.footer-credits-links a:hover {
    color: var(--secondary);
}

/* 14. FLOATING SUPPORT ELEMENT (WHATSAPP WIDGET) */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none !important;
    align-items: center;
    gap: 12px;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-bubble svg {
    width: 32px;
    height: 32px;
}

.whatsapp-bubble:hover {
    background-color: var(--accent-hover);
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background-color: var(--neutral-900);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-medium);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 15. ANIMATIONS & REVEAL SCRIPTS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Animation classes for dynamic reveal */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 16. RESPONSIVE MEDIA QUERIES */

/* Large Tablets and smaller desktops */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 5rem 2rem 2rem 2rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-form-wrapper {
        max-width: 550px;
        margin: 0 auto;
        text-align: left;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-action {
        text-align: center;
    }
    .about-img-container {
        order: -1;
        max-width: 550px;
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .map-outer-wrapper {
        min-height: 380px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile Devices and smaller */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Navigation Toggle mobile */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--neutral-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-medium);
        z-index: 1000;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--white) !important;
    }
    
    .header.scrolled .nav-link {
        color: var(--white) !important;
    }
    
    .header-container {
        padding: 0 1.2rem;
        gap: 1rem;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .header.scrolled .logo-img {
        height: 38px;
    }
    
    /* Header menu mobile backdrop */
    .nav-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        z-index: 999;
    }
    
    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hamburger Open State animation */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--white);
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--white);
    }
    
    /* Hero Title scale */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .hero-feat-item {
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .review-card:last-child {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-seo-block {
        text-align: left;
    }
    
    .footer-credits {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    /* NEW RESPONSIVE TWEAKS */
    .section {
        padding: 4rem 1.2rem;
    }
    
    .hero-container {
        padding: 5rem 1.2rem 2rem 1.2rem;
        gap: 2rem;
    }
    
    .hero-form-wrapper {
        padding: 1.5rem;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-bubble {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-bubble svg {
        width: 26px;
        height: 26px;
    }
    
    .dest-banner-content {
        padding: 12px;
        gap: 8px;
    }
    
    .dest-banner-text-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .dest-banner-title {
        white-space: normal;
        font-size: 15px;
    }
    /* END NEW TWEAKS */
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on small mobile screens to prevent overlaps */
    }
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
}
.reviews-section .section-title {
    color: var(--white);
    text-align: center;
}
.reviews-section .hero-tagline {
    background: rgba(255,255,255,0.15);
    color: var(--secondary);
}

.reviews-header-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-medium);
}
.reviews-header-link:hover .reviews-google-score {
    transform: scale(1.05);
}

.reviews-google-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition-medium);
}
.google-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.reviews-score-text {
    font-weight: 700;
    font-size: 1.5rem;
}
.reviews-stars {
    display: flex;
    gap: 2px;
}
.star-icon {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
    color: #fbbf24;
}
.reviews-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}
.reviews-header-link:hover .reviews-count {
    color: var(--white);
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
}

.reviews-fade-left, .reviews-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
}
.reviews-fade-left {
    left: -1px;
    background: linear-gradient(to right, var(--primary), transparent);
}
.reviews-fade-right {
    right: -1px;
    background: linear-gradient(to left, var(--primary), transparent);
}
@media (min-width: 768px) {
    .reviews-fade-left, .reviews-fade-right {
        width: 120px;
    }
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    cursor: grab;
    padding-bottom: 1rem;
}
.reviews-carousel::-webkit-scrollbar {
    display: none;
}
.reviews-carousel:active {
    cursor: grabbing;
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    margin: 0 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .review-card {
        width: 380px;
    }
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.review-author {
    font-weight: 600;
    font-size: 1rem;
}
.review-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* ==========================================================================
   10. FOOTER DIVIDER BANNER (SWITZERLAND - SPAIN REGULAR LINE)
   ========================================================================== */
.dest-banner-wrapper {
    padding: 0 1rem;
    position: relative;
    z-index: 20;
    background-color: var(--white);
    display: flow-root;
}

.dest-banner {
    display: flex;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: -32px;
}

.dest-banner-edge {
    width: 16px;
    min-width: 16px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.eu-flag-edge {
    background-color: #003399; /* European blue */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
}

.eu-star {
    color: #FFCC00; /* European gold/yellow */
    font-size: 1.2rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.es-flag-edge {
    display: flex;
    flex-direction: column;
}

.es-stripe-red {
    background-color: #AA151B; /* Spanish red */
    flex: 1;
    width: 100%;
}

.es-stripe-yellow {
    background-color: #F1BF00; /* Spanish yellow */
    flex: 2;
    width: 100%;
}

.dest-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.dest-banner-text-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dest-banner-emoji {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.dest-banner-emoji img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.dest-banner-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.dest-banner-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    height: 36px;
    border-radius: 6px;
    padding: 0 12px;
    gap: 6px;
    background-color: hsl(0, 65%, 45%);
    color: white;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.dest-banner-action:hover {
    background-color: hsl(0, 65%, 38%);
}

.dest-banner-action svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .dest-banner-content {
        padding: 20px 24px;
    }
    .dest-banner-emoji {
        font-size: 30px;
    }
    .dest-banner-title {
        font-size: 18px;
    }
}

/* ==========================================================================
   TOP INFO BAR (Contact details bar above the main header)
   ========================================================================== */
.top-info-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    font-size: 0.82rem;
    padding: 0.5rem 2rem;
    position: relative;
    z-index: 1001;
}

.top-info-bar-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-info-bar-left {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.top-info-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
    font-weight: 500;
}

.top-info-bar-item:hover {
    color: var(--white);
}

.top-info-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.8;
}

.top-info-bar-item a {
    color: inherit;
}

.top-info-bar-item a:hover {
    color: var(--secondary);
}

.footer-social-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.footer-social-btn:hover {
    transform: translateY(-3px);
}

.footer-social-btn:hover svg {
    transform: scale(1.15);
}

.footer-social-btn.facebook:hover { background-color: #1877F2; border-color: #1877F2; }
.footer-social-btn.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); border-color: transparent; }
.footer-social-btn.tiktok:hover { background-color: #000000; border-color: #000000; }
.footer-social-btn.whatsapp:hover { background-color: #25D366; border-color: #25D366; }

@media (max-width: 768px) {
    .top-info-bar {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    .top-info-bar-container {
        justify-content: center;
        gap: 0.6rem;
    }
    .top-info-bar-left {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .top-info-bar-left {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
}

/* ==========================================================================
   LEGAL PAGES STYLING
   ========================================================================== */
.legal-page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 8rem 2rem 4rem 2rem;
    color: var(--white);
    text-align: center;
}

.legal-page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.legal-page-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    max-width: 860px;
    margin: -2rem auto 4rem auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 3rem 3.5rem;
    position: relative;
    z-index: 10;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 74, 173, 0.1);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--neutral-800);
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    margin-top: 2rem;
    transition: var(--transition-fast);
}

.legal-back-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

@media (max-width: 768px) {
    .legal-page-hero {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }
    .legal-page-hero h1 {
        font-size: 2rem;
    }
    .legal-content {
        padding: 2rem 1.5rem;
        margin: -1.5rem 1rem 3rem 1rem;
    }
}

/* ==========================================================================
   11. COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.5rem;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--neutral-200);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--neutral-700);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}


