@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* === PRIMARY BRAND COLORS === */
    --brand-orange: #ea580c; /* Vibrant Orange matching logo */
    --brand-green: #16a34a; /* Vibrant Green matching logo */

    /* === THEME ACCENT === */
    --primary: #16a34a; /* Green */
    --primary-light: #dcfce7; /* Light Green */
    --primary-dark: #15803d; /* Dark Green */

    /* === BACKGROUNDS === */
    --bg-gradient: linear-gradient(160deg, #fdfbf7 0%, #f9f5f0 40%, #f3ece4 100%);
    --bg-light: #f9f5f0;
    --white: #ffffff;

    /* === DARK / TEXT === */
    --secondary: #064e3b; /* Very Dark Green */
    --secondary-light: #065f46;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-light: #94a3b8;

    /* === MISC === */
    --border: #bbf7d0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;

    --shadow-sm: 0 2px 10px rgba(14, 165, 233, 0.08);
    --shadow-md: 0 5px 20px rgba(14, 165, 233, 0.14);
}

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

body {
    font-family: var(--font-body);
    font-size: 13px;
    /* Reduced from 14px */
    font-weight: 400;
    /* Ensuring normal weight */
    line-height: 1.5;
    /* Reduced from 1.6 */
    color: var(--text-body);
    background: var(--bg-gradient);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 500;
    /* Reduced from 600 */
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ea580c 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
    color: #ffffff;
    padding: 7px 0;
    font-size: 13px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left span i {
    color: var(--brand-orange);
}

.topbar-right {
    display: flex;
    gap: 15px;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.topbar-right a:hover {
    color: var(--brand-orange);
}

/* Header & Nav */
.header {
    background: #ffffff;
    padding: 0;
    height: 64px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo span {
    color: var(--primary);
}

.main-nav>ul {
    display: flex;
    gap: 30px;
}

.main-nav>ul>li>a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding-bottom: 3px;
    text-decoration: none;
}

.main-nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-nav>ul>li>a:hover::after,
.main-nav>ul>li>a.active::after {
    width: 100%;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>a.active {
    color: var(--brand-orange);
}

/* Dropdown hover */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .search-btn {
    color: var(--secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.header-actions .search-btn:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 22px;
    cursor: pointer;
}

/* Utility */
.section-padding {
    padding: 30px 0;
    /* Reduced from 50px */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #0c1a2e 0%, #0e2a4a 60%, #0c2340 100%);
    color: rgba(255, 255, 255, 0.75);
    border-top: 3px solid var(--primary);
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--brand-orange) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.newsletter-text h3 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    outline: none;
    font-family: var(--font-body);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    color: var(--white);
}

.footer-about {
    margin: 20px 0;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter-wrap {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 160px;
    min-height: 650px;
    background-color: #f8f9fa;
    /* Fallback color */
    overflow: hidden;
}

/* Dynamic Carousel Styles */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    display: none;
    /* Removed the dark overlay to match the bright design */
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

/* Carousel Arrow Overrides */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    box-shadow: var(--shadow-md);
    color: var(--secondary);
    font-size: 20px;
    z-index: 5;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary);
    color: var(--white);
    opacity: 1;
}

.carousel-indicators {
    bottom: 40px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #cbd5e1 !important;
    margin: 0 4px !important;
    border: none !important;
    opacity: 1 !important;
}

.carousel-indicators button.active {
    background-color: var(--primary) !important;
    width: 20px !important;
    border-radius: 10px !important;
}

/* Fallback static background if no banners uploaded */
.hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1512100356356-de1b84283e18?auto=format&fit=crop&w=2560&q=100');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero .container {
    z-index: 1;
    /* Keep content above the carousel and overlay */
}

.hero-content {
    max-width: 600px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #072b42;
    /* Exact dark navy color from reference */
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ea580c 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
}

/* Search Widget */
.search-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 15px 15px 30px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.18);
    border: 1.5px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: -180px auto 60px;
    position: relative;
    z-index: 10;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
    border-right: 1px solid var(--border);
}

.search-field:nth-last-child(2) {
    border-right: none;
}

.search-field-icon {
    font-size: 20px;
    color: var(--primary);
}

.search-field-input label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 2px;
    font-weight: 500;
}

.search-field-input input,
.search-field-input select {
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    width: 100%;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
}

.search-btn {
    flex-shrink: 0;
}

.search-btn .btn {
    padding: 14px 30px;
    font-size: 15px;
    border-radius: var(--radius-full);
}

/* Features Strip */
.features-strip {
    padding: 40px 0;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-bottom: 1.5px solid var(--primary-light);
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
}

/* Package Card */
.package-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    border-radius: 12px 12px 0 0;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ea580c 100%);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-heading);
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.4);
}

.package-body {
    padding: 20px;
}

.package-location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.package-title a {
    color: var(--text-dark);
}

.package-title a:hover {
    color: var(--primary);
}

.package-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
    font-size: 14px;
}

.package-rating {
    color: #ffa800;
    font-size: 13px;
}

.package-amenities {
    display: flex;
    gap: 10px;
    color: var(--text-light);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-footer .btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-light) 60%, var(--bg-gradient) 100%);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.offer-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.offer-subtitle {
    color: var(--brand-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.offer-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.offer-image {
    position: absolute;
    right: 0;
    bottom: -20px;
    height: 120%;
    z-index: 1;
}

/* Destinations */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.destination-item {
    text-align: center;
}

.destination-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.2);
    position: relative;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.destination-item:hover .destination-img img {
    transform: scale(1.1);
}

.destination-item h4 {
    font-size: 18px;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 18px rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.16);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 13px;
}

