/* Ezzyair. US - Enhanced Dark Luxury Theme */
:root {
    --primary-color: #C6A45C;
    --secondary-color: #1E1E1E;
    --text-color: #FFFFFF;
    --background-color: #0F0F0F;
    --card-bg: #1E1E1E;
    --hover-color: #D4B36B;
    --accent-color: #E5C986;
    --gradient-primary: linear-gradient(135deg, #C6A45C, #E5C986);
    --gradient-secondary: linear-gradient(135deg, #1E1E1E, #2A2A2A);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 0; /* Remove padding, we'll handle spacing differently */
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(28, 28, 28, 0.95);
    box-shadow: 0 2px 15px rgba(198, 164, 92, 0.2);
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 164, 92, 0.1);
    box-sizing: border-box;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

/* Hide mobile contact on desktop */
.mobile-contact {
    display: none !important;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(198, 164, 92, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary-color);
    background-color: rgba(198, 164, 92, 0.1);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.phone-number i {
    color: var(--primary-color);
}

.call-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 164, 92, 0.4);
}

/* Hero section styles */
.hero {
    height: 100vh;
    padding-top: 90px; /* Add padding to account for fixed navbar */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/2026324/pexels-photo-2026324.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(198, 164, 92, 0.1), rgba(229, 201, 134, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-subtitle {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Search container styles */
.search-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0); /* Force hardware acceleration */
    -webkit-transform: translateZ(0);
}

.search-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

.search-form {
    color: var(--secondary-color);
}

.search-form.hidden {
    display: none;
}

.search-type {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    accent-color: var(--primary-color);
}

.search-inputs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem;
    transition: border-color 0.2s ease;
}

.search-input:focus-within {
    border-color: var(--primary-color);
}

.search-input i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.search-input input,
.search-input select {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    color: var(--secondary-color);
    background: transparent;
}

.search-input input::placeholder {
    color: #999;
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    margin: 0 auto;
    display: block;
}

.search-btn:hover {
    box-shadow: 0 5px 20px rgba(198, 164, 92, 0.3);
}

/* Destinations section */
.destinations {
    padding: 5rem 5%;
    background: var(--background-color);
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(198, 164, 92, 0.1);
    will-change: transform;
}

.destination-card:hover {
    box-shadow: 0 20px 40px rgba(198, 164, 92, 0.2);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.destination-info p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 164, 92, 0.4);
}

/* Offers section */
.offers {
    padding: 5rem 5%;
    background: var(--gradient-secondary);
}

.offers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::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);
    transition: transform 0.6s ease;
}

