/* Mobile First - Canopy Tour Design */
.tour-booking-list {
    display: block;
    margin: 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.tour-item {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.2);
    margin: 0 0 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.canopy-hero-section {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.canopy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>') repeat;
    opacity: 0.3;
}

.canopy-hero-section * {
    position: relative;
    z-index: 2;
}

.tour-item h3 {
    margin: 0 0 15px 0;
    color: white;
    font-size: 1.4em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.canopy-content-wrapper {
    display: block;
    margin-top: 20px;
}

.canopy-image-placeholder {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.canopy-info {
    text-align: left;
}

.canopy-includes {
    margin-bottom: 25px;
}

.canopy-includes h4 {
    color: #a5d6a7;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.canopy-includes ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.canopy-includes li {
    padding: 4px 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.95);
    position: relative;
    padding-left: 18px;
}

.canopy-includes li::before {
    content: '•';
    color: #81c784;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 4px;
}

.canopy-schedule h4 {
    color: #a5d6a7;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.canopy-schedule p {
    margin: 6px 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.95);
}

.canopy-schedule .schedule-times {
    font-weight: 600;
    color: #c8e6c9;
    font-size: 14px;
}

.student-rate {
    font-size: 11px !important;
    color: rgba(255,255,255,0.8) !important;
    font-style: italic;
    margin-top: 10px !important;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    border-left: 3px solid #81c784;
}

.canopy-actions {
    background: rgba(255,255,255,0.95);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-select-tour {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 44px;
}

.btn-select-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-select-tour:hover::before {
    left: 100%;
}

.btn-select-tour:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4caf50;
    padding: 12px 20px;
    border: 2px solid #4caf50;
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 44px;
}

.btn-secondary:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
}

.tour-booking-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.booking-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px 15px;
    border-radius: 12px;
    margin: 15px 10px;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    width: calc(100% - 20px);
    box-sizing: border-box;
}

.booking-form-section h3 {
    color: #2e7d32;
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.booking-form-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2e7d32;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    transform: translateY(-1px);
}

.form-group.calendar-group {
    display: block;
}

.form-group.calendar-group > div {
    width: 100%;
}

.form-row {
    display: block;
}

.form-row .form-group {
    width: 100%;
    margin-bottom: 15px;
}

.booking-summary {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.price-label {
    font-size: 16px;
    color: #2e7d32;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.total-price {
    font-size: 2.2em;
    font-weight: 700;
    color: #2e7d32;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.booking-confirmation {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.confirmation-header h2 {
    color: #155724;
    margin-top: 0;
}

.detail-grid {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-item.total {
    border-bottom: 2px solid #0073aa;
    font-weight: bold;
}

.booking-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #721c24;
}

.booking-errors ul {
    margin: 10px 0;
    padding-left: 20px;
}

.tour-booking-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.stat-box {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    min-width: 150px;
}

.stat-box h3 {
    font-size: 2em;
    margin: 0 0 10px 0;
    color: #0073aa;
}

.stat-box p {
    margin: 0;
    color: #666;
}

/* Calendar Styles Elegantes */
.tour-calendar {
    max-width: 100%;
    margin: 20px 0;
    border: 2px solid #e8f5e8;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
}

.calendar-nav {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.calendar-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

#calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day-header {
    padding: 12px 5px;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
    color: #2e7d32;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    padding: 12px 5px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    cursor: pointer;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-day:hover {
    background: #e8f5e8;
    transform: scale(1.05);
}

.calendar-day.other-month {
    color: #ccc;
    background: #fafafa;
}

.calendar-day.past-date {
    color: #999;
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.past-date:hover {
    background: #f5f5f5;
    transform: none;
}

.calendar-day.available {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #1b5e20;
    font-weight: 600;
    border-radius: 8px;
    margin: 2px;
}

.calendar-day.available:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border-radius: 8px;
    margin: 2px;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.time-slots {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-radius: 16px;
    display: none;
    border: 2px solid rgba(76, 175, 80, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.time-slots.show {
    display: block;
}

.time-slot {
    display: block;
    margin: 8px 0;
    padding: 12px 15px;
    background: white;
    border: 2px solid #4caf50;
    border-radius: 25px;
    cursor: pointer;
    color: #4caf50;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.time-slot:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.time-slot.selected {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.time-slot.unavailable {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
    text-decoration: line-through;
}

.time-slot.unavailable:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    color: #999;
    transform: none;
    box-shadow: none;
}

.time-slot.unavailable::after {
    content: '🚫';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.7;
}

.calendar-container {
    margin: 25px 0;
    background: white;
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 2px 15px rgba(76, 175, 80, 0.1);
}

/* Controles de cantidad elegantes */
.participants-row {
    display: block;
    margin: 20px 0;
}

.participant-group {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e8f5e8;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.participant-group:hover {
    border-color: #4caf50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.participant-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2e7d32;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-display {
    font-size: 18px;
    color: #4caf50;
    margin-bottom: 15px;
    font-weight: 700;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8f5e8;
    border-radius: 50px;
    background: white;
    overflow: hidden;
    max-width: 180px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
}

.qty-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #4caf50;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn.minus {
    border-radius: 50px 0 0 50px;
}

.qty-btn.plus {
    border-radius: 0 50px 50px 0;
}

.quantity-control input {
    border: none;
    text-align: center;
    width: 90px;
    height: 45px;
    font-size: 18px;
    font-weight: 700;
    background: white;
    outline: none;
    color: #2e7d32;
}

/* Selector de tipo de reserva */
.booking-type-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #4CAF50;
    background-color: #f8f9fa;
}

.radio-option input[type="radio"] {
    margin: 0;
}

.radio-option input[type="radio"]:checked + span {
    font-weight: bold;
    color: #4CAF50;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #4CAF50;
    background-color: #e8f5e8;
}

/* Modal Styles Elegantes */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.15);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 0 auto;
    padding: 0;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.2);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    border: 3px solid rgba(76, 175, 80, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content.error {
    border: 3px solid rgba(220, 53, 69, 0.2);
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.15);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.close-modal:hover {
    background: #f44336;
    color: white;
    transform: scale(1.1);
}

.confirmation-header {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confirmation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="success" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23success)"/></svg>') repeat;
    opacity: 0.3;
}

