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

:root {
    --dark-bg: #1a1a1a;
    --dark-light: #2d2d2d;
    --golden: #d4af37;
    --white-smoke: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

body.light-mode {
    --dark-bg: #f5f5f5;
    --dark-light: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
}

.font-cairo {
    font-family: 'Cairo', sans-serif;
}

.text-golden {
    color: var(--golden);
}

/* Navbar */
#navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#navbar.scrolled {
    background: rgba(26, 26, 26, 1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Better mobile hero background */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
        background-size: cover;
        background-position: center 30%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
        background-size: cover;
        background-position: center 40%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.7) 100%);
    }
}

/* Lighter overlay on mobile for better image visibility */
@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(45, 45, 45, 0.65) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--golden) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--golden) 0%, #b8941f 100%);
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero {
    background: var(--golden);
    color: #1a1a1a;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

/* Floating Action Buttons - Fixed Layout with Better Spacing */

/* Booking FAB (Left Bottom) - Golden */
.fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--golden) 0%, #b8941f 100%);
    color: #1a1a1a;
    border-radius: 50%;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab:active {
    opacity: 0.9;
}

/* WhatsApp FAB (Right Bottom) - Green */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-fab:active {
    opacity: 0.9;
}

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .fab {
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* Mobile Responsive (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .fab {
        bottom: 20px;
        left: 20px;
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }
    
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
        font-size: 1.65rem;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .fab {
        bottom: 18px;
        left: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    }
    
    .whatsapp-fab {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.55rem;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

/* Extra Small Mobile (max 360px) */
@media (max-width: 360px) {
    .fab {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.45rem;
    }
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.bg-dark-light {
    background-color: var(--dark-light);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* When there's only 1-2 cards, center them and limit width */
.offers-grid:has(.offer-card:nth-child(1):nth-last-child(1)) {
    grid-template-columns: minmax(300px, 500px);
    justify-content: center;
}

.offers-grid:has(.offer-card:nth-child(2):nth-last-child(1)) {
    grid-template-columns: repeat(2, minmax(300px, 500px));
    justify-content: center;
}

/* For 3 cards, make them look balanced */
.offers-grid:has(.offer-card:nth-child(3):nth-last-child(1)) {
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    justify-content: center;
}

.offer-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--golden);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    background: var(--dark-bg);
}

.offer-icon {
    font-size: 3rem;
    color: var(--golden);
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--golden);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.new-price {
    color: var(--golden);
    font-size: 2rem;
    font-weight: 900;
}

.offer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Gallery Grid */
.gallery-grid {
    columns: 3;
    column-gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
        column-gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
        column-gap: 0;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--dark-bg);
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--golden);
}

/* Ticket */
.ticket {
    text-align: center;
}

.ticket-header {
    padding: 2rem 0;
    border-bottom: 2px dashed var(--golden);
}

.ticket-body {
    padding: 2rem 0;
}

.ticket-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-bg);
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        columns: 2;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Reset special layouts on mobile - all cards full width */
    .offers-grid:has(.offer-card:nth-child(1):nth-last-child(1)),
    .offers-grid:has(.offer-card:nth-child(2):nth-last-child(1)),
    .offers-grid:has(.offer-card:nth-child(3):nth-last-child(1)) {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
    
    .offer-card {
        max-width: 100%;
    }
    
    /* Navbar adjustments */
    #navbar .container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    #countdown {
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Hero section */
    .hero-content {
        padding: 1rem;
    }
    
    .btn-hero {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    /* FAB button */
    .fab {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Section padding */
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Offer cards */
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.25rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    /* Ticket */
    .ticket-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .offer-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Footer Styles */
footer {
    background: var(--dark-light);
    margin-top: 4rem;
}

footer h3 {
    color: var(--golden);
    font-weight: 700;
}

/* Social Media Icons - Simple Style */
.social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--golden);
    border-radius: 8px;
    color: var(--golden);
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--golden);
    color: var(--dark-bg);
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer Links */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--golden);
    transform: translateX(-5px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer h3 {
        font-size: 1.25rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* ============================================
   HERO CAROUSEL STYLES
   ============================================ */

.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    z-index: 1;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburnsZoom 25s ease-in-out infinite alternate;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.5s ease;
}

.carousel-slide.active .slide-bg {
    animation: kenburnsZoom 25s ease-in-out infinite alternate, slideShine 3s ease-in-out;
    filter: brightness(1) contrast(1.15);
}

/* Ken Burns Effect - Zoom and Pan */
@keyframes kenburnsZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.15) translate(-2%, -2%);
    }
    50% {
        transform: scale(1.1) translate(2%, 1%);
    }
    75% {
        transform: scale(1.2) translate(-1%, 2%);
    }
    100% {
        transform: scale(1.15) translate(1%, -1%);
    }
}