.offer-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.offer-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.offer-content .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.offer-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Services section */
.services {
    padding: 5rem 5%;
    background: var(--background-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(198, 164, 92, 0.1);
    will-change: transform;
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(198, 164, 92, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--gradient-secondary);
    padding: 3rem 5% 1rem;
    border-top: 1px solid rgba(198, 164, 92, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--hover-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(198, 164, 92, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design - Enhanced Mobile Optimization */
@media (max-width: 768px) {
    .navbar {
        position: static; /* Remove fixed positioning on mobile */
        flex-direction: row;
        padding: 0.75rem 1rem;
        background-color: rgba(28, 28, 28, 0.98);
        z-index: 9997; /* Ensure navbar creates proper stacking context */
        position: relative; /* Need position for z-index to work */
    }
    
    .nav-left {
        flex: 1;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        z-index: 9998; /* Ensure proper stacking context */
    }
    
    .nav-right {
        display: flex;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop nav-contact on mobile */
    .nav-contact {
        display: none;
    }
    
    .nav-links {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(198, 164, 92, 0.2);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        gap: 0;
        list-style: none;
        margin: 0;
        z-index: 9999; /* Much higher z-index to appear above all content */
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin-bottom: 0.5rem;
    }
    
    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 8px;
        transition: all 0.2s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-links li a:hover {
        background-color: rgba(198, 164, 92, 0.15);
        transform: translateX(5px);
    }
    
    .mobile-contact {
        display: flex !important;
    }
    
    .nav-links .mobile-contact {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(198, 164, 92, 0.2);
    }
    
    .nav-links .mobile-contact .phone-number {
        color: var(--text-color);
        font-size: 0.9rem;
    }
    
    .nav-links .mobile-contact .call-btn {
        width: 80%;
        text-align: center;
        padding: 0.75rem;
        margin: 0;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
    
    .call-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        margin: 0;
    }
    
    .call-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 100vh;
        padding-top: 1rem; /* Minimal padding since navbar is now static */
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .search-container {
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 15px;
    }
    
    .search-tabs {
        flex-direction: row;
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .search-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .search-inputs-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .search-input {
        padding: 0.6rem;
        border-radius: 8px;
    }
    
    .search-input i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .search-input input,
    .search-input select {
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        border-radius: 20px;
        width: 100%;
    }
    
    .destinations,
    .offers,
    .services {
        padding: 2rem 1rem;
    }
    
    .destinations h2,
    .offers h2,
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .destination-grid,
    .offers-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card,
    .offer-card,
    .service-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .destination-card img {
        height: 200px;
    }
    
    .destination-info,
    .offer-content {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        position: relative; /* Need position for z-index */
        padding: 0.5rem 1rem;
        z-index: 9997; /* Consistent z-index */
    }
    
    .nav-left {
        flex: 1;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
    }
    
    /* Hide desktop contact on small mobile */
    .nav-contact {
        display: none;
    }
    
    .hero {
        height: 100vh;
        padding-top: 1rem; /* Minimal padding since navbar is static */
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .search-container {
        padding: 0.75rem;
        margin: 1rem 0.5rem 0;
    }
    
    .search-tabs {
        margin-bottom: 1rem;
    }
    
    .tab-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.25rem;
    }
    
    .tab-btn i {
        font-size: 0.9rem;
    }
    
    .search-input {
        padding: 0.5rem;
    }
    
    .search-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .destinations,
    .offers,
    .services {
        padding: 1.5rem 0.75rem;
    }
    
    .destinations h2,
    .offers h2,
    .services h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .destination-grid,
    .offers-grid,
    .services-grid {
        gap: 1rem;
    }
    
    .destination-info h3,
    .offer-content h3,
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .destination-info p,
    .offer-content p,
    .service-card p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card i {
        font-size: 2rem;
    }
}

/* Touch-friendly enhancements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .tab-btn,
    .search-btn,
    .btn,
    .call-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve tap highlighting */
    .tab-btn,
    .search-btn,
    .btn,
    .call-btn,
    .nav-links a {
        -webkit-tap-highlight-color: rgba(198, 164, 92, 0.3);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Smooth scrolling for mobile */
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Extra padding for very small phones */
@media (max-width: 380px) {
    .hero {
        padding-top: 1rem; /* Simple padding since navbar is static */
    }
    
    .navbar {
        position: relative; /* Need position for z-index */
        padding: 0.5rem 0.75rem;
        z-index: 9997; /* Consistent z-index */
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cascadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Remove automatic animation, will be controlled by JavaScript */
.destination-card,
.offer-card,
.service-card {
    opacity: 1; /* Default to visible */
    transform: translateY(0) scale(1); /* Default to normal position */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Only hide cards when JavaScript is available and ready */
.js-loaded .destination-card,
.js-loaded .offer-card,
.js-loaded .service-card {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.destination-card.animate-in,
.offer-card.animate-in,
.service-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Optimize hover animations to prevent conflicts */
.destination-card:hover,
.offer-card:hover,
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card.animate-in:hover,
.offer-card.animate-in:hover,
.service-card.animate-in:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Hidden class utility */
.hidden {
    display: none !important;
}

/* Fallback for users with JavaScript disabled */
noscript .destination-card,
noscript .offer-card,
noscript .service-card {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Touch-friendly improvements for small mobile devices */
@media (max-width: 480px) {
    .search-tabs {
        gap: 0.25rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        min-height: 44px;
        flex: 1;
        min-width: 80px;
    }
    
    .search-form input,
    .search-form select,
    .search-form button {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta {
        padding: 3rem 1rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}
