* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a1f44;
    --dark-blue: #0f3460;
    --gold: #75c7ed;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --text-dark: #000000;
    --border-color: #1f2937;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Text Hover Animations - Solo elementos interactivos */
a, button, .clickable, .service-card, .nav-link {
    transition: transform 0.2s ease, color 0.2s ease;
}

a:hover, button:hover, .clickable:hover {
    transform: translateY(-2px);
}

.service-card:hover {
    transform: translateY(-4px);
}

.nav-link:hover {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.header-donate-btn {
    background: #10b981;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.header-donate-btn:hover {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.6), 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: glow-green 1.5s ease-in-out infinite alternate;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.cuenta-btn {
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: bold;
}

.logo-image {
    height: 60px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--white);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
    font-size: 1.2em;
    line-height: 1;
    vertical-align: middle;
}

.flag-icon-small {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.header-btn {
    padding: 0.75rem 1.5rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.header-btn.squishy-btn {
    box-shadow: 0 8px 0 rgba(10, 31, 68, 0.3);
}

.header-btn.squishy-btn:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 rgba(10, 31, 68, 0.3);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

/* Donate Button */
.btn-donate {
    background: #10b981;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-donate:hover {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.6), 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: glow-green 1.5s ease-in-out infinite alternate;
}

@keyframes glow-green {
    from {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.6), 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(16, 185, 129, 1), 0 0 60px rgba(16, 185, 129, 0.8), 0 4px 12px rgba(16, 185, 129, 0.4);
    }
}

.lang-btn i:last-child {
    font-size: 0.7rem;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s;
}

.lang-dropdown a:hover {
    background-color: var(--light-gray);
}

/* Page Container */
.page-container {
    position: relative;
}

.page {
    display: none;
    min-height: calc(100vh - 100px);
}

.page.active {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-reservar-glow:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.6), 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: glow 1.5s ease-in-out infinite alternate;
}

.btn-primary.btn-large:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.6), 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.6), 0 4px 12px rgba(245, 158, 11, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(245, 158, 11, 1), 0 0 60px rgba(245, 158, 11, 0.8), 0 4px 12px rgba(245, 158, 11, 0.4);
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-service:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.6), 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: glow 1.5s ease-in-out infinite alternate;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%),
                url('Playa.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem 2rem;
    border-top: 4px solid var(--white);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    right: -10%;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%),
                url('Playa.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero.section-page {
    opacity: 1;
    transform: none;
}

.hero.section-page.active {
    opacity: 1;
    transform: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 52, 96, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Neon Button Effect */
.neon-button-wrapper {
    position: relative;
    display: inline-block;
    --spin-duration: 4s;
}

.neon-effect-layer {
    position: absolute;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.neon-outer-glow {
    width: 354px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(32px);
    opacity: 0.6;
    overflow: hidden;
}

.neon-outer-glow::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 60deg at 50% 50%,
        transparent 0deg,
        #f59e0b 15deg,
        transparent 145deg,
        transparent 180deg,
        #fbbf24 215deg,
        transparent 325deg
    );
    animation: neon-spin var(--spin-duration, 4s) linear infinite;
}

.neon-dark-layer {
    width: 312px;
    height: 65px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(2.5px);
    overflow: hidden;
}

.neon-dark-layer::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 82deg at 50% 50%,
        transparent 0deg,
        #d97706 25deg,
        transparent 75deg,
        transparent 180deg,
        #f59e0b 205deg,
        transparent 255deg
    );
    animation: neon-spin var(--spin-duration, 4s) linear infinite;
}

.neon-bright-layer {
    width: 307px;
    height: 63px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(1.8px);
    overflow: hidden;
}

.neon-bright-layer::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 83deg at 50% 50%,
        transparent 0deg,
        #fbbf24 20deg,
        transparent 60deg,
        transparent 180deg,
        #fcd34d 200deg,
        transparent 240deg
    );
    filter: brightness(1.6);
    animation: neon-spin var(--spin-duration, 4s) linear infinite;
}

.neon-primary-border {
    width: 303px;
    height: 59px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(0.4px);
    overflow: hidden;
}

.neon-primary-border::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 70deg at 50% 50%,
        transparent 0deg,
        #f59e0b 20deg,
        transparent 80deg,
        transparent 180deg,
        #fbbf24 210deg,
        transparent 270deg
    );
    filter: brightness(1.5);
    animation: neon-spin var(--spin-duration, 4s) 0.15s linear infinite;
}

.neon-button {
    position: relative;
    z-index: 5;
}

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

/* Main Content */
.main-content {
    padding: 4rem 0;
}