.testimonial-rating {
    color: #ffa800;
    font-size: 12px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-body);
}

/* Blogs */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.14);
}

.blog-img {
    height: 200px;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--brand-green) 0%, #16a34a 100%);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    margin-top: 15px;
}

.blog-readmore:hover {
    gap: 10px;
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offer-banner {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .offer-image {
        position: static;
        height: 200px;
        margin-top: 20px;
    }

    .mobile-menu-btn {
        display: block !important;
        order: -1;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        /* header height */
        left: 0;
        transform: translateX(-100%);
        width: 280px;
        height: calc(100vh - 64px);
        background: #ffffff;
        z-index: 1000;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow-y: auto;
        visibility: hidden;
    }

    .main-nav.show {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav>ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav>ul>li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .main-nav>ul>li>a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: #1e293b;
    }

    .main-nav>ul>li>a::after {
        display: none;
    }

    .main-nav .dropdown-menu {
        position: static;
        box-shadow: none !important;
        background: #f8fafc !important;
        border-radius: 0;
        margin: 0;
        padding: 0 0 10px 20px;
        display: none;
    }

    .main-nav .dropdown.show .dropdown-menu {
        display: block;
    }

    .header .logo {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .search-widget {
        padding: 15px;
        border-radius: var(--radius-lg);
    }

    .search-widget .btn {
        width: 100%;
    }
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 -2px 14px rgba(14, 165, 233, 0.12);
    border-top: 2px solid var(--primary-light);
    z-index: 1000;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 12px;
    gap: 4px;
}

.mobile-bottom-nav a i {
    font-size: 20px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--primary);
}

@media (max-width: 767px) {

    /* Top Navigation adjustments for Mobile */
    .mobile-menu-btn {
        display: block;
        order: -1;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin: 0 auto;
        font-size: 20px;
    }

    .header-actions {
        display: flex;
        gap: 10px;
    }

    .header-actions .search-btn {
        display: block;
        font-size: 20px;
        color: var(--secondary);
    }

    .header-actions .btn {
        display: none;
    }

    /* Hero section Mobile */
    .hero {
        padding: 60px 0 30px;
        min-height: 350px;
        background: linear-gradient(160deg, #ffffff 0%, var(--primary-light) 100%);
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
        /* Hide arrows on mobile */
    }

    .hero::before {
        display: none;
    }

    .hero-bg-mobile {
        display: none;
    }

    .hero-gradient-overlay {
        display: none !important;
    }

    .hero-content {
        margin-bottom: 20px;
    }

    .search-widget {
        flex-direction: column;
        padding: 24px;
        border-radius: 16px;
        margin: -40px 15px 0;
        gap: 0;
    }

    .search-field {
        margin-bottom: 15px;
        width: 100%;
    }

    .search-field-content {
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 15px;
    }

    .search-field:nth-last-child(2) .search-field-content {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .search-btn {
        width: 100%;
        margin-top: 10px;
    }

    font-size: 32px;
    text-align: left;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 20px;
}

.btn-hero {
    padding: 10px 20px;
    font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    height: 35px;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 14px;
}

.hero-subtitle {
    display: none;
}

.search-widget {
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: -50px 15px 0;
    /* Pull up over hero */
    position: relative;
    z-index: 5;
}

.search-field-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.search-field {
    padding: 0;
    border-right: none;
    border-bottom: none;
}

/* Categories Strip Scrollable */
.features-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.feature-item {
    flex-direction: column;
    min-width: 75px;
    text-align: center;
    gap: 8px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 10px;
    color: #94a3b8;
    display: block;
    /* Shown in screenshot */
    margin-bottom: 0;
}

/* Horizontal Package Card Mobile */
.package-card {
    display: flex;
    flex-direction: row !important;
    border-radius: 12px !important;
    margin: 0;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07) !important;
}

.package-img {
    width: 135px !important;
    height: auto !important;
    min-height: 150px !important;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px !important;
}

.package-img img {
    border-radius: 12px 0 0 12px !important;
}

.package-body {
    padding: 15px 12px !important;
    width: calc(100% - 135px);
}

.package-title {
    font-size: 14px !important;
    margin-bottom: 6px !important;
}

.package-price {
    position: static !important;
    background: transparent !important;
    color: var(--brand-orange) !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 8px;
}

/* Footer Mobile */
.footer {
    padding-bottom: 70px;
}

.mobile-bottom-nav {
    display: flex;
}

body {
    padding-bottom: 60px;
}

.hero-bg-mobile {
    display: none;
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-12,
    .col-md-6,
    .col-lg-3,
    .col-sm-6,
    .col-lg-4,
    .col-md-4,
    .col-lg-8 {
        padding-left: 0;
        padding-right: 0;
    }

    .package-card,
    .card,
    .destination-card,
    .blog-card {
        border-radius: 0 !important;
        border-left: none;
        border-right: none;
    }

    .section-title,
    .offer-content,
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE BREAKPOINT STRATEGY (UTKAL HOLIDAYS)
   ========================================================================== */

/* 1. Small Mobile (320px - 359px) */
@media (min-width: 320px) and (max-width: 359px) {
    body {
        font-size: 13px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content h1 {
        font-size: 28px !important;
    }
}

/* 2. Standard Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 3. Large Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Override Bootstrap container max-width */
.container {
    max-width: none !important;
}