/* Shine Effect on Slide Change */
@keyframes slideShine {
    0% {
        filter: brightness(0.8) contrast(1);
    }
    50% {
        filter: brightness(1.2) contrast(1.2);
    }
    100% {
        filter: brightness(1) contrast(1.15);
    }
}

/* Parallax Effect for Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
}

.carousel-slide.active .hero-content {
    animation: fadeInUp 1.2s ease-out, floatContent 4s ease-in-out infinite;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--golden);
    border-radius: 50px;
    color: var(--golden);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
    }
}

@keyframes badgeShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid var(--golden);
    color: var(--golden);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: var(--golden);
    color: var(--dark-bg);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    right: 2rem;
}

.carousel-control.next {
    left: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--golden);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--golden);
    width: 40px;
    border-radius: 10px;
}

.indicator:hover {
    background: var(--golden);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.visible {
    transform: translateX(0);
}

.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.visible {
    transform: translateX(0);
}

.slide-in-up {
    transform: translateY(50px);
}

.slide-in-up.visible {
    transform: translateY(0);
}

/* About Section */
.about-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-control.prev {
        right: 1rem;
    }
    
    .carousel-control.next {
        left: 1rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}


/* ==================== ENHANCED HOVER EFFECTS & ANIMATIONS ==================== */

/* Smooth transitions for all interactive elements */
a, button, .btn-primary, .btn-hero, .offer-card, .stat-card, .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Button Special Effect */
.btn-hero {
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn-hero:hover::after {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
    }
}

