/* 
==========================================
GALLERY MODAL SYSTEM - CSS
Soutwest Business Club Tourism Platform
==========================================
Responsive gallery modal for displaying 
complete travel package images with details
Version: 1.0
Author: AI Assistant
Date: Nov 21, 2025
========================================== 
*/

/* OVERLAY BASE */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.gallery-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* MAIN CONTAINER */
.gallery-modal-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 95%;
    max-height: 95vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* HEADER */
.gallery-modal-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.gallery-modal-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-modal-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
}

.gallery-modal-title .icon {
    font-size: 28px;
    color: #fed7aa;
}

.gallery-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* FILTERS BAR */
.gallery-modal-filters {
    background: #f8fafc;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.gallery-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.gallery-search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.gallery-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
}

.gallery-filter-dropdown {
    position: relative;
}

.gallery-filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

.gallery-filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.gallery-results-count {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

/* CONTENT AREA */
.gallery-modal-content {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fafbfc;
    position: relative;
}

.gallery-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

/* PACKAGE CARDS */
.gallery-package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.gallery-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gallery-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-package-card:hover .gallery-package-image img {
    transform: scale(1.1);
}

.gallery-package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    font-family: 'Arial', sans-serif;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gallery-package-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Arial', sans-serif;
}

.gallery-package-content {
    padding: 20px;
}

.gallery-package-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: 'Arial', sans-serif;
}

.gallery-package-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.gallery-package-features {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.gallery-feature-tag {
    background: #e0f2fe;
    color: #0284c7;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.gallery-package-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gallery-price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-family: 'Arial', sans-serif;
}

.gallery-new-price {
    font-size: 22px;
    font-weight: 800;
    color: #dc2626;
    font-family: 'Arial', sans-serif;
}

.gallery-savings {
    background: #dcfce7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.gallery-package-actions {
    display: flex;
    gap: 10px;
}

.gallery-action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.gallery-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.gallery-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.gallery-btn-details {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.gallery-btn-details:hover {
    background: #1e3a8a;
    color: white;
}

/* LIGHTBOX FOR FULL IMAGE */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox-overlay.active {
    display: flex;
}

.gallery-lightbox-container {
    position: relative;
    max-width: 98%;
    max-height: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.5) translateY(100px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: white;
}

.gallery-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.gallery-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.gallery-lightbox-info-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-info-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.gallery-lightbox-info-btn.active {
    background: #3b82f6;
}

.gallery-lightbox-info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    color: white;
    padding: 25px;
    border-radius: 15px;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.gallery-lightbox-overlay.show-info .gallery-lightbox-info {
    transform: translateY(0);
}

.gallery-lightbox-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.gallery-lightbox-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-lightbox-old-price {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-new-price {
    font-size: 32px;
    font-weight: 800;
    color: #22c55e;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.gallery-lightbox-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* PAGINATION */
.gallery-modal-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.gallery-pagination-info {
    color: #6b7280;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.gallery-pagination-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.gallery-pagination-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.gallery-pagination-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.gallery-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* LOADING STATES */
.gallery-skeleton-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.gallery-skeleton-content {
    padding: 20px;
}

.gallery-skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.gallery-skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .gallery-modal-container {
        max-width: 98%;
        max-height: 98vh;
    }
    
    .gallery-packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-modal-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .gallery-modal-header {
        padding: 20px;
    }
    
    .gallery-modal-title h2 {
        font-size: 20px;
    }
    
    .gallery-modal-filters {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    /* Ocultar filtros de categoría y precio en móvil para ganar espacio */
    .gallery-filter-dropdown {
        display: none;
    }
    
    .gallery-search-box {
        min-width: 100%;
    }
    
    .gallery-modal-content {
        padding: 20px;
        max-height: 75vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-package-actions {
        flex-direction: column;
    }
    
    .gallery-lightbox-container {
        max-width: 95%;
        max-height: 95%;
    }
    
    .gallery-lightbox-image {
        max-height: 90vh;
    }
    
    .gallery-lightbox-info {
        left: 10px;
        right: 10px;
        padding: 20px;
        max-width: none;
    }
    
    .gallery-lightbox-close,
    .gallery-lightbox-info-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .gallery-lightbox-info-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .gallery-modal-pagination {
        padding: 15px 20px;
        flex-wrap: wrap;
        background: white;
        border-top: 1px solid #e2e8f0;
        position: sticky;
        bottom: 0;
        z-index: 10;
    }
}

@media (max-width: 480px) {
    .gallery-modal-header {
        padding: 15px;
    }
    
    .gallery-modal-title h2 {
        font-size: 18px;
    }
    
    .gallery-modal-close {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-modal-content {
        padding: 15px;
        max-height: 65vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-package-content {
        padding: 15px;
    }
    
    .gallery-package-title {
        font-size: 16px;
    }
    
    .gallery-new-price {
        font-size: 20px;
    }
}

/* ACCESSIBILITY */
.gallery-modal-overlay:focus-within,
.gallery-lightbox-overlay:focus-within {
    outline: none;
}

button:focus,
input:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* FONT AWESOME FIX */
.gallery-modal-overlay .fa,
.gallery-lightbox-overlay .fa {
    font-family: 'FontAwesome' !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    speak: none !important;
    display: inline-block !important;
}

/* WHATSAPP ICON SPECIFIC FIX */
.gallery-modal-overlay .fa-whatsapp,
.gallery-lightbox-overlay .fa-whatsapp {
    color: white !important;
    font-size: 16px !important;
}

.gallery-btn-whatsapp .fa-whatsapp {
    margin-right: 8px !important;
}

.gallery-lightbox-whatsapp .fa-whatsapp {
    margin-right: 8px !important;
}

/* FALLBACK IF WHATSAPP ICON DOESN'T LOAD */
.gallery-btn-whatsapp .fa-whatsapp:before {
    content: "\f232" !important;
}

.gallery-lightbox-whatsapp .fa-whatsapp:before {
    content: "\f232" !important;
}

.gallery-modal-overlay .fa:before,
.gallery-lightbox-overlay .fa:before {
    text-decoration: inherit !important;
    display: inline-block !important;
    speak: none !important;
}

/* ==========================================
   ESTILOS EXCLUSIVOS PARA SOCIOS
   ========================================== */

/* Badge SOLO SOCIOS */
.exclusive-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%) !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5) !important;
    animation: exclusivePulse 2s infinite;
    border: 2px solid #fff;
}

@keyframes exclusivePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
        transform: scale(1.02);
    }
}

/* Tarjeta de paquete exclusivo */
.exclusive-package {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25) !important;
    position: relative;
    overflow: visible;
}

.exclusive-package:hover {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4) !important;
    transform: translateY(-8px);
}

.exclusive-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #ffb300 50%, #ffd700 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Indicador visual adicional para paquetes exclusivos */
.exclusive-package .gallery-package-image::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Badge contador de paquetes */
.package-count-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: badgeBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgeBounce {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================
   CTA DE CONVERSIÓN (INDEX)
   ========================================== */

.exclusive-packages-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.exclusive-packages-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-description {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-benefit {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: #000;
}

.cta-button .fa {
    margin-right: 10px;
    animation: starSpin 2s linear infinite;
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive CTA */
@media (max-width: 768px) {
    .exclusive-packages-cta {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* PRINT STYLES */
@media print {
    .gallery-modal-overlay,
    .gallery-lightbox-overlay {
        display: none !important;
    }
}
