/* Lamha Kashmir - Clean & Beautiful Styles */

:root {
    --primary-color: #0f3d2e;
    --secondary-color: #3fa9f5;
    --accent-color: #f5b642;
    --white: #ffffff;
    --mist-gray: #f4f6f5;
    --dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============ NAVBAR ============ */
#mainNav {
    background: rgba(15, 61, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 9999;
}

#mainNav.scrolled {
    background: rgba(15, 61, 46, 1);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

#mainNav.scrolled .logo-img {
    height: 45px;
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.95) !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ============ HERO SECTION ============ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 120px 15px 60px;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 25px rgba(0,0,0,0.4);
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--accent-color) !important;
    border: none;
    color: var(--dark) !important;
}

.btn-primary:hover {
    background: #d9a538 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 182, 66, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white !important;
    background: transparent;
}

.btn-outline-light:hover {
    background: white !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* ============ SEARCH BOX ============ */
.search-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 950px;
    margin: 0 auto;
    border: 2px solid rgba(255,255,255,0.5);
    animation: fadeInUp 1.6s ease;
    position: relative;
    z-index: 101;
}

.search-box .form-select,
.search-box .btn {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-box .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(63, 169, 245, 0.25);
}

.search-box .btn-primary {
    background: var(--primary-color) !important;
    border: none;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-box .btn-primary:hover {
    background: #0d3326 !important;
    transform: translateY(-2px);
}

/* ============ PLANE ANIMATION ============ */
.plane-animation {
    position: absolute;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.3);
    animation: flyPlane 25s linear infinite;
    z-index: 50;
    filter: drop-shadow(2px 2px 10px rgba(0,0,0,0.3));
}

@keyframes flyPlane {
    0% {
        left: -150px;
        top: 15%;
        opacity: 0;
        transform: rotate(-15deg);
    }
    10% {
        opacity: 1;
    }
    50% {
        top: 65%;
        transform: rotate(5deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 150px);
        top: 25%;
        opacity: 0;
        transform: rotate(15deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ NAVBAR ============ */
#mainNav {
    background: rgba(15, 61, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 9999;
}

#mainNav.scrolled {
    background: rgba(15, 61, 46, 1);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

#mainNav.scrolled .logo-img {
    height: 55px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin-left: 15px;
}

#mainNav.scrolled .brand-text {
    font-size: 1.5rem;
}

.navbar-brand:hover .brand-text {
    color: var(--accent-color);
    text-shadow: 2px 2px 12px rgba(245, 182, 66, 0.4);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.95) !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .logo-img {
        height: 55px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .navbar-nav {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.2rem;
        margin-left: 10px;
    }
}


/* ============ SECTIONS ============ */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============ TOUR CARDS ============ */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 25px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.horizontal-scroll:active {
    cursor: grabbing;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 10px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #0d3326;
}

.tour-card {
    min-width: 340px;
    max-width: 360px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.tour-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tour-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover .tour-image::before {
    opacity: 1;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.tour-info {
    padding: 25px;
}

.tour-info h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.tour-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.tour-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.tour-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.book-now-btn {
    background: var(--secondary-color) !important;
    color: white !important;
    border: none;
}

.book-now-btn:hover {
    background: #2d8dcc !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(63, 169, 245, 0.4);
}

/* ============ WHY CHOOSE SECTION ============ */
.why-choose-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5f47 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.feature-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box i {
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-box p {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============ DESTINATION CARDS ============ */
.destination-card {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(15,61,46,0.7) 0%, rgba(0,0,0,0.9) 100%);
}

.destination-overlay h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.destination-overlay .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.1s;
}

.destination-card:hover .destination-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SERVICE CARDS ============ */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.service-card i {
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d8dcc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
    margin: 0 auto;
    max-width: 750px;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(255,255,255,0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 25px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-style: italic;
    margin: 25px 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-card h5 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* ============ CTA SECTION ============ */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 61, 46, 0.85);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.cta-section .btn {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* ============ FOOTER ============ */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-section h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-contact {
    padding: 0;
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark);
    transform: translateY(-5px) rotate(360deg);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    color: white;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    }
}

/* ============ MODAL ============ */
.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5f47 100%);
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 61, 46, 0.15);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 61, 46, 0.98);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        padding: 12px 15px;
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 15px 40px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .search-box {
        padding: 20px 15px;
    }
    
    .tour-card {
        min-width: 280px;
    }
    
    .destination-card {
        height: 250px;
    }
    
    .plane-animation {
        font-size: 2rem;
        display: none;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 8px 0;
    }
    
    .search-box .btn {
        width: 100%;
    }
    
    .tour-buttons {
        flex-direction: column;
    }
    
    .tour-buttons .btn {
        width: 100%;
    }
}

/* ============ UTILITY CLASSES ============ */
.bg-light {
    background-color: var(--mist-gray) !important;
}

.text-muted {
    color: #6c757d !important;
}