/* Offer Cards Enhanced Hover */
.offer-card {
    position: relative;
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
    z-index: 0;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.offer-card .offer-icon {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.offer-card:hover .offer-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Stat Cards Hover */
.stat-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::after {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Gallery Images Hover */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Navigation Links Hover */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--golden);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Social Links Enhanced */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--golden);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* FAB Buttons Hover */
.fab, .whatsapp-fab {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fab:hover, .whatsapp-fab:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.whatsapp-fab:hover {
    background: #128C7E;
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.5);
}

/* Carousel Controls Hover */
.carousel-control {
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: var(--golden);
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.carousel-control:active {
    transform: scale(1.1);
}

/* Indicators Hover */
.indicator {
    transition: all 0.3s ease;
}

.indicator:hover {
    transform: scale(1.3);
    background: var(--golden);
}

/* Input Fields Focus */
.input-field {
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Modal Animation */
.modal {
    animation: fadeIn 0.3s ease;
}

.modal.active .modal-content {
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

/* Ticket Animation */
.ticket {
    animation: ticketPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes ticketPop {
    0% {
        transform: scale(0.5) rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Loading Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Smooth Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.visible {
    transform: translateX(0);
}

.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.visible {
    transform: translateX(0);
}

.slide-in-up {
    transform: translateY(50px);
}

.slide-in-up.visible {
    transform: translateY(0);
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.offer-icon, .stat-card i {
    animation: float 3s ease-in-out infinite;
}

/* Shimmer Effect for Loading */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, var(--dark-light) 0%, var(--dark-bg) 50%, var(--dark-light) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Hover Effect for Table Rows */
table tr {
    transition: all 0.3s ease;
}

table tr:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.01);
}

/* Badge Pulse Animation */
.hero-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Countdown Timer Glow */
#countdown {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

/* Theme Toggle Button Hover */
#themeToggle {
    transition: all 0.3s ease;
}

#themeToggle:hover {
    transform: rotate(180deg) scale(1.2);
    background: rgba(212, 175, 55, 0.2);
}

/* Mobile Menu Button Animation */
.mobile-menu-btn {
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

/* Booking Card Mobile Hover */
.booking-card-mobile {
    transition: all 0.3s ease;
}

.booking-card-mobile:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Filter Buttons Hover */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Responsive Hover Effects - Disable on Touch Devices */
@media (hover: none) {
    .offer-card:hover,
    .stat-card:hover,
    .btn-primary:hover,
    .gallery-item:hover img {
        transform: none;
    }
}


/* ==================== ENHANCED CAROUSEL ANIMATIONS ==================== */

/* Hero Title Animation */
.hero-title {
    animation: titleReveal 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.carousel-slide.active .hero-title {
    animation: titleReveal 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), titleGlow 3s ease-in-out infinite;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 5px 30px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.4);
    }
}

/* Hero Subtitle Animation */
.hero-subtitle {
    animation: subtitleSlide 1.8s ease-out 0.3s both;
}

.carousel-slide.active .hero-subtitle {
    animation: subtitleSlide 1.8s ease-out 0.3s both;
}

@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Carousel Indicators Enhanced */
.carousel-indicators {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--golden);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--golden);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.indicator.active {
    background: var(--golden);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.indicator:hover {
    transform: scale(1.3);
    background: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Carousel Controls Enhanced */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--golden);
    color: var(--golden);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--golden);
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.carousel-control:hover::before {
    transform: scale(1);
}

.carousel-control:hover {
    color: var(--dark-bg);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
    border-color: var(--golden);
}

.carousel-control:active {
    transform: translateY(-50%) scale(1.1);
}

.carousel-control i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.carousel-control:hover i {
    transform: scale(1.2);
}

/* Slide Transition Effects */
.carousel-slide {
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Add particles effect to background */
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: particlesFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesFloat {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px);
    }
}

/* Vignette Effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .carousel-control {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control i {
        font-size: 1.2rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    @keyframes kenburnsZoom {
        0% {
            transform: scale(1.1) translate(0, 0);
        }
        100% {
            transform: scale(1.2) translate(2%, 2%);
        }
    }
}

/* Smooth transition between slides */
.carousel-slide:not(.active) {
    pointer-events: none;
}

/* Add depth with multiple layers */
.hero-content {
    transform-style: preserve-3d;
}

.hero-badge {
    transform: translateZ(30px);
}

.hero-title {
    transform: translateZ(20px);
}

.hero-subtitle {
    transform: translateZ(10px);
}

.btn-hero {
    transform: translateZ(40px);
}


/* ==================== COMPREHENSIVE RESPONSIVE DESIGN ==================== */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (max-width: 1919px) and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Laptop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        columns: 3;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 2rem;
    }
    
    /* Navbar */
    #navbar .container {
        padding: 0 1.5rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Offers */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        columns: 3;
        gap: 1rem;
    }
    
    /* Footer */
    footer .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Carousel Controls */
    .carousel-control {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control.prev {
        right: 1.5rem;
    }
    
    .carousel-control.next {
        left: 1.5rem;
    }
}

