/* =========== RESET Y ESTILOS BASE =========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.search-info,
.search-info h3,
.search-info .filter-tags,
.search-info .filter-tag,
.search-info i {
    color: #000;
}





/* =========== CONTAINERS Y ESTRUCTURA =========== */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    min-height: 100vh;
}

.service-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* =========== ENCABEZADOS =========== */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #e74c3c, #1a1a1a);
    border-radius: 12px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.brand-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.result-title {
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.result-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #1a1a1a);
}

/* =========== NAVEGACIÓN =========== */
.service-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: white;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    transition: all 0.3s ease;
}

.service-btn:hover, .service-btn.active {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* =========== FORMULARIOS =========== */
.service-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group i {
    color: #e74c3c;
}

.form-group input, .form-group select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(90deg, #e74c3c, #1a1a1a);
    color: white;
    min-width: 160px;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* =========== LISTA DE TOURS =========== */
.options-section {
    margin-top: 40px;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
}

.options-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    color: #1a1a1a;
}

.option-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.option-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.option-card:hover .option-image img {
    transform: scale(1.05);
}

.option-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.option-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.option-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.option-category {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.option-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
    font-size: 14px;
}

.option-specs {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.spec-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spec-item i {
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 5px;
}

.spec-item div {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.option-price {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin: 15px 0;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.price-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.btn-select {
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    margin-top: auto;
}

.btn-select:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

/* =========== LOADING Y ESTADOS =========== */
.loading-tours {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.loading-tours i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.no-results i {
    font-size: 50px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-results a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.no-results a:hover {
    text-decoration: underline;
}

/* =========== FILTROS =========== */
.search-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #e74c3c;
}

.search-info h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e0e0e0;
    font-weight: 500;
}

.filter-tag i {
    color: #e74c3c;
    font-size: 12px;
}

.clear-filters {
    display: block;
    margin: 20px auto;
    padding: 10px 25px;
    background: white;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.clear-filters:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.active-filters {
    background: #e0f7fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    grid-column: 1 / -1;
    font-size: 14px;
    border-left: 4px solid #00bcd4;
}

.active-filters i {
    color: #00bcd4;
    margin-right: 8px;
}

/* =========== MODALES =========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

body.modal-open {
    overflow: hidden;
}

.modal-content {
    background: white;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    animation: modalFadeIn 0.5s ease;
    color: #1a1a1a;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    width: 100%;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #e74c3c, #1a1a1a);
    color: white;
    position: relative;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    padding-right: 50px;
    line-height: 1.3;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    background: rgba(0,0,0,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 11;
}

.modal-close:hover {
    background: rgba(0,0,0,0.4);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    overflow: hidden;
}

.modal-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1;
    min-width: 300px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Área interna scrolleable (todo menos los botones) */
.modal-details-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 30px 30px 10px;
}

.modal-info {
    flex: 1;
}

.modal-category {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-description {
    margin: 20px 0;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.modal-features {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.feature-item i {
    color: #e74c3c;
    width: 24px;
    margin-right: 12px;
    font-size: 18px;
    text-align: center;
}

.modal-price {
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    background: #f8f9fa;
    flex-shrink: 0;
}

.btn-modal {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.btn-reserve {
    background: linear-gradient(90deg, #e74c3c, #1a1a1a);
    color: white;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-close-modal {
    background: #7f8c8d;
    color: white;
}

.btn-close-modal:hover {
    background: #6c7b7d;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* =========== CARRUSEL =========== */
.carousel {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* =========== MODAL DE RESERVA =========== */
#reservation-modal .modal-content {
    max-width: 800px;
}

.reservation-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    flex-shrink: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step.active .step-number {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: #e74c3c;
    font-weight: 700;
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.reservation-form-container {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: 500px;
}

.form-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-section-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.reservation-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.reservation-summary h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

.summary-item.total {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    margin: 15px -25px -25px -25px;
    padding: 20px 25px;
    border-radius: 0 0 12px 12px;
    font-size: 18px;
    font-weight: 700;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
}

.btn-prev,
.btn-next,
.btn-submit-reservation {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-prev {
    background: #f8f9fa;
    color: #666;
}

.btn-prev:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-next {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-submit-reservation {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.btn-submit-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.confirmation-message {
    text-align: center;
    padding: 40px 30px;
}

.confirmation-icon {
    font-size: 80px;
    color: #2ecc71;
    margin-bottom: 25px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.confirmation-message h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.confirmation-message p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 768px) {
    .container1 {
        padding: 15px;
    }
    
    .service-container {
        padding: 20px;
        margin: 15px 0;
    }
    
    .service-form {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-submit {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .options-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option-image {
        height: 180px;
    }
    
    .option-content {
        padding: 15px;
    }
    
    .option-title {
        font-size: 18px;
    }
    
    /* Modales responsive */
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 22px;
        padding-right: 40px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        height: 250px;
        min-width: 100%;
    }
    
    .modal-details {
        padding: 20px;
        min-width: 100%;
        overflow-y: visible;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .btn-modal {
        width: 100%;
        justify-content: center;
    }
    
    /* Modal de reserva responsive */
    .reservation-steps {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .step-line {
        display: none;
    }
    
    .step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .step-label {
        text-align: left;
        font-size: 15px;
    }
    
    .reservation-form-container {
        padding: 20px;
        max-height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit-reservation {
        width: 100%;
        justify-content: center;
    }
    
    .confirmation-icon {
        font-size: 60px;
    }
    
    .confirmation-message {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .container1 {
        padding: 10px;
    }
    
    .service-container {
        padding: 15px;
    }
    
    .results-title {
        font-size: 1.5rem;
    }
    
    .option-image {
        height: 160px;
    }
    
    .modal {
        padding: 5px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-details {
        padding: 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .reservation-form-container {
        padding: 15px;
        max-height: 350px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .confirmation-icon {
        font-size: 50px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        height: 300px;
        min-width: 100%;
    }
    
    .modal-details {
        min-width: 100%;
        padding: 25px;
    }
    
    .reservation-form-container {
        max-height: 450px;
    }
}

@media (min-width: 993px) {
    .modal-body {
        flex-direction: row;
    }
    
    .modal-image {
        height: auto;
        min-width: 50%;
        max-height: 600px;
    }
    
    .modal-details {
        min-width: 50%;
        max-height: 600px;
    }
    
    .reservation-form-container {
        max-height: 500px;
    }
}

@media (min-width: 1200px) {
    .modal-content {
        margin: 40px auto;
    }
}

/* =========== UTILIDADES =========== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* =========== ANIMACIONES =========== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* =========== SCROLLBAR PERSONALIZADA =========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.modal-details::-webkit-scrollbar-track,
.reservation-form-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-details::-webkit-scrollbar-thumb,
.reservation-form-container::-webkit-scrollbar-thumb {
    background: #ddd;
}

.modal-details::-webkit-scrollbar-thumb:hover,
.reservation-form-container::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}