:root {
    --burgundy: #800020;
    --burgundy-dark: #5c0017;
    --burgundy-light: #aa0029;
    --success-green: #10B981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.5;
}

/* Header/Navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    height: 80px;
    width: 200px;
    margin-right: 12px;
}

.text-burgundy {
    color: var(--burgundy);
}

.text-2xl {
    font-size: 24px;
}

.font-bold {
    font-weight: 700;
}

nav {
    display: none;
}

@media (min-width: 768px) {
    nav {
        display: flex;
        gap: 32px;
    }
}

.nav-link {
    color: var(--gray-800);
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--burgundy);
}

/* Formulario de Reservas */
.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.reservation-header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 24px;
}

.reservation-header h1 {
    font-size: 42px;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-weight: 700;
}

.reservation-header h1 span {
    color: var(--success-green);
    position: relative;
    display: inline-block;
}

.reservation-header h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--success-green);
    border-radius: 2px;
}

.reservation-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 800px;
    margin: 16px auto 0;
}

.reservation-process {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 48px auto;
}

@media (max-width: 768px) {
    .reservation-process {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    position: relative;
}

@media (max-width: 768px) {
    .process-step {
        width: 100%;
        max-width: 320px;
    }
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -35%;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, var(--success-green), var(--gray-300));
    display: block;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--success-green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    position: relative;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.step-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.step-description {
    color: var(--gray-600);
    font-size: 15px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(128, 0, 32, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.step-icon i {
    font-size: 32px;
    color: var(--burgundy);
}

/* Formulario principal */
.reservation-form-container {
    max-width: 1100px;
    margin: 40px auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.reservation-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--burgundy), var(--burgundy-light));
}

.form-progress {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.progress-step {
    flex: 1;
    padding: 18px 12px;
    background-color: #f9f9f9;
    color: var(--gray-600);
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.progress-step.active {
    background-color: var(--burgundy);
    color: white;
}

.progress-step:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 15px solid white;
    z-index: 1;
}

.progress-step.active:not(:first-child)::before {
    border-left-color: #f9f9f9;
}

.progress-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 15px solid #f9f9f9;
    z-index: 1;
}

.progress-step.active:not(:last-child)::after {
    border-left-color: var(--burgundy);
}

.progress-step i {
    margin-right: 8px;
    font-size: 18px;
}

.form-step {
    padding: 40px;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form-row {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-step {
        padding: 24px;
    }
    
    .form-group {
        margin-bottom: 28px;
    }
    
    .form-info {
        padding: 16px;
        margin-bottom: 28px;
    }
}

.form-col {
    flex: 1;
}

.form-check {
    display: flex;
    align-items: center;
    margin-right: 24px;
    cursor: pointer;
    padding: 8px 0;
}

.form-check input {
    margin-right: 10px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .radio-group {
        flex-direction: column;
        gap: 8px;
    }
}

.error-text {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.step-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.step-info i {
    color: var(--burgundy);
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
}

.btn-outline:hover {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

.btn-primary {
    background-color: var(--burgundy);
    color: white;
}

.btn-primary:hover {
    background-color: var(--burgundy-dark);
}

.btn-primary:disabled {
    background-color: var(--gray-400);
    cursor: not-allowed;
}

/* Estilos para selección de paquete */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.package-card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-card:hover::before {
    background-color: var(--burgundy);
}

.package-card.selected {
    border-color: var(--burgundy);
    background-color: rgba(128, 0, 32, 0.05);
}

.package-card.selected::before {
    background-color: var(--burgundy);
}

.package-card.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: var(--burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.package-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.package-description {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

.package-price {
    font-weight: 700;
    font-size: 22px;
    color: var(--burgundy);
}

.package-price small {
    font-weight: 400;
    font-size: 14px;
    color: var(--gray-600);
}

/* Iconos y decoraciones */
.form-icon {
    color: var(--burgundy);
    margin-right: 8px;
}

.form-info {
    display: flex;
    align-items: flex-start;
    background-color: rgba(128, 0, 32, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--burgundy);
}

.info-icon {
    margin-right: 16px;
    color: var(--burgundy);
    font-size: 24px;
    flex-shrink: 0;
}

.info-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Availability indicator */
.availability {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.available {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.limited {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.unavailable {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Spinner de carga */
.spinner-border {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Calendario personalizado */
.date-picker-container {
    position: relative;
}

.date-picker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23800020'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
    padding-right: 40px;
}

/* Confirmación */
.confirmation {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 80px;
    color: var(--success-green);
    margin-bottom: 24px;
}

.confirmation-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.confirmation-message {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 32px;
}

.confirmation-details {
    background-color: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--gray-700);
}

.detail-value {
    color: var(--gray-800);
    font-weight: 600;
}

.button {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 300ms;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: var(--burgundy-dark);
}

.button-outline {
    border: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
}

.button-outline:hover {
    background-color: var(--white);
    color: var(--gray-800);
}

.mobile-menu-btn {
    display: block;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

#mobileMenu {
    display: none;
    background-color: var(--white);
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#mobileMenu a, #mobileMenu button {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--gray-800);
    text-decoration: none;
}

#mobileMenu a:hover {
    color: var(--burgundy);
}

#mobileMenu button {
    margin-top: 8px;
    width: 100%;
}

/* Estilos para nav centrado */
.nav-centered {
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Estilos para toggle switch */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background-color: rgba(128, 0, 32, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.toggle-container:hover {
    background-color: rgba(128, 0, 32, 0.15);
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    transition: color 0.3s ease;
}

.toggle-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
}

.toggle-flag:hover {
    border-color: var(--burgundy);
    transform: scale(1.1);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.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.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--burgundy);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--burgundy);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Estilo para indicar cuál opción está activa */
.toggle-container .toggle-label.active {
    color: var(--burgundy);
    font-weight: 600;
}

/* Toggle móvil */
.mobile-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    margin: 8px 0;
}

.mobile-toggle-container .toggle-flag {
    width: 18px;
    height: 18px;
}

.mobile-toggle {
    width: 45px;
    height: 22px;
}

.mobile-toggle .toggle-slider:before {
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
}

.mobile-toggle input:checked + .toggle-slider:before {
    transform: translateX(23px);
}

/* Estilos para botones desplegables */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-btn:hover {
    background-color: var(--burgundy);
    color: white;
}

.dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    z-index: 100;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--burgundy);
    color: white;
}

/* Estilos especiales para el botón de contactos */
.contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--burgundy);
    color: white;
    border: 2px solid var(--burgundy);
}

.contact-btn:hover {
    background-color: var(--burgundy-dark);
    color: white;
    transform: scale(1.05);
}

.contact-btn i {
    font-size: 16px;
    margin: 0;
}

/* Menú de contactos más ancho */
.contact-menu {
    min-width: 280px;
    right: 0;
    left: auto;
}

/* Bloque de información de contacto */
.contact-info-block {
    padding: 8px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    color: var(--gray-800);
    user-select: none;
    cursor: default;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 18px;
    text-align: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* Ícono especial para USA */
.contact-item .fa-flag-usa {
    color: #c41e3a;
}

/* Estilos para móvil */
.contact-mobile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-mobile-btn i:first-child {
    color: var(--burgundy);
}

.mobile-contact-info-block {
    padding: 8px 0;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    user-select: none;
    cursor: default;
}

.mobile-contact-item i {
    width: 18px;
    text-align: center;
    color: var(--burgundy);
    font-size: 14px;
    flex-shrink: 0;
}

/* Estilos para dropdown móvil */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--gray-800);
    font-weight: 500;
    padding: 8px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-btn:hover {
    color: var(--burgundy);
}

.mobile-dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 16px;
    background-color: rgba(128, 0, 32, 0.05);
    border-radius: 4px;
    margin-top: 4px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu .nav-link {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.mobile-dropdown-menu .nav-link:hover {
    color: var(--burgundy);
}

/* Hero Section */
.hero-image {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    text-align: center;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image h1 {
    font-size: 3rem !important;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.hero-image p {
    font-size: 1.1rem !important;
    margin-bottom: 2rem;
    color: white;
}

.text-white {
    color: var(--white);
}

.max-w-2xl {
    max-width: 42rem;
}

.text-4xl {
    font-size: 36px;
}

.text-6xl {
    font-size: 60px;
}

.mb-4 {
    margin-bottom: 16px;
}

.text-xl {
    font-size: 20px;
}

.mb-8 {
    margin-bottom: 32px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 16px;
}

/* Featured Section */
.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 48px;
}

.divider {
    width: 96px;
    height: 4px;
    background-color: var(--burgundy);
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gap-8 {
    gap: 32px;
}

.feature-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.text-4xl {
    font-size: 36px;
}

.mb-3 {
    margin-bottom: 12px;
}

.text-gray-600 {
    color: var(--gray-600);
}

/* About Us Section */
.bg-white {
    background-color: var(--white);
}

.flex-col {
    flex-direction: column;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
}

.md\:w-1\/2 {
    width: 100%;
}

@media (min-width: 768px) {
    .md\:w-1\/2 {
        width: 50%;
    }
}

.mb-8 {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .md\:mb-0 {
        margin-bottom: 0;
    }
}

.md\:pr-8 {
    padding-right: 32px;
}

.about-image {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
}

.mb-6 {
    margin-bottom: 24px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px;
    border-radius: 9999px;
    margin-right: 12px;
}

/* Packages Section */
.package-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 300ms;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.package-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.p-6 {
    padding: 24px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.package-tag {
    background-color: var(--burgundy);
    color: var(--white);
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 9999px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-xl-bold {
    font-size: 20px;
    font-weight: 700;
}

.mt-12 {
    margin-top: 48px;
}

.button-outline-burgundy {
    border: 2px solid var(--burgundy);
    background-color: transparent;
    color: var(--burgundy);
}

.button-outline-burgundy:hover {
    background-color: var(--burgundy);
    color: var(--white);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    transition: all 300ms;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.bg-burgundy {
    background-color: var(--burgundy);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.text-yellow-400 {
    color: #fbbf24;
}

.mr-2 {
    margin-right: 8px;
}

.italic {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    margin-right: 16px;
}

.opacity-75 {
    opacity: 0.75;
}

/* CTA Section */
.bg-gray-100 {
    background-color: var(--gray-100);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.bg-gray-800 {
    background-color: var(--gray-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
}

.footer-grid-5 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .footer-grid-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-grid-5 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.text-gray-400 {
    color: var(--gray-400);
}

.hover\:text-white:hover {
    color: var(--white);
}

.space-y-2 > * + * {
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #8B5A4B;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #6B3E33;
    transform: scale(1.1);
    color: white;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.contact-icon {
    color: #8B5A4B;
    margin-right: 12px;
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}

.border-gray-700 {
    border-color: var(--gray-700);
}

.border-t {
    border-top-width: 1px;
}

.pt-8 {
    padding-top: 32px;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    color: var(--gray-700);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"] {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.2);
}

.submit-button {
    width: 100%;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 300ms;
}

.submit-button:hover {
    background-color: var(--burgundy-dark);
}

/* Made with DeepSite */
.deepsite-badge {
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    position: fixed;
    left: 8px;
    bottom: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
}

.deepsite-badge a {
    color: #fff;
    text-decoration: underline;
}

.deepsite-logo {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 3px;
    filter: brightness(0) invert(1);
}

/* Estilos para la sección de métricas destacadas */
.featured-metrics {
    background: #fafafa;
    color: #222;
    padding: 40px 0 20px 0;
}

.metrics-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.metric-card {
    background: transparent;
    color: #222;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 12px 12px 12px;
    min-width: 180px;
    max-width: 260px;
    flex: 1 1 0;
    text-align: center;
    margin-bottom: 0;
    transition: none;
}

.metric-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(128,0,32,0.13);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #800020;
}

.metric-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #800020;
}

.metric-desc {
    font-size: 1.05rem;
    color: #222;
    font-weight: 400;
}

.metric-desc a, .metric-desc span[style*="color:green"] {
    color: #800020 !important;
    font-weight: 700;
    text-decoration: none;
}

.metric-desc .iso-label {
    color: #800020;
    font-weight: 700;
    font-size: 1em;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .metrics-container {
        gap: 12px;
    }
    .metric-card {
        min-width: 140px;
        padding: 16px 4px 8px 4px;
    }
    .metric-number {
        font-size: 2rem;
    }
    .metric-title {
        font-size: 1.1rem;
    }
    .metric-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .metrics-container {
        flex-wrap: wrap;
        gap: 18px;
    }
    .metric-card {
        min-width: 220px;
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .metrics-container {
        flex-direction: column;
        align-items: center;
    }
    .metric-card {
        width: 95vw;
        min-width: unset;
    }
}

/* Sección confianza destacada */
.confianza-destacada {
    background: #fff7fa;
    border-bottom: 1px solid #f3dbe3;
    padding: 32px 0 18px 0;
    text-align: center;
}

.confianza-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.confianza-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 10px;
    line-height: 1.3;
}

.confianza-resaltado {
    color: #fff;
    background: #800020;
    border-radius: 8px;
    padding: 2px 10px;
    font-weight: 800;
    margin-left: 4px;
    margin-right: 4px;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(128,0,32,0.07);
}

.confianza-subtitulo {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 10px;
    font-weight: 500;
}

.confianza-premio {
    display: inline-block;
    background: #800020;
    color: #fff;
    border-radius: 9999px;
    padding: 6px 22px 6px 18px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(128,0,32,0.08);
    margin-top: 6px;
}

.confianza-premio i {
    margin-right: 8px;
    color: #ffd700;
}

.confianza-premiado {
    color: #ffd700;
    font-weight: 700;
}

.confianza-tripadvisor {
    color: #00af87;
    font-weight: 700;
}

@media (max-width: 600px) {
    .confianza-titulo {
        font-size: 1.1rem;
    }
    .confianza-subtitulo {
        font-size: 1rem;
    }
    .confianza-premio {
        font-size: 0.95rem;
        padding: 6px 10px 6px 10px;
    }
}

/* Sección de Confianza */
.confianza {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.confianza-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 12px;
}

.confianza-subtitulo {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 24px;
}

.distintivo-confianza {
    display: inline-block;
    background: #800020;
    color: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(128,0,32,0.2);
}

@media (max-width: 600px) {
    .confianza-titulo {
        font-size: 1.5rem;
    }
    .confianza-subtitulo {
        font-size: 1rem;
    }
    .distintivo-confianza {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.whatsapp-float i {
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Texto del botón WhatsApp */
.whatsapp-text {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
    
    .whatsapp-text {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Estilos para página Nosotros */
.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.certification-item {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.certification-item:hover {
    opacity: 1;
}

/* Estilo para nav activo */
.nav-link.active {
    color: #8B5A4B;
    font-weight: 600;
}

/* Estilos para selección de tours */
.tours-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tour-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--burgundy);
}

.tour-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 1.5rem;
}

.tour-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tour-badge.intermedio {
    background: #f59e0b;
}

.tour-badge.premium {
    background: #7c3aed;
}

.tour-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.tour-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.feature i {
    color: var(--burgundy);
}

.tour-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.tour-select-btn {
    width: 100%;
    background: var(--burgundy);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tour-select-btn:hover {
    background: var(--burgundy-dark);
}

/* Estilos para modales */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--gray-800);
    font-size: 1.25rem;
    font-weight: 600;
}

.close {
    color: var(--gray-400);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--gray-600);
}

.modal-body {
    padding: 1.5rem;
}

.selected-tour-info {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-tour-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gray-800);
}

.payment-summary {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    border-top: 1px solid var(--gray-300);
    padding-top: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--burgundy);
}

.btn-full {
    width: 100%;
}

/* Estilos para modal de confirmación */
.confirmation-success {
    text-align: center;
    margin-bottom: 2rem;
}

.confirmation-success i {
    font-size: 3rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.confirmation-success h4 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.booking-details {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.booking-details h5 {
    margin: 0 0 1rem 0;
    color: var(--gray-800);
    font-weight: 600;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.detail-row.total {
    border-top: 1px solid var(--gray-300);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-weight: bold;
    color: var(--burgundy);
}

.detail-label {
    color: var(--gray-600);
    font-weight: 500;
}

.detail-value {
    color: var(--gray-800);
    font-weight: 500;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
}

.confirmation-actions .btn {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .tours-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .tour-features {
        justify-content: center;
    }
}

/* Estilos para botón de descarga PDF */
.download-btn {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.4);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.3);
}

.download-btn i {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Indicador de descarga */
.downloading {
    position: relative;
    pointer-events: none;
}

.downloading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mensaje de éxito para PDF */
.pdf-success {
    background: var(--success-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    opacity: 0;
    animation: slideInSuccess 0.5s ease forwards;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejoras visuales para los modales */
.modal-header {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    color: white;
}

.modal-header .close {
    color: rgba(255, 255, 255, 0.8);
}

.modal-header .close:hover {
    color: white;
}

/* Animación para iconos de éxito */
.success-icon {
    animation: successPulse 1.5s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Estilos para elementos de información */
.info-badge {
    background: rgba(128, 0, 32, 0.1);
    color: var(--burgundy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.ticket-preview {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed var(--burgundy);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
    position: relative;
}

.ticket-preview::before {
    content: '✈️';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 20px;
}

.ticket-preview h4 {
    color: var(--burgundy);
    margin-bottom: 10px;
    font-size: 16px;
}

.ticket-preview p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* ========== NUEVO FOOTER MODERNO ========== */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.modern-footer::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 270px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-description {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4a90e2;
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #b0c4de;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-list a:hover {
    color: #4a90e2;
    transform: translateX(5px);
}

.footer-list a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-list a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b0c4de;
    font-size: 14px;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 2px;
    color: #4a90e2;
    flex-shrink: 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0c4de;
    font-size: 14px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 500;
    color: #ffffff;
}

.schedule-time {
    color: #4a90e2;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: #8fa2b7;
    font-size: 14px;
    margin: 0;
}

.footer-copyright strong {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
        display: block;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-logo {
        width: 270px;
        height: 120px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}