/* Tablet Portrait & Large Mobile (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    /* Navbar */
    #navbar {
        padding: 0.75rem 0;
    }
    
    #navbar .text-2xl {
        font-size: 1.5rem;
    }
    
    #navbar .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    #countdown {
        display: none !important;
    }
    
    /* Hero Section */
    .hero-section {
        height: 75vh;
        min-height: 550px;
    }
    
    .hero-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .btn-hero {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* About Section */
    .about-section .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section img {
        max-height: 300px;
        object-fit: cover;
    }
    
    /* Offers */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Gallery */
    .gallery-grid {
        columns: 2;
        gap: 0.75rem;
    }
    
    /* Footer */
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* FAB Buttons */
    .fab {
        width: 55px;
        height: 55px;
        bottom: 85px;
        right: 15px;
    }
    
    .whatsapp-fab {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    /* Carousel */
    .carousel-control {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control.prev {
        right: 1rem;
    }
    
    .carousel-control.next {
        left: 1rem;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar */
    #navbar {
        padding: 0.5rem 0;
    }
    
    #navbar .container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    #navbar .text-2xl {
        font-size: 1.3rem;
    }
    
    #navbar .btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    #navbar .btn-primary span {
        display: none;
    }
    
    #navbar .btn-primary i {
        margin: 0;
    }
    
    #themeToggle {
        padding: 0.4rem;
    }
    
    /* Hero Section */
    .hero-section {
        height: 65vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Section Padding */
    .section-padding {
        padding: 3rem 0;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* About Section */
    .about-section .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-section img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 0.95rem;
    }
    
    /* Offers */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .offer-card h3 {
        font-size: 1.3rem;
    }
    
    .offer-card .text-3xl {
        font-size: 2rem;
    }
    
    /* Gallery */
    .gallery-grid {
        columns: 1;
        gap: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 0;
    }
    
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer h3 {
        font-size: 1.3rem;
    }
    
    footer p, footer a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .input-field {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Ticket */
    .ticket {
        padding: 1.5rem;
    }
    
    .ticket-header h3 {
        font-size: 1.3rem;
    }
    
    #ticketNumber {
        font-size: 2rem;
    }
    
    /* FAB Buttons */
    .fab {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 12px;
    }
    
    .fab i {
        font-size: 1.3rem;
    }
    
    .whatsapp-fab {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-fab i {
        font-size: 1.5rem;
    }
    
    /* Carousel */
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control i {
        font-size: 1rem;
    }
    
    .carousel-control.prev {
        right: 0.75rem;
    }
    
    .carousel-control.next {
        left: 0.75rem;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Extra Small Mobile (max 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navbar */
    #navbar .text-2xl {
        font-size: 1.1rem;
    }
    
    #navbar .btn-primary {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Offers */
    .offer-card {
        padding: 1.2rem;
    }
    
    .offer-icon {
        font-size: 2.5rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 1.2rem;
    }
    
    /* FAB */
    .fab, .whatsapp-fab {
        width: 45px;
        height: 45px;
    }
    
    .fab {
        bottom: 75px;
        right: 10px;
    }
    
    .whatsapp-fab {
        bottom: 10px;
        right: 10px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-hero {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
    }
}

/* Print Styles */
@media print {
    .fab, .whatsapp-fab, #navbar, .carousel-control, .carousel-indicators {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        page-break-after: always;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
}

/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-bg {
        background-size: cover;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .slide-bg {
        animation: none !important;
    }
    
    .hero-content {
        animation: none !important;
    }
}

/* Dark Mode Preference */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) {
        --dark-bg: #0a0a0a;
        --dark-light: #1a1a1a;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn-primary, .btn-hero {
        min-height: 44px;
        min-width: 44px;
    }
    
    .carousel-control {
        min-width: 44px;
        min-height: 44px;
    }
    
    .indicator {
        min-width: 44px;
        min-height: 44px;
        padding: 15px;
    }
    
    /* Disable hover effects */
    .offer-card:hover,
    .stat-card:hover,
    .gallery-item:hover img {
        transform: none;
    }
    
    /* Remove animations that might cause performance issues */
    .slide-bg {
        animation: none;
    }
}
