* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #EB8B6F;
    --primary-gradient: linear-gradient(135deg, #EB8B6F 0%, #E87A5D 100%);
    --secondary-color: #2F5D62;
    --secondary-gradient: linear-gradient(135deg, #2F5D62 0%, #3A7277 100%);
    --accent-color: #F4C27E;
    --accent-gradient: linear-gradient(135deg, #F4C27E 0%, #F0B86E 100%);
    --text-dark: #2F5D62;
    --text-light: #5A7C80;
    --bg-light: #F5F5F0;
    --bg-cream: #FAF8F3;
    --shadow-sm: 0 2px 10px rgba(47, 93, 98, 0.08);
    --shadow-md: 0 10px 30px rgba(47, 93, 98, 0.12);
    --shadow-lg: 0 10px 30px rgba(47, 93, 98, 0.18);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #ffffff 100%);
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

.logo {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.btn-login:hover {
    color: var(--primary-color);
}

.btn-signup {
    padding: 0.6rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 139, 111, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: clamp(80px, 15vw, 100px);
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 3rem);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease;
}

.hero-text p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.btn-primary {
    padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.8rem, 4vw, 2.5rem);
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(235, 139, 111, 0.4);
}

.hero-images {
    position: relative;
    height: clamp(420px, 52vw, 500px);
    min-height: 380px;
}

.image-card {
    position: absolute;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    will-change: transform;
}

.image-card:hover {
    transform: scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-1 {
    width: min(220px, 40%);
    height: min(260px, 52%);
    top: 0;
    left: 8%;
    z-index: 4;
    animation: fadeInLeft 0.8s ease;
}

.card-2 {
    width: min(220px, 40%);
    height: min(260px, 52%);
    top: 0;
    right: 0;
    z-index: 3;
    animation: fadeInRight 0.8s ease 0.2s backwards;
}

.card-3 {
    width: min(220px, 40%);
    height: min(260px, 52%);
    bottom: 0;
    left: 0;
    z-index: 2;
    animation: fadeInLeft 0.8s ease 0.4s backwards;
}

.card-4 {
    width: min(220px, 40%);
    height: min(260px, 52%);
    bottom: 0;
    right: 12%;
    z-index: 1;
    animation: fadeInRight 0.8s ease 0.6s backwards;
}

.location-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.65rem, 1.4vw, 0.75rem);
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.location-badge svg {
    width: 12px;
    height: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Why Choose Section */
.why-choose {
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-choose h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-circle {
    width: clamp(70px, 12vw, 80px);
    height: clamp(70px, 12vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.icon-circle.purple {
    background: var(--primary-gradient);
}

.feature-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Destinations */
.destinations {
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
}

.destinations h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 3/4;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.badge-hot {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.75rem, 2vw, 0.8rem);
    font-weight: 600;
    z-index: 2;
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.destination-info h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.destination-info p {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-explore {
    padding: clamp(0.5rem, 2vw, 0.6rem) clamp(1rem, 3vw, 1.5rem);
    background: var(--secondary-gradient);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(47, 93, 98, 0.4);
}

/* National Destinations */
.destination-grid-national {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.destination-card-national {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.destination-card-national:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-card-national img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card-national:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.testimonials-left h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    opacity: 0.5;
    align-items: center;
}

.partner-logos img {
    height: clamp(28px, 4vw, 35px);
    object-fit: contain;
    filter: grayscale(100%);
}

.testimonials-right {
    position: relative;
}

.testimonial-card {
    background: transparent;
    position: relative;
}

.testimonial-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-box {
    background: #f5f5f5;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    position: relative;
    flex: 1;
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.testimonial-location svg {
    width: 16px;
    height: 16px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: var(--text-dark);
}

.stars {
    color: #ffc107;
    font-size: clamp(0.9rem, 2vw, 1rem);
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-nav {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.nav-arrow svg {
    stroke: currentColor;
}

/* Contact Section */
.contact-section {
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    background: var(--primary-gradient);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    width: clamp(200px, 30vw, 300px);
    height: clamp(200px, 30vw, 300px);
    background: rgba(244, 194, 126, 0.15);
    border-radius: 50%;
    bottom: -50%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.contact-content::after {
    content: '';
    position: absolute;
    width: clamp(150px, 25vw, 250px);
    height: clamp(150px, 25vw, 250px);
    background: rgba(244, 194, 126, 0.1);
    border-radius: 50%;
    top: -30%;
    right: -5%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.contact-content h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-content p {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact {
    padding: clamp(1rem, 2.5vw, 1.2rem) clamp(2rem, 4vw, 3rem);
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem) clamp(1.5rem, 3vw, 2rem);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-column h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

/* Desktop/Mobile Button Visibility */
.mobile-buttons {
    display: none;
}

.desktop-buttons {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .destination-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .testimonials-left {
        text-align: center;
    }
    
    .partner-logos {
        justify-content: center;
    }
    
    .testimonial-content {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-avatar img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .desktop-buttons {
        display: none;
    }
    
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #eee;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin-bottom: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .mobile-buttons .btn-login,
    .mobile-buttons .btn-signup {
        width: 100%;
        text-align: center;
        display: block;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-images {
        order: -1;
        height: 380px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .card-1,
    .card-2,
    .card-3,
    .card-4 {
        width: 44%;
        height: 46%;
    }
    
    .card-1 {
        top: 0;
        left: 2%;
    }
    
    .card-2 {
        top: 0;
        right: 0;
    }
    
    .card-3 {
        bottom: 0;
        left: 0;
    }
    
    .card-4 {
        bottom: 5%;
        right: 8%;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-grid-national {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-images {
        height: 340px;
    }
    
    .card-1,
    .card-2,
    .card-3,
    .card-4 {
        width: 46%;
        height: 48%;
    }
    
    .card-1 {
        left: 0;
    }
    
    .card-4 {
        right: 5%;
    }
    
    .location-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.65rem;
    }
    
    .location-badge svg {
        width: 10px;
        height: 10px;
    }
    
    .icon-badge {
        width: 40px;
        height: 40px;
    }
    
    .icon-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .features {
        gap: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem 0.5rem;
    }
    
    .partner-logos {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-grid-national {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .destination-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    header,
    .newsletter,
    footer {
        display: none;
    }
    
    body {
        background: white;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* Smooth Transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Image Loading State */
img {
    background: #f0f0f0;
}

img[data-src] {
    filter: blur(5px);
    transition: filter 0.3s;
}

img:not([data-src]) {
    filter: blur(0);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .destination-card:hover,
    .feature-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-explore:hover,
    .btn-signup:hover {
        transform: none;
    }
}
