/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
    background: #ffc107;
    color: #0d6efd;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    transition: left 0.2s;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    outline: 2px solid #0d6efd;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}
.video-bg video {
    width: 100vw;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero {
    position: relative;
    overflow: hidden;
}

/* Animated SVG Icons */
.icon {
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: iconPop 1.2s cubic-bezier(.77,0,.18,1);
}
@keyframes iconPop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Map Section */
.map-section {
    max-width: 1000px;
    margin: 3rem auto;
    text-align: center;
}
.map-section h2 {
    margin-bottom: 1.5rem;
}
.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Social Media Section */
.social-section {
    max-width: 700px;
    margin: 3rem auto 2rem auto;
    text-align: center;
}
.social-section h2 {
    margin-bottom: 1.2rem;
}
.social-feeds {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.social-feeds a img {
    filter: grayscale(0.2) drop-shadow(0 2px 6px #0d6efd22);
    transition: filter 0.2s, transform 0.2s;
}
.social-feeds a:hover img {
    filter: none;
    transform: scale(1.15) rotate(-5deg);
}
/* Gallery Section */
.gallery-section {
    max-width: 1000px;
    margin: 3rem auto;
    text-align: center;
}
.gallery-section h2 {
    margin-bottom: 1.5rem;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.gallery img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.gallery img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(13,110,253,0.18);
}

/* Testimonials Section */
.testimonials-section {
    background: #f1f3f5;
    padding: 3rem 1rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonials-section h2 {
    margin-bottom: 2rem;
}
.testimonials blockquote {
    font-size: 1.15rem;
    color: #0d6efd;
    background: #fff;
    border-left: 4px solid #ffc107;
    margin: 1rem auto 2rem auto;
    padding: 1.2rem 2rem 1rem 1.5rem;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    position: relative;
}
.testimonials blockquote span {
    display: block;
    color: #222;
    font-size: 0.98rem;
    margin-top: 0.7rem;
}

/* Newsletter Section */
.newsletter-section {
    max-width: 500px;
    margin: 3rem auto 4rem auto;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-align: center;
}
.newsletter-section h2 {
    margin-bottom: 1.2rem;
}
.newsletter-form {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
}
.newsletter-form input[type="email"] {
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    flex: 1;
}
.newsletter-form button {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #ffc107;
    color: #0d6efd;
}
/* Dark Mode Styles */
body.dark-mode {
    background: #181c24;
    color: #f1f3f5;
}
body.dark-mode nav {
    background: #232a36;
    color: #fff;
}
body.dark-mode nav ul li a {
    color: #fff;
}
body.dark-mode nav ul li a:hover {
    color: #ffc107;
}
body.dark-mode .hero,
body.dark-mode .parallax-bg {
    background: linear-gradient(rgba(35,42,54,0.85), rgba(35,42,54,0.85)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: #fff;
}
body.dark-mode .features,
body.dark-mode .contact-container,
body.dark-mode .blog-container {
    background: #232a36;
    color: #f1f3f5;
}
body.dark-mode .feature {
    background: #232a36;
    color: #f1f3f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
body.dark-mode .contact-info {
    background: #232a36;
    color: #f1f3f5;
}
body.dark-mode footer {
    background: #232a36;
    color: #fff;
}
body.dark-mode .cta-btn {
    background: #ffc107;
    color: #232a36;
}
body.dark-mode .cta-btn:hover {
    background: #fff;
    color: #232a36;
}

/* Parallax background for hero and main containers */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* 🔥 MIND-BLOWING DESTINATION CARDS CSS */
.destinations-showcase {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}
.destinations-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    animation: float 20s infinite linear;
}
@keyframes float { from { transform: translateX(0); } to { transform: translateX(100px); } }

.section-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.floating-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    transform: translateY(0) scale(1);
}
.destination-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.destination-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
}

.weather-widget {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-content {
    padding: 1.5rem;
}
.card-content h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: #333;
}
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0d6efd;
    margin: 0 0 0.5rem 0;
}
.description {
    color: #666;
    margin: 0 0 1rem 0;
}
.card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.hover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(13,110,253,0.9), rgba(255,193,7,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.destination-card:hover .hover-overlay {
    opacity: 1;
}

.book-now-btn {
    background: white;
    color: #0d6efd;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.destination-card:hover .book-now-btn {
    transform: scale(1);
}

/* 🌟 FLIGHT DEALS TICKER */
.flight-deals {
    background: #1a1a2e;
    color: white;
    padding: 2rem 0;
    overflow: hidden;
}
.flight-deals .section-title {
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.deals-container {
    position: relative;
    overflow: hidden;
}
.deal-ticker {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}
.deal-item {
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 250px;
    text-align: center;
    flex-shrink: 0;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* 💫 TESTIMONIAL CAROUSEL MAGIC */
.testimonials-carousel {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 2rem;
    overflow: hidden;
    position: relative;
}
.testimonials-carousel::before {
    content: '✈️🌍🏖️🗼🌸';
    position: absolute;
    top: -50px; left: -100px; right: -100px; bottom: -50px;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatIcons 25s infinite linear;
    pointer-events: none;
}
@keyframes floatIcons {
    from { transform: translateX(-100%) rotate(0deg); }
    to { transform: translateX(100%) rotate(360deg); }
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-content {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    max-width: 600px;
}
.testimonial-content::before {
    content: '"';
    font-size: 8rem;
    color: #0d6efd;
    position: absolute;
    top: -20px; left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.client-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffc107;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: #333;
    font-style: italic;
}

.client-info h4 {
    margin: 0 0 0.5rem 0;
    color: #0d6efd;
    font-size: 1.3rem;
}
.client-info p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #0d6efd;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13,110,253,0.3);
}
.carousel-btn:hover {
    background: #ffc107;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}
.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.indicator.active {
    background: #0d6efd;
    transform: scale(1.2);
}

/* 🤖 FLOATING ASSISTANT MAGIC */
.floating-assistant {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 1000;
    cursor: pointer;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.assistant-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    animation: rotate 3s linear infinite;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.assistant-face {
    font-size: 2rem;
    background: linear-gradient(45deg, #00d4ff, #ffd700);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,212,255,0.3);
    position: relative;
    z-index: 1;
    animation: beachPulse 2s infinite;
}
@keyframes beachPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(0,212,255,0.3); }
    50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(255,215,0,0.4); }
}

.assistant-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    width: 250px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.floating-assistant:hover .assistant-popup {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.assistant-popup h4 {
    margin: 0 0 0.5rem 0;
    color: #0d6efd;
}
.assistant-popup p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.quick-actions button {
    background: linear-gradient(45deg, #0d6efd, #ffc107);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.quick-actions button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 🌤️ REVOLUTIONARY WEATHER SYSTEM */
.weather-system {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.weather-system::before {
    content: '☁️🌤️⛅🌦️🌈';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    font-size: 4rem;
    opacity: 0.1;
    animation: weatherFloat 20s infinite linear;
    pointer-events: none;
}
@keyframes weatherFloat {
    from { transform: translateX(-100%) rotate(0deg); }
    to { transform: translateX(100%) rotate(360deg); }
}

.weather-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.weather-control {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: end;
}

.destination-picker, .month-picker {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.destination-picker label, .month-picker label {
    font-weight: bold;
    font-size: 1.1rem;
}
.destination-picker select, .month-picker select {
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
}

.weather-btn {
    background: linear-gradient(45deg, #ffc107, #ff6b6b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    height: fit-content;
}
.weather-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.weather-display {
    max-width: 600px;
    margin: 0 auto;
}

.weather-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.weather-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.weather-info h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}
.temperature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.temp-high {
    font-size: 2rem;
    font-weight: bold;
    color: #ffc107;
}
.temp-low {
    font-size: 1.5rem;
    opacity: 0.8;
}
.weather-desc {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}
.weather-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

/* ✈️ FLYING ANIMATIONS - ABSOLUTE MAGIC! */
.flying-animations {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.airplane {
    position: absolute;
    font-size: 2rem;
    animation: flyAcross 15s infinite linear;
    opacity: 0.7;
}
.airplane1 {
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}
.airplane2 {
    top: 60%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.luggage {
    position: absolute;
    font-size: 1.5rem;
    animation: rollAcross 20s infinite linear;
    opacity: 0.6;
}
.luggage1 {
    bottom: 20%;
    animation-delay: 3s;
}
.luggage2 {
    bottom: 40%;
    animation-delay: 12s;
    animation-duration: 25s;
}

.travel-icon {
    position: absolute;
    font-size: 1.8rem;
    animation: floatAround 25s infinite ease-in-out;
    opacity: 0.5;
}
.icon1 {
    top: 30%;
    animation-delay: 2s;
}
.icon2 {
    top: 70%;
    animation-delay: 8s;
    animation-duration: 30s;
}
.icon3 {
    top: 50%;
    animation-delay: 15s;
    animation-duration: 20s;
}

@keyframes flyAcross {
    0% { transform: translateX(-100px) rotate(0deg); }
    100% { transform: translateX(calc(100vw + 100px)) rotate(360deg); }
}

@keyframes rollAcross {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes floatAround {
    0%, 100% { transform: translateX(-50px) translateY(0px) rotate(0deg); }
    25% { transform: translateX(25vw) translateY(-50px) rotate(90deg); }
    50% { transform: translateX(75vw) translateY(0px) rotate(180deg); }
    75% { transform: translateX(50vw) translateY(50px) rotate(270deg); }
}

/* 🎨 ENHANCED FOOTER */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
}
.footer-section h3, .footer-section h4 {
    color: #ffc107;
    margin-bottom: 1rem;
}
.footer-section p {
    margin: 0.5rem 0;
}
.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #ffc107;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    min-height: 100vh;
    overflow-x: hidden;
    animation: fadeInBody 1.2s ease;
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d6efd;
    color: #fff;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
    animation: slideDownNav 1s cubic-bezier(.77,0,.18,1) 0.2s both;
}

@keyframes slideDownNav {
    from {
        transform: translateY(-60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: popInLogo 1.2s cubic-bezier(.77,0,.18,1) 0.7s both;
}

@keyframes popInLogo {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
    overflow: hidden;
}
nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}
nav ul li a:hover {
    color: #ffc107;
}
nav ul li a:hover::after {
    width: 100%;
}
/* Hero Section Animation */
.hero {
    background: linear-gradient(rgba(13,110,253,0.7), rgba(13,110,253,0.7)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem 4rem 2rem;
    animation: fadeInHero 1.3s cubic-bezier(.77,0,.18,1) 0.5s both;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideUpTitle 1.1s cubic-bezier(.77,0,.18,1) 1s both;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInText 1.2s cubic-bezier(.77,0,.18,1) 1.3s both;
}
.cta-btn {
    background: #ffc107;
    color: #0d6efd;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    animation: popInBtn 1.1s cubic-bezier(.77,0,.18,1) 1.6s both;
}
.cta-btn:hover {
    background: #fff;
    color: #0d6efd;
    transform: scale(1.08);
}

@keyframes slideUpTitle {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes popInBtn {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
/* Features Animation */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #fff;
    animation: fadeInFeatures 1.2s cubic-bezier(.77,0,.18,1) 2s both;
}
.feature {
    background: #f1f3f5;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 220px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: featurePop 0.9s cubic-bezier(.77,0,.18,1) forwards;
}
.feature:nth-child(1) { animation-delay: 2.2s; }
.feature:nth-child(2) { animation-delay: 2.4s; }
.feature:nth-child(3) { animation-delay: 2.6s; }

@keyframes fadeInFeatures {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes featurePop {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
footer {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    animation: fadeInFooter 1.2s cubic-bezier(.77,0,.18,1) 3s both;
}

@keyframes fadeInFooter {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Contact Page */
/* Contact Page Animation */
.contact-container {
    max-width: 900px;
    margin: 3rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    animation: fadeInContact 1.2s cubic-bezier(.77,0,.18,1) 0.7s both;
}
.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInForm 1.1s cubic-bezier(.77,0,.18,1) 1.2s both;
}
.contact-form label {
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: box-shadow 0.2s, border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #0d6efd;
    box-shadow: 0 0 0 2px #0d6efd22;
}
.contact-form button {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    animation: popInBtn 1.1s cubic-bezier(.77,0,.18,1) 1.7s both;
}
.contact-form button:hover {
    background: #ffc107;
    color: #0d6efd;
    transform: scale(1.06);
}
.contact-info {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInInfo 1.1s cubic-bezier(.77,0,.18,1) 1.5s both;
}

@keyframes fadeInContact {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInForm {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInInfo {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Blog Page */
/* Blog Page Animation */
.blog-container {
    max-width: 900px;
    margin: 3rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    animation: fadeInBlog 1.2s cubic-bezier(.77,0,.18,1) 0.7s both;
}
.blog-post {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
    animation: blogPop 1s cubic-bezier(.77,0,.18,1) forwards;
}
.blog-post:nth-child(2) { animation-delay: 1.2s; }
.blog-post:nth-child(3) { animation-delay: 1.4s; }
.blog-post:nth-child(4) { animation-delay: 1.6s; }
.blog-post h2 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
    animation: fadeInText 1.2s cubic-bezier(.77,0,.18,1) 1.1s both;
}
.blog-post .date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    animation: fadeInText 1.2s cubic-bezier(.77,0,.18,1) 1.2s both;
}

@keyframes fadeInBlog {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes blogPop {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🎨 SPECTACULAR BLOG PAGE REDESIGN */
.blog-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 3rem;
    border-radius: 0 0 50px 50px;
}
.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.blog-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.featured-category {
    margin-bottom: 4rem;
    padding: 0 2rem;
}
.featured-category h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #0d6efd, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 2rem;
}
.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.blog-content .date {
    color: #0d6efd;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Category-specific colors */
.blog-card.luxury { border-left: 5px solid #ffd700; }
.blog-card.girls { border-left: 5px solid #ff69b4; }
.blog-card.bachelor { border-left: 5px solid #4169e1; }
.blog-card.family { border-left: 5px solid #32cd32; }
.blog-card.corporate { border-left: 5px solid #800080; }

/* ✨ CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.service-tag {
    background: linear-gradient(45deg, #0d6efd, #ffc107);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.service-tag:hover {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #0d6efd, #ffc107);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* 🌍 DESTINATION EXPLORER SLIDER */
.destination-explorer {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
    position: relative;
}

.destination-slider {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.destination-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.destination-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 3rem 2rem 2rem;
    color: white;
    text-align: center;
}
.slide-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.slide-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.explore-btn {
    background: linear-gradient(45deg, #ffc107, #ff6b6b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.explore-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}
.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #ffc107;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255,193,7,0.5);
}
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-container {
        flex-direction: column;
    }
}