.confirmation-header * {
    position: relative;
    z-index: 2;
}

.confirmation-header .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    animation: bounce 0.6s ease;
}

.confirmation-header h2 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.6em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.confirmation-header p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 16px;
}

.modal-content.error .confirmation-header {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.modal-body {
    padding: 30px;
}

.detail-grid {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span:first-child {
    color: #666;
    font-weight: 500;
}

.detail-item span:last-child {
    color: #2e7d32;
    font-weight: 600;
}

.detail-item.total {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    margin: 15px -10px -10px;
    padding: 15px 10px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
}

.detail-item.total span {
    color: #2e7d32;
    font-weight: 700;
}

.important-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    color: #856404;
    font-weight: 600;
}

.modal-actions {
    padding: 0 30px 30px;
    text-align: center;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    width: 100%;
    max-width: 200px;
}

.modal-actions .btn-primary:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.error-message {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 20px;
    color: #c62828;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Desktop Styles - 768px and up */
@media (min-width: 768px) {
    .tour-booking-list {
        padding: 20px;
    }
    
    .canopy-content-wrapper {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        margin-top: 25px;
    }
    
    .canopy-image-placeholder {
        flex: 0 0 300px;
        height: 200px;
        margin-bottom: 0;
    }
    
    .canopy-info {
        flex: 1;
        display: flex;
        gap: 30px;
    }
    
    .canopy-includes {
        flex: 1;
    }
    
    .canopy-schedule {
        flex: 1;
    }
    
    .canopy-actions {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 20px;
    }
    
    .btn-select-tour,
    .btn-secondary {
        width: auto;
        min-width: 150px;
        padding: 12px 24px;
    }
    
    .booking-form-section {
        padding: 40px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .form-row {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    
    .form-row .form-group {
        flex: 1;
        margin-bottom: 25px;
    }
    
    .participants-row {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin: 30px 0;
    }
    
    .participant-group {
        flex: 0 0 250px;
        margin-bottom: 0;
    }
    
    .calendar-container {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }
    
    .tour-calendar {
        flex: 0 0 400px;
    }
    
    .time-slots {
        flex: 1;
        margin-top: 0;
        display: block;
        padding: 20px;
    }
    
    .time-slots.show {
        display: block;
    }
    
    .time-slot {
        display: inline-block;
        margin: 6px;
        width: auto;
    }
    
    .btn-primary {
        width: auto;
        min-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .booking-summary {
        max-width: 400px;
        margin: 30px auto;
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .tour-booking-container {
        max-width: 1200px;
    }
    
    .canopy-image-placeholder {
        flex: 0 0 350px;
        height: 250px;
    }
    
    .booking-form-section {
        padding: 50px;
    }
    
    .form-group.calendar-group {
        display: block;
    }
    
    .calendar-container {
        gap: 40px;
    }
    
    .tour-calendar {
        flex: 0 0 450px;
    }
}

/* Estilos para Modal de Confirmación */
.confirmation-modal .confirmation-header {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
}

.confirmation-modal .confirm-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    animation: pulse 2s infinite;
}

.confirmation-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    color: #856404;
    font-weight: 600;
    border-left: 5px solid #ff9800;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0 30px 30px;
}

.modal-actions .btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-actions .btn-secondary:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
    transform: translateY(-2px);
}

/* Estilos para Modal de Loading */
.loading-modal {
    border: 3px solid rgba(33, 150, 243, 0.2);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.15);
}

.loading-content {
    text-align: center;
    padding: 60px 40px;
    color: #2196f3;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e3f2fd;
    border-top: 4px solid #2196f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

.loading-content h3 {
    color: #2196f3;
    margin: 0 0 15px 0;
    font-size: 1.4em;
    font-weight: 600;
}

.loading-content p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

/* Estilos para Modal de Éxito */
.success-modal .confirmation-header {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 20px;
        max-height: 95vh;
        top: 50%;
    }
    
    .confirmation-header {
        padding: 30px 20px 25px;
    }
    
    .confirmation-header .success-icon,
    .confirmation-header .confirm-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .confirmation-header h2 {
        font-size: 1.4em;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .detail-grid {
        padding: 20px;
        margin: 15px 0;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
    }
    
    .detail-item.total {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .important-message,
    .confirmation-warning {
        padding: 15px;
        font-size: 14px;
    }
    
    .modal-actions {
        flex-direction: column;
        padding: 0 20px 25px;
        gap: 10px;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
        min-width: auto;
    }
    
    .close-modal {
        width: 30px;
        height: 30px;
        right: 15px;
        top: 15px;
        font-size: 16px;
    }
    
    .loading-content {
        padding: 40px 30px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) {
    .modal-content {
        margin: 0 auto;
    }
    
    .detail-item {
        padding: 15px 0;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: auto;
        min-width: 140px;
    }
}