:root {
    --primary: #ff8a00;
    --primary-dark: #e67c00;
    --primary-light: #ffaa43;
    --secondary: #008aed;
    --secondary-dark: #0073c7;
    --secondary-light: #4bb1ff;
    --bg-light: #fdfaf9;
    /* Warm off-white, premium feel */
    --bg-white: #ffffff;
    --text-main: #0f172a;
    /* Deep slate blue-black */
    --text-muted: #475569;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Header Modernization --- */
#header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo img {
    max-height: 60px;
    transition: var(--transition);
}

.headerNavi ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.headerNavi ul li a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

.headerNavi ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.headerNavi ul li a:hover {
    color: var(--primary);
}

.headerNavi ul li a:hover:after {
    width: 100%;
}

.headerMobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.headerMobile ul li a {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.headerMobile ul li a i {
    color: var(--primary);
    margin-right: 5px;
}

/* --- Hero Banner --- */
#banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    margin-top: 0;
}

#banner .overlayBg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.free-quotes {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.get-free {
    background: var(--primary) !important;
    padding: 1.5rem !important;
}

.get-free-qoute {
    padding: 2rem !important;
}

.form-control {
    border-radius: var(--radius-sm) !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.75rem 1rem;
    font-size: 0.95rem !important;
    box-shadow: none !important;
    transition: var(--transition);
    height: auto !important;
    color: var(--text-main) !important;
}

select.form-control {
    padding: 0.5rem 1rem !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 12px;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1) !important;
}

.btn-enq {
    background: var(--primary) !important;
    border: none;
    border-radius: var(--radius-md) !important;
    padding: 1rem 2rem !important;
    width: 100%;
    font-weight: 700 !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-enq:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark) !important;
}

/* --- Marquee Section --- */
.marqueeDiv {
    background: var(--primary);
    padding: 10px 0;
    position: relative;
    z-index: 20;
    width: 100%;
    overflow: hidden;
}

.marqueeDiv marquee {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

/* --- Features Section --- */
.banner-2 {
    background: #0f172a;
    /* Deep premium dark blue */
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    /* Pull up slightly over banner bottom */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.banner-2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-2 ul li {
    flex: 1;
    min-width: 140px;
    padding: 1rem !important;
    transition: var(--transition);
}

.banner-2 ul li:hover {
    transform: translateY(-5px);
}

.abt-cmpny figure {
    margin: 0;
    padding: 0;
}

.abt-cmpny img {
    margin-bottom: 1rem;
    height: 50px;
    width: auto !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.abt-cmpny h6 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* --- Package Cards --- */
#top-packages {
    background: var(--bg-light);
    padding: 5rem 0;
}

.packages {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: none;
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.packages:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.packages figure {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 10;
}

.packages figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.packages:hover figure img {
    transform: scale(1.1);
}

.packages h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.packages h2 span {
    color: var(--secondary);
    display: block;
    font-size: 0.9rem;
}

.packages h3 {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.packages h3 span {
    color: var(--accent-red);
    font-weight: 700;
}

.itnry {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.itnry li {
    width: auto !important;
    text-align: center;
}

.itnry li img {
    height: 24px;
    margin-bottom: 0.25rem;
}

.itnry li p {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

.price {
    background: #fdf2f2;
    color: var(--accent-red);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.price small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.btn-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.btn-detail .btn {
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.whatsappWidget {
    background: #25d366;
    grid-column: span 2;
    color: white;
}

.phone {
    background: var(--secondary);
    color: white;
}

.request {
    background: var(--primary);
    color: white;
}

.whatsappWidget:hover,
.phone:hover,
.request:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .headerNavi {
        display: none;
    }

    .headerMobile {
        display: none;
    }

    .logo {
        text-align: center;
    }

    #banner {
        padding: 2rem 0;
        min-height: auto;
    }

    .free-quotes {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .banner-2 {
        margin-top: 0;
        border-radius: 0;
    }

    .banner-2 ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .packages {
        margin-bottom: 1.5rem;
    }
}

/* --- Modern Utilities --- */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.section-title h2 span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Improved Spacing --- */
section {
    padding: 6rem 0;
}

#confused {
    margin: 6rem 2rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto;
}

.marquee-modern {
    background: var(--primary);
    color: white;
    padding: 0.75rem 0;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

/* --- New Sections Support --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.dest-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-item:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.dest-overlay h4 {
    margin: 0;
    font-weight: 800;
}

.reviews-section {
    padding: 5rem 0;
    background: var(--bg-light);
    color: var(--text-main);
}

/* Force elfsight widget content visibility if needed */
.reviews-section [class*="elfsight-app"] {
    color: var(--text-main) !important;
}

#confused {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/site/modern-banner.png') center/cover fixed;
    text-align: center;
    color: white;
    border-radius: 40px;
    margin: 4rem 2rem;
}

.requirement {
    background: var(--primary);
    color: white !important;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.3);
    transition: var(--transition);
}

.requirement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.5);
}

@media (max-width: 991px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #confused {
        margin: 2rem 1rem;
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.float-whatsapp {
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
}

.float-call {
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary);
}

@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
    }

    .float-whatsapp {
        left: 20px;
    }

    .float-call {
        right: 20px;
    }
}

/* --- Final Theme Overrides --- */
#footer.bg-dark {
    background-color: #111827 !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* --- Google Reviews Visibility Fix --- */
.reviews-section {
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 7rem 0 !important;
}

.reviews-section h2,
.reviews-section p,
.reviews-section [class*='elfsight-app'] * {
    color: #ffffff !important;
}

.reviews-section h2 span {
    color: var(--primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary) !important;
}

/* --- Loader & Interaction --- */
.processing-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#exampleModal-3 .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

#exampleModal-3 .modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, #ff5e00 100%);
    color: white;
    border: none;
}