/* Section Pages */
.section-page {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-page.active {
    opacity: 1;
    transform: translateY(0);
}


.how-it-works.section-page,
.testimonials-section.section-page,
.services-section.section-page,
.prices-section.section-page,
.reservar-section.section-page {
    min-height: auto;
    padding: 4rem 0;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* How It Works */
.how-it-works {
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(26, 86, 219, 0.6), 0 0 40px rgba(26, 86, 219, 0.4);
    animation: iconGlow 1.5s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    from {
        box-shadow: 0 0 20px rgba(26, 86, 219, 0.6), 0 0 40px rgba(26, 86, 219, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(26, 86, 219, 0.8), 0 0 60px rgba(26, 86, 219, 0.6);
    }
}

.step h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonials-sidebar {
    margin-top: 2rem;
}

/* Para la página de reservar, no usar content-grid */
.reservar-section-page .content-grid {
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    background: #e5e7eb;
    padding: 1.5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    margin-bottom: 1rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.2rem;
}

/* ============ SISTEMA DE REVIEWS ============ */
.reviews-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.reviews-average {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.average-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.average-stars {
    color: #f59e0b;
    font-size: 1.5rem;
}

.average-count {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-verified {
    color: #10b981;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-rating {
    color: #f59e0b;
    font-size: 1.1rem;
}

.review-date {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.review-comment {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Booking Form */
.booking-form-section {
    position: sticky;
    top: 100px;
    align-self: start;
}

.booking-form-container {
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-title {
    color: var(--white);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-note {
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Confirmation Boxes */
.confirmation-box {
    background: rgba(15, 52, 96, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.confirmation-box.confirmed {
    background: rgba(15, 52, 96, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}

.confirmation-box.confirmed .confirmation-box-content {
    opacity: 0.6;
    pointer-events: none;
}

.confirmation-box-header {
    margin-bottom: 0.75rem;
}

.confirmation-box-header h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.selection-count {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Destination display styles */
.destination-display {
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.destination-display-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.destination-display-value {
    color: rgba(255, 255, 255, 0.9);
}

/* Form elements inside confirmation boxes */
.confirmation-box .form-group label {
    font-size: 0.9rem;
}

.confirmation-box .form-group input,
.confirmation-box .form-group select {
    font-size: 0.9rem;
    padding: 0.6rem;
}

.confirmation-box .btn-swap {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.confirmation-box-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.confirmation-box-footer {
    margin-top: 0.75rem;
    display: flex;
    justify-content: flex-end;
}

.btn-confirm {
    padding: 0.5rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-confirm.confirmed {
    background: #10b981;
}

.btn-confirm.confirmed:hover {
    background: #059669;
}

/* Confirmation Box Summary (Single Box) */
.confirmation-box-summary {
    background: rgba(15, 52, 96, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.confirmation-summary-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.75rem;
    min-width: 150px;
}

.summary-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    flex: 1;
}

.summary-item-summary {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-label-block {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.summary-item-summary .summary-label {
    margin-top: 0.25rem;
}

.summary-value-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    padding-left: 0.5rem;
}

.detail-line {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.confirmation-summary-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.btn-confirm-check {
    padding: 0.75rem 2rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-confirm-check:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-confirm-check.confirmed {
    background: #10b981;
}

.btn-confirm-check.confirmed:hover {
    background: #059669;
}

.btn-confirm-check:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
}

.btn-confirm-check:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-confirm-check i {
    font-size: 1rem;
}

.booking-form-second-section {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.form-group label {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Select Search Wrapper */
.select-search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-input::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Select styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

/* Service Type & Trip Type */
.service-type,
.trip-type {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-type label,
.trip-type label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.service-type input[type="radio"],
.trip-type input[type="radio"] {
    margin: 0;
    width: auto;
    cursor: pointer;
}

.service-type label:hover,
.trip-type label:hover {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

.service-type input[type="radio"]:checked + span,
.trip-type input[type="radio"]:checked + span {
    color: var(--gold);
    font-weight: 600;
}

.service-type input[type="radio"]:checked ~ span,
.trip-type input[type="radio"]:checked ~ span {
    color: var(--gold);
}

.service-type label:has(input:checked),
.trip-type label:has(input:checked) {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.2);
}

/* Swap Button */
.swap-container {
    display: flex;
    justify-content: center;
}

.btn-swap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-swap:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

/* Phone Input */
.phone-input {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0.5rem;
}

.phone-input select {
    padding: 0.75rem 0.5rem;
}

/* Return Section */
.return-section {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-terms {
    color: var(--white);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

.form-terms a {
    color: var(--gold);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.form-terms a:hover {
    opacity: 0.8;
}

/* Service Areas Page */
.service-areas-page {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.service-areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 52, 96, 0.7);
}

.service-areas-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.service-areas-content .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.service-areas-content p {
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
    font-size: 1.1rem;
}

/* Google Reviews Carousel */
.google-reviews-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex;
    gap: 0.75rem;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

.review-card {
    min-width: calc(32% - 0.67rem);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.review-rating {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

.google-link {
    text-align: center;
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.google-rating-badge {
    order: 1;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.btn-google {
    order: 2;
    max-width: 200px;
    width: 100%;
}

.google-rating-png {
    height: auto;
    width: auto;
    max-height: 300px;
    max-width: 700px;
    display: block;
}

.google-logo-small {
    height: 25px;
    width: auto;
}

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

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff9800;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: #f59e0b;
    font-size: 1.2rem;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: #4285f4;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-google:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}

/* Why Book Section */
.why-book-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.why-book-unified-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-book-unified-feature {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-book-unified-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.why-book-unified-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s;
}

.why-book-unified-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.why-book-unified-feature:hover .why-book-unified-icon {
    transform: scale(1.1);
}

.why-book-unified-feature h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-book-unified-feature p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle-italic {
    color: #6b7280;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    text-decoration: underline;
}

.why-book-column {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.why-book-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.why-book-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    flex: 1;
}

.why-book-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    width: 100%;
}

.why-book-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-book-icon.green {
    background: #10b981;
    color: var(--white);
}

.why-book-icon.blue {
    background: var(--primary-blue);
    color: var(--white);
}

.why-book-item p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.why-book-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 1rem;
    justify-items: center;
    align-items: start;
}

.why-book-feature:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.why-book-feature:nth-child(2) {
    grid-row: 1;
    grid-column: 3;
}

.why-book-feature:nth-child(3) {
    grid-row: 1;
    grid-column: 5;
}

.why-book-feature:nth-child(4) {
    grid-row: 2;
    grid-column: 2 / 3;
    justify-self: center;
}

.why-book-feature:nth-child(5) {
    grid-row: 2;
    grid-column: 4 / 5;
    justify-self: center;
}

.why-book-feature {
    text-align: center;
}

.why-book-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.why-book-feature-icon.blue {
    background: var(--primary-blue);
    color: var(--white);
}

.why-book-feature h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-book-feature p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
    word-wrap: break-word;
}

/* Mini Reviews Carousel */
.reviews-carousel-small {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    position: relative;
}

.review-card-small {
    min-width: 100%;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Services Section Page */
.services-section-page {
    padding: 2rem 0;
    background: var(--white);
}

.why-book-section {
    padding-bottom: 2rem;
}

.prices-section-page {
    padding: 4rem 0;
    background: url('Precios.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.prices-header-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 0 auto 3rem;
    max-width: 800px;
}

.prices-section-title {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.prices-intro {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

@keyframes border-glow {
    0% { border-color: #0a1f44; box-shadow: 0 0 5px rgba(10, 31, 68, 0.2); }
    50% { border-color: #f0a500; box-shadow: 0 0 20px rgba(240, 165, 0, 0.4); }
    100% { border-color: #0a1f44; box-shadow: 0 0 5px rgba(10, 31, 68, 0.2); }
}

.tabla-precios {
    border: 2px solid #0a1f44;
    transition: all 0.3s ease;
}

.tabla-precios:hover {
    animation: border-glow 2s infinite alternate;
    transform: translateY(-5px);
}

.prices-section-page .section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reservar-section-page {
    padding: 4rem 0;
    background: url('Reservar.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.reservar-section-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.booking-form-section-centered {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.date-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

/* Mallorca Tabs Section */
.mallorca-tabs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 2rem;
}

.tabs-header {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 2rem;
    padding-bottom: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.tabs-header::-webkit-scrollbar {
    height: 6px;
}

.tabs-header::-webkit-scrollbar-track {
    background: transparent;
}

.tabs-header::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    font-family: inherit;
}

.tab-btn i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.tab-btn:hover i {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--gold);
}

.tab-btn.active i {
    color: var(--gold);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
}

.tab-text {
    padding: 1rem 0;
}

.tab-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tab-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.tab-key-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-key-points li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-key-points li:last-child {
    border-bottom: none;
}

.tab-key-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.tab-key-points li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.tab-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--light-gray) 0%, #e5e7eb 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #9ca3af;
    padding: 3rem;
    text-align: center;
}

.tab-image-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

.tab-image-placeholder span {
    font-size: 1rem;
    font-style: italic;
}

.tab-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-image {
        min-height: 250px;
        order: -1;
    }

    .tabs-container {
        padding: 1.5rem;
    }

    .tab-title {
        font-size: 1.8rem;
    }

    .tab-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mallorca-tabs-section {
        padding: 3rem 0;
    }

    .tabs-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .tabs-header {
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .tab-btn i {
        font-size: 1rem;
    }

    .tab-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .tab-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .tab-key-points li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        padding-left: 1.5rem;
    }

    .tab-image {
        min-height: 200px;
    }

    .tab-image-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .tab-btn span {
        display: none;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        min-width: 60px;
        justify-content: center;
    }

    .tab-btn i {
        font-size: 1.3rem;
    }
}

/* Lo que ofrecemos Section */
.what-we-offer-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.vehicle-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.vehicle-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.vehicle-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #e5e7eb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
}

.feature-icon {
    display: none;
}

.feature-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 350px;
    font-weight: 700;
}

/* Terms Modal */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.terms-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.terms-modal-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.terms-modal-content p {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.terms-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Términos y Condiciones Page */
.terminos-section {
    padding: 4rem 0;
    background: var(--white);
}

.terminos-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terminos-content h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terminos-content h3 {
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.terminos-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Soporte Page */
.soporte-section {
    padding: 4rem 0;
    background: var(--white);
}

.soporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.soporte-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.soporte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.soporte-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.soporte-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.soporte-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.soporte-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.soporte-link:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.soporte-highlight {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* FAQs Section */
.faqs-section {
    margin: 4rem 0;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #e5e7eb;
}

.faq-question h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Help Section */
.help-section {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

/* Booking Wizard Styles */
.booking-wizard {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.booking-step.active {
    display: block;
}

.booking-step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.step-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.step-description {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.step-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.step-option-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 200px;
}

.step-option-btn {
    padding: 1rem 2.5rem;
    background: var(--light-gray);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-option-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.step-option-btn.selected {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.step-option-hint {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-style: italic;
    text-decoration: underline;
    color: #dc2626;
    text-align: center;
}

/* Service Selection Styling (like image) */
.service-selection-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.service-selection-container {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-cards-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card-large {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

.service-card-icon {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.service-card-icon i {
    display: inline-block;
}

.service-card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-style: italic;
    text-decoration: underline;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-large .step-option-hint {
    margin-top: 1rem;
    font-size: 0.75rem;
}

.step-next-btn {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 200px;
}

/* Destination Step */
.destination-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.destination-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.destination-group .select-search-wrapper {
    margin-top: 0.5rem;
}

/* Passenger and Extras Counter */
.passenger-counter,
.extras-counter {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.counter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.counter-item label {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.counter-sublabel {
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.counter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.counter-btn-plus {
    background: var(--primary-blue);
    color: var(--white);
}

.counter-btn-plus:hover {
    background: var(--dark-blue);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 30px;
    text-align: center;
}

/* Mi Cuenta Page */
.cuenta-section {
    padding: 4rem 0;
    background: var(--light-gray);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('Mi cuenta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cuenta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 0;
}

.cuenta-section .container {
    position: relative;
    z-index: 1;
}

/* Donate Section */
.donate-section {
    padding: 4rem 0;
    background: #000000;
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

/* Starry Night Background */
.donate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent),
        radial-gradient(2px 2px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 33% 60%, #fff, transparent),
        radial-gradient(3px 3px at 10% 80%, #fff, transparent),
        radial-gradient(1px 1px at 40% 20%, #fff, transparent),
        radial-gradient(2px 2px at 70% 90%, #fff, transparent),
        radial-gradient(1px 1px at 15% 50%, #fff, transparent),
        radial-gradient(2px 2px at 50% 10%, #fff, transparent),
        radial-gradient(1px 1px at 25% 80%, #fff, transparent),
        radial-gradient(2px 2px at 85% 60%, #fff, transparent),
        radial-gradient(1px 1px at 5% 40%, #fff, transparent),
        radial-gradient(2px 2px at 95% 20%, #fff, transparent),
        radial-gradient(1px 1px at 45% 70%, #fff, transparent),
        radial-gradient(2px 2px at 30% 10%, #fff, transparent),
        radial-gradient(1px 1px at 75% 50%, #fff, transparent),
        radial-gradient(2px 2px at 55% 90%, #fff, transparent),
        radial-gradient(1px 1px at 65% 30%, #fff, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: starsMove 20s linear infinite;
    opacity: 0.8;
    z-index: 0;
}

.donate-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 12% 25%, #fff, transparent),
        radial-gradient(1px 1px at 35% 65%, #fff, transparent),
        radial-gradient(2px 2px at 48% 45%, #fff, transparent),
        radial-gradient(1px 1px at 72% 15%, #fff, transparent),
        radial-gradient(1px 1px at 88% 55%, #fff, transparent),
        radial-gradient(2px 2px at 22% 75%, #fff, transparent),
        radial-gradient(1px 1px at 58% 35%, #fff, transparent),
        radial-gradient(1px 1px at 78% 85%, #fff, transparent),
        radial-gradient(2px 2px at 42% 5%, #fff, transparent),
        radial-gradient(1px 1px at 18% 95%, #fff, transparent),
        radial-gradient(1px 1px at 62% 25%, #fff, transparent),
        radial-gradient(2px 2px at 92% 75%, #fff, transparent),
        radial-gradient(1px 1px at 28% 45%, #fff, transparent),
        radial-gradient(1px 1px at 52% 85%, #fff, transparent),
        radial-gradient(2px 2px at 8% 15%, #fff, transparent),
        radial-gradient(1px 1px at 68% 55%, #fff, transparent),
        radial-gradient(1px 1px at 38% 95%, #fff, transparent),
        radial-gradient(2px 2px at 82% 35%, #fff, transparent),
        radial-gradient(1px 1px at 15% 65%, #fff, transparent),
        radial-gradient(1px 1px at 88% 5%, #fff, transparent);
    background-size: 150% 150%;
    background-position: 50% 50%;
    animation: starsTwinkle 3s ease-in-out infinite alternate, starsMove 25s linear infinite reverse;
    opacity: 0.6;
    z-index: 0;
}

@keyframes starsMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes starsTwinkle {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.9;
    }
}

.donate-section .container {
    position: relative;
    z-index: 1;
}

.donate-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Sessions List */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-item {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.session-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.session-item-email {
    font-weight: 600;
    color: var(--primary-blue);
}

.session-item-date {
    font-size: 0.9rem;
    color: #6b7280;
}

.cuenta-container {
    max-width: calc(100vw - 200px);
    margin: 0 auto;
    width: 100%;
}

/* Animación para la pantalla de confirmación */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cuenta-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid #000000;
}

#loginCard {
    border: 3px solid #000000;
}

#registerCard {
    border: 3px solid #000000;
}

.cuenta-title {
    color: var(--primary-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cuenta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.cuenta-form label {
    color: var(--text-dark);
    font-weight: 600;
}

.cuenta-form input[type="email"],
.cuenta-form input[type="password"],
.cuenta-form input[type="text"],
.cuenta-form input[type="tel"] {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    width: 100%;
    background: var(--white);
    color: var(--text-dark);
}

.cuenta-form input[type="email"]:focus,
.cuenta-form input[type="password"]:focus,
.cuenta-form input[type="text"]:focus,
.cuenta-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.cuenta-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cuenta-form input[type="checkbox"] {
    width: auto;
}

.btn-full {
    width: 100%;
}

/* Estilos para indicadores de contraseña */
.strength-bar {
    transition: all 0.3s ease;
}

.strength-bar.weak {
    background: #ef4444 !important;
}

.strength-bar.fair {
    background: #f59e0b !important;
}

.strength-bar.good {
    background: #3b82f6 !important;
}

.strength-bar.strong {
    background: #10b981 !important;
}

#passwordStrengthText.weak {
    color: #ef4444;
}

#passwordStrengthText.fair {
    color: #f59e0b;
}

#passwordStrengthText.good {
    color: #3b82f6;
}

#passwordStrengthText.strong {
    color: #10b981;
}

#passwordMatchIndicator.match {
    color: #10b981;
}

#passwordMatchIndicator.no-match {
    color: #ef4444;
}

/* Estilos para la tarjeta de confirmación */
#registrationSuccessCard {
    animation: slideIn 0.5s ease-out;
}

#registrationSuccessCard .fa-check {
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.cuenta-link {
    text-align: center;
    margin-top: 1rem;
}

.cuenta-link a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.cuenta-link a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-option {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.help-option i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.help-option h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.help-option p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-form-container-centered {
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Arrival Info Box */
.arrival-info-box {
    background: rgba(15, 52, 96, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.arrival-info-header {
    margin-bottom: 1rem;
}

.arrival-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.arrival-info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arrival-info-row {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .arrival-info-row {
        flex-direction: column;
        gap: 0;
    }
    
    .arrival-info-row .form-group {
        margin-right: 0 !important;
    }
}

.form-title-centered {
    color: var(--white);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Traslado Form Styles */
.traslado-form-wrapper {
    margin-top: 3rem;
    animation: fadeIn 0.5s ease-in-out;
}

.traslado-form-container {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.traslado-service-info {
    display: none; /* Hidden - only form shown */
}

.traslado-booking-form {
    width: 100%;
    max-width: 800px;
}

.traslado-booking-form .booking-form-container-centered {
    margin: 0 auto;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #6b7280;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-logo .logo-image {
    width: auto;
    height: 50px;
    flex-shrink: 0;
}

.footer-logo .logo-text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    text-align: right;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Footer Sections */
.footer-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icon {
    width: 50px;
    height: 32px;
    object-fit: contain;
    transition: opacity 0.3s, transform 0.3s;
}

.payment-icon:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.paypal-icon {
    width: 50px;
    height: 32px;
    background: white;
    border-radius: 4px;
    padding: 2px;
}

.mastercard-icon {
    width: 60px;
    height: 38px;
    background: white;
    border-radius: 4px;
    padding: 3px;
    object-fit: contain;
}

.visa-icon {
    width: 50px;
    height: 32px;
    background: white;
    border-radius: 4px;
    padding: 2px;
}

.powered-by-stripe {
    color: var(--white);
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
    text-align: center;
}

/* Services Section */
.services-section {
    background: var(--white);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
    animation: service-glow 1.5s ease-in-out infinite alternate;
}

@keyframes service-glow {
    from {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    to {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.8), 0 0 60px rgba(245, 158, 11, 0.6), 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.9;
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card-btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
}

/* Prices Section */
.prices-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.prices-container {
    max-width: 1000px;
    margin: 0 auto;
}

.prices-table {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.prices-table thead {
    background: var(--primary-blue);
    color: var(--white);
}

.prices-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.prices-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.prices-table tbody tr:hover {
    background-color: rgba(245, 158, 11, 0.1);
}

.prices-table tbody tr:last-child {
    border-bottom: none;
}

.prices-table td {
    padding: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
}

.prices-table td:first-child {
    color: var(--primary-blue);
    font-weight: 600;
    text-align: left;
}

.prices-table td:not(:first-child) {
    text-align: center;
    color: #f59e0b;
    font-weight: 700;
    font-size: 1.1rem;
}

.prices-note {
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Reservar Section */
.reservar-section {
    background: var(--white);
    padding: 4rem 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-section {
        position: static;
    }

    .service-areas-content {
        margin: 2rem auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .header-content {
        justify-content: space-between;
    }
    
    .header-right {
        flex-direction: row;
        gap: 0.5rem;
    }

    .cuenta-btn {
        margin-right: 0;
    }

    .booking-wizard {
        max-width: 100%;
        padding: 0 1rem;
    }

    .cuenta-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-book-unified-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-carousel {
        gap: 1rem;
    }
    
    .review-card {
        min-width: calc(100% - 1rem);
    }
    
    .prices-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 1rem 0.5rem;
        white-space: nowrap;
    }
    
    .prices-table th:not(:first-child),
    .prices-table td:not(:first-child) {
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-sidebar {
        order: 2;
    }
    
    .booking-form-section {
        order: 1;
    }
    
    .service-areas-content {
        margin: 1rem;
        padding: 2rem;
    }

    .why-book-unified-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 500px;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .phone-input {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-left {
        justify-content: center;
        gap: 1rem;
    }


    .footer-center {
        justify-content: center;
        width: 100%;
        order: 2;
    }

    .footer-right {
        justify-content: center;
        width: 100%;
        order: 3;
    }

    .payment-icons {
        gap: 0.5rem;
    }

    .payment-icon {
        width: 40px;
        height: 26px;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form-section-centered {
        max-width: 100%;
        padding: 0 1rem;
    }
}
/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    pointer-events: none;
}

.cookie-banner.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    pointer-events: none;
}

.cookie-banner-overlay.show {
    display: block;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Eliminado: body.cookie-blur - Ya no bloquea la navegación */

.cookie-banner-content {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    position: relative;
    z-index: 100001;
    animation: slideInCenter 0.4s ease-out;
    pointer-events: auto;
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cookie-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.cookie-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    top: 2px;
}

.cookie-tab:hover {
    color: var(--primary-blue);
}

.cookie-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.cookie-tab-content {
    min-height: 300px;
    margin-bottom: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cookie-toggles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.cookie-toggle-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.cookie-toggle-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.cookie-toggle-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-left: 1rem;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #10b981;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
    background-color: #10b981;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Cookie Details Table */
.cookie-details-table {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-category h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cookie-details-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-details-table thead {
    background: var(--primary-blue);
    color: white;
}

.cookie-details-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-details-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cookie-details-table tbody tr:hover {
    background: #f9fafb;
}

.cookie-details-table tbody tr:last-child td {
    border-bottom: none;
}

/* Cookie About Content */
.cookie-about-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.cookie-about-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cookie-about-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-about-content a:hover {
    color: var(--dark-blue);
}

.consent-id-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.consent-id-section p {
    margin-bottom: 0.5rem;
}

.consent-id-code {
    display: block;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-dark);
    word-break: break-all;
    margin: 0.5rem 0;
}

.consent-id-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: #ffffff;
    color: var(--text-dark);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-btn-deny {
    background: #ffffff;
    border-color: #e5e7eb;
    color: var(--text-dark);
}

.cookie-btn-deny:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.cookie-btn-customize {
    background: #ffffff;
    border-color: #e5e7eb;
    color: var(--text-dark);
}

.cookie-btn-customize:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.cookie-btn-accept {
    background: #84cc16;
    border-color: #84cc16;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #65a30d;
    border-color: #65a30d;
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .cookie-tabs {
        flex-wrap: wrap;
    }
    
    .cookie-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .cookie-toggle-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .toggle-switch {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .cookie-details-table {
        overflow-x: auto;
    }
    
    .cookie-details-table table {
        min-width: 600px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ============ NUEVAS FUNCIONALIDADES ============ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.mobile-menu-toggle[aria-expanded="true"] i::before {
    content: "\f00d"; /* Icono X cuando está abierto */
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .header-content {
        grid-template-columns: auto auto auto;
        gap: 1rem;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.toast {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.3s ease-out;
    position: relative;
    min-width: 300px;
}

.toast.success {
    border-color: #10b981;
}

.toast.error {
    border-color: #ef4444;
}

.toast.warning {
    border-color: #f59e0b;
}

.toast.info {
    border-color: var(--primary-blue);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast.warning .toast-icon {
    color: #f59e0b;
}

.toast.info .toast-icon {
    color: var(--primary-blue);
}

.toast-content {
    flex: 1;
}

.toast-message {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.toast-close:hover {
    color: var(--primary-blue);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.fade-out {
    animation: slideOutRight 0.3s ease-out forwards;
}

/* Loading States */
/* Loader mejorado con barra de progreso */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--white);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--primary-blue);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}


/* Stripe Payment Element */
#paymentSection {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
}

#payment-element {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
}

#submit-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Availability Status */
.availability-status {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-status.available {
    background: #d1fae5;
    color: #065f46;
}

.availability-status.unavailable {
    background: #fee2e2;
    color: #991b1b;
}

.availability-status.warning {
    background: #fef3c7;
    color: #92400e;
}

/* Breadcrumbs */
.breadcrumbs,
.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 0;
    margin-top: 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-dark);
    opacity: 0.5;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item span {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-item[aria-current="page"] span {
    color: var(--primary-blue);
}

/* Form Validation */
.form-control.error {
    border-color: #ef4444;
}

.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-valid {
    border-color: #10b981 !important;
    background-color: #f0fdf4;
}

.field-valid:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.field-invalid {
    border-color: #ef4444 !important;
    background-color: #fef2f2;
}

.field-invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}


/* ============ SISTEMA DE TOASTS ============ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    overflow: hidden;
    position: relative;
    min-width: 320px;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-message {
    flex: 1;
    min-width: 0;
}

.toast-type {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.toast-success .toast-type {
    color: #10b981;
}

.toast-error .toast-type {
    color: #ef4444;
}

.toast-warning .toast-type {
    color: #f59e0b;
}

.toast-info .toast-type {
    color: #3b82f6;
}

.toast-text {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    background: #f3f4f6;
    color: var(--text-dark);
}

.toast-progress {
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: toast-progress linear forwards;
}

.toast-success .toast-progress-bar {
    background: #10b981;
}

.toast-error .toast-progress-bar {
    background: #ef4444;
}

.toast-warning .toast-progress-bar {
    background: #f59e0b;
}

.toast-info .toast-progress-bar {
    background: #3b82f6;
}

@keyframes toast-progress {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .toast-container {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* ============ SISTEMA DE SPINNERS ============ */
.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.spinner-fullpage {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.spinner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner-loader {
    display: inline-block;
    position: relative;
}

.spinner-loader .spinner-ring {
    display: block;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-blue);
    animation: spinner-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-loader .spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-loader .spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner-loader .spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
}

.spinner-small .spinner-ring {
    width: 20px;
    height: 20px;
}

.spinner-medium .spinner-ring {
    width: 40px;
    height: 40px;
}

.spinner-large .spinner-ring {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

.spinner-text {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9375rem;
}

.spinner-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spinner-spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spinner-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

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

/* Field Validation Styles */
.form-control.error,
input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
    background-color: #fee2e2;
}

.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.field-success {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Coupon Section */
.coupon-section {
    margin: 1rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.coupon-section input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 0.5rem;
    flex: 1;
}

.coupon-section button {
    padding: 0.75rem 1.5rem;
    background: #1a56db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.coupon-message {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.coupon-message.success {
    color: #10b981;
}

.coupon-message.error {
    color: #ef4444;
}

@media (max-width: 768px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
    
}

/* ============ BOTÓN VOLVER ARRIBA ============ */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* ============ MODO ALTO CONTRASTE ============ */
/* Desactivado para evitar afectar imágenes */
/*
body.high-contrast {
    --primary-blue: #000000;
    --text-dark: #000000;
    --white: #ffffff;
    --gold: #ffaa00;
}

body.high-contrast * {
    border-color: #000000 !important;
}

body.high-contrast button,
body.high-contrast a {
    border: 2px solid #000000 !important;
}
*/

/* ============ SKIP LINK ============ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10001;
    border-radius: 4px;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    z-index: 10001;
}

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

/* ============ MEJORAS DE FOCUS ============ */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-color: var(--gold);
}

/* ============ LOADING STATES MEJORADOS ============ */
/* Estilos de loading de imágenes desactivados para evitar filtros no deseados */

/* ============ SKELETON LOADERS ============ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-title {
    height: 2em;
    width: 60%;
    margin-bottom: 1em;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

/* ============ MEJORAS DE ANIMACIONES ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ MEJORAS DE RESPONSIVE ============ */
@media (max-width: 480px) {
    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
    
    .back-to-top {
        bottom: 95px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* ============================================
   ESTILOS MEJORADOS PARA PÁGINA DE INICIO
   ============================================ */

/* Hero Enhanced */
.hero-enhanced {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(15, 52, 96, 0.75) 100%),
                url('Playa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle-large {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-hero-glow {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero-glow-secondary {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    animation: pulse-glow-secondary 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    }
    50% { 
        box-shadow: 0 0 50px rgba(245, 158, 11, 0.9);
    }
}

@keyframes pulse-glow-secondary {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
    50% { 
        box-shadow: 0 0 50px rgba(59, 130, 246, 0.9);
    }
}

.hero-features-mini {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.hero-feature-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px); 
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #f59e0b;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* How It Works Enhanced */
.how-it-works-enhanced {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #75c7ed 0%, var(--primary-blue) 100%);
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #f59e0b;
    border-radius: 50%;
    opacity: 0.6;
}

.section-title::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #f59e0b;
    border-radius: 50%;
    opacity: 0.6;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 1rem;
}

.steps-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-enhanced {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid #75c7ed;
    transition: all 0.3s ease;
    position: relative;
}

.step-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(117, 199, 237, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #75c7ed;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 1.5rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-enhanced h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.step-enhanced p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: #75c7ed;
    flex-shrink: 0;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #75c7ed;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Popular Destinations */
.popular-destinations-section {
    padding: 5rem 0;
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f59e0b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
    border-color: #d97706;
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.destination-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.destination-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #75c7ed;
    font-weight: 600;
}

.destination-stats i {
    margin-right: 0.3rem;
}

/* Testimonials Enhanced */
.testimonials-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Guarantees Section */
.guarantees-section {
    padding: 5rem 0;
    background: var(--white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px solid #75c7ed;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(117, 199, 237, 0.2);
}

.guarantee-icon {
    font-size: 3.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.guarantee-card p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Enhanced */
.faq-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #75c7ed;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Features Enhanced */
.features-section-enhanced {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-enhanced {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #75c7ed;
}

.feature-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card-enhanced h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.feature-card-enhanced p {
    color: #666;
    line-height: 1.7;
}

/* Responsive para nuevas secciones */
@media (max-width: 768px) {
    .hero-enhanced {
        min-height: 70vh;
    }
    
    .hero-subtitle-large {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .hero-features-mini {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .steps-enhanced {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .benefits-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Sobre Mallorca Enhanced */
.sobre-mallorca-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mallorca-content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mallorca-text {
    flex: 1;
    min-width: 300px;
}

.mallorca-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mallorca-text h4 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mallorca-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.mallorca-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mallorca-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 150px;
}

.mallorca-stat strong {
    display: block;
    font-size: 2rem;
    color: #f59e0b;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.mallorca-stat span {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.mallorca-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

@media (max-width: 768px) {
    .mallorca-content-wrapper {
        flex-direction: column;
    }
    
    .mallorca-text h3 {
        font-size: 1.6rem;
    }
    
    .mallorca-text h4 {
        font-size: 1.2rem;
    }
    
    .mallorca-text p {
        font-size: 1rem;
    }
    
    .mallorca-stats {
        flex-direction: column;
    }
}
