/* =========================================
   BRAND VARIABLES
========================================= */

:root {
    --primary-color: #4B0038;   /* Deep Plum */
    --accent-color: #FF7A00;    /* Orange */
    --light-bg: #f8f9fa;
    --text-dark: #1f1f1f;
    --white: #ffffff;
    --border-light: #eeeeee;
    
    /* Modern gradient colors */
    --gradient-primary: linear-gradient(135deg, #4B0038 0%, #6B0048 50%, #8B0058 100%);
    --gradient-accent: linear-gradient(135deg, #FF7A00 0%, #FF9500 50%, #FFB000 100%);
    --gradient-mixed: linear-gradient(135deg, #4B0038 0%, #FF7A00 100%);
    --gradient-soft: linear-gradient(135deg, rgba(75, 0, 56, 0.05) 0%, rgba(255, 122, 0, 0.05) 100%);
    
    /* Shadow system */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    --shadow-colored: 0 8px 24px rgba(75, 0, 56, 0.25);
    --shadow-accent: 0 8px 24px rgba(255, 122, 0, 0.30);
}

/* =========================================
   GLOBAL RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility: visually hidden but accessible text for labels/help text */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Global responsive image handling
   - Ensures all images scale with their containers
   - Preserves aspect ratio and prevents stretching
   - Component‑specific selectors later in the file (e.g., hero, gallery, package cards)
     can still override these defaults where needed */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Poppins', sans-serif;
    background: 
        radial-gradient(circle at 20% 50%, rgba(75, 0, 56, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 122, 0, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    width: 100%;
    padding-top: 128px; /* default offset for fixed top header + navbar on larger screens */
}

/* Fine-tune body top offset for different breakpoints
   to ensure content starts just below the fixed header/nav on all devices */
@media (max-width: 767.98px) {
    body {
        padding-top: 112px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        padding-top: 112px;
    }
}

@media (min-width: 992px) {
    body {
        padding-top: 128px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* Animated background pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(75, 0, 56, 0.015) 35px, rgba(75, 0, 56, 0.015) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 122, 0, 0.015) 35px, rgba(255, 122, 0, 0.015) 70px);
    pointer-events: none;
    z-index: 0;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

/* Ensure content is above background - but not fixed elements */
body > *:not(.fixed-top):not(.top-header-bar):not(.main-navbar) {
    position: relative;
    z-index: 1;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container responsive max-widths - Bootstrap compatible */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1320px; /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

.section {
    padding: 25px 0;
    position: relative;
    overflow: visible;
}

/* Reduce excessive spacing between section headings and content */
.section .text-center.mb-5,
.section .text-center.mb-4,
.section .text-center.mb-3 {
    margin-bottom: 0.75rem !important;
}

.section .text-center.mb-2 {
    margin-bottom: 0.5rem !important;
}

.section .text-center .mb-3,
.section .text-center .mb-4 {
    margin-bottom: 0.25rem !important;
}

.section .text-center .mb-2 {
    margin-bottom: 0.25rem !important;
}

.section .text-center .mb-1 {
    margin-bottom: 0.25rem !important;
}

.section .text-center .subheading {
    margin-bottom: 0 !important;
    margin-top: 0.5rem !important;
}

/* Tight spacing for section headings */
.section .text-center .label {
    margin-bottom: 0.5rem !important;
}

.section .text-center h2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.section .text-center .modern-divider {
    display: none !important;
}

/* Reduce gap between heading section and content rows */
.section .text-center + .row,
.section .text-center + .top-deals-slider-wrapper,
.section .text-center + .reviews-slider-wrapper,
.section .text-center + .promotional-banners-strip-wrapper {
    margin-top: 0.5rem !important;
}

.section .row.mt-2 {
    margin-top: 0.5rem !important;
}

/* Prevent overflow issues with decorative elements */
.section-decorated {
    overflow: hidden;
}

.section-decorated .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   TYPOGRAPHY SYSTEM - UNIFORM ACROSS SITE
========================================= */

/* Base Typography */
body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Headings - Consistent Sizes */
h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 0.875rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Subheadings */
.subheading {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.subheading-large {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.25rem;
}

/* Paragraphs */
p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.25rem;
}

.small-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

/* Section Lead Text */
.section-lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Labels and Captions */
.label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.caption {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #888;
    line-height: 1.5;
}

/* Buttons Typography */
.btn {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-sm {
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-lg {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Navigation Typography */
.navbar .nav-link {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0px;
}

/* Card Typography */
.card-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
}

/* Hero Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Badge Typography */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.8rem;
}

/* Footer Typography - These are overridden by .site-footer specific styles */
.site-footer .footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.site-footer .footer-links a,
.site-footer .footer-contact {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
}

/* Form Typography */
.form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Price Typography */
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* =========================================
   MODERN DECORATIVE SHAPES & ELEMENTS
========================================= */

/* Abstract Shapes Container */
.decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 50%;
    left: 10%;
}

/* Section Background Decorations - Enhanced with more visible colors */
.section-decorated {
    position: relative;
    overflow: hidden;
}

.section-decorated::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.28) 0%, rgba(255, 122, 0, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
    filter: blur(40px);
}

.section-decorated::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.22) 0%, rgba(75, 0, 56, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
    z-index: 0;
    pointer-events: none;
    animation: pulse 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.section-decorated > .container,
.section-decorated > * {
    position: relative;
    z-index: 1;
}

/* Gradient Text Effects */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-accent {
    color: var(--accent-color);
}

/* Modern Divider - Centered */
.modern-divider {
    display: none;
}

.modern-divider-left {
    display: none;
}

/* Decorative Lines */
.decorative-line {
    position: relative;
    padding-bottom: 2rem;
}

.decorative-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Animated Background Shapes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

/* Card Decorative Elements */
.card-decorated {
    position: relative;
    overflow: hidden;
}

.card-decorated::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
}

.card-decorated > * {
    position: relative;
    z-index: 1;
}

/* =========================================
   TOP HEADER BAR (Above Navbar)
========================================= */

.top-header-bar {
    background: var(--primary-color);
    color: #f8f9fa;
    font-size: 0.85rem;
    padding: 14px 0;
}

.top-header-bar.fixed-top {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
}

.top-header-bar .top-header-link {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-header-bar .top-header-link i {
    color: var(--accent-color);
}

.top-header-social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8f9fa;
    text-decoration: none;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-header-social-link:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-1px);
}

.top-header-news {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
}

.top-header-contact {
    padding-left: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .top-header-contact {
        padding-left: 18px;
    }
}

.top-header-separator {
    color: rgba(248, 249, 250, 0.7);
    font-size: 0.9rem;
}

.top-header-news-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.top-header-news-ticker {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.top-header-news-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: topHeaderTicker 20s linear infinite;
}

@keyframes topHeaderTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 991.98px) {
    /* Keep top header visible but hide middle scrolling news on smaller screens */
    .top-header-middle {
        display: none !important;
    }
}

/* Tablet view (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Hide the middle news section entirely on tablet to avoid overlap */
    .top-header-middle {
        display: none !important;
    }

    /* Tablet: keep news text static (no scrolling) */
    .top-header-news-ticker {
        overflow: visible;
    }

    .top-header-news-ticker span {
        padding-left: 0;
        animation: none;
    }

    /* Give more width to the contact section so email never sits under icons */
    .top-header-contact {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .top-header-social {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .top-header-social-link {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
}

/* Desktop (≥992px and <1200px): hide middle ticker to avoid any overlap */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .top-header-middle {
        display: none !important;
    }

    /* Same wider contact area on desktop so email never goes under icons */
    .top-header-contact {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .top-header-social {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

/* Large screens (≥1200px): show ticker, constrain width so it never reaches email area */
@media (min-width: 1200px) {
    .top-header-news-ticker {
        max-width: 70%;
        margin: 0 auto;
    }
}

/* =========================================
   NAVBAR (Bootstrap Compatible)
========================================= */

.navbar {
    /* Solid light background so logo is very clear */
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Keep navbar always on top and full-width when fixed */
.navbar.fixed-top.main-navbar {
    top: 52px; /* default: sit just below the fixed top header bar */
    left: 0;
    right: 0;
    z-index: 1050;
}

/* Mobile view (<768px) */
@media (max-width: 767.98px) {
    .navbar.fixed-top.main-navbar {
        top: 52px;
    }

    .navbar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand img {
        max-height: 30px;
    }

    .navbar .nav-link {
        font-size: 1rem;
        padding: 6px 8px !important;
    }
}

/* Tablet view (≥768px and <992px): a bit more compact than desktop */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar.fixed-top.main-navbar {
        top: 52px; /* top header visible; navbar sits just below header */
    }

    .navbar .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar .nav-link {
        font-size: 1.05rem;
    }
}

/* Desktop view (≥992px and <1200px): current defaults are fine, just ensure alignment */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar.fixed-top.main-navbar {
        top: 52px;
    }
}

/* Large screens (≥1200px): slightly roomier navbar */
@media (min-width: 1200px) {
    .navbar .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Slightly wider container inside navbar for breathing room */
.navbar .container {
    padding-left: 28px;
    padding-right: 24px;
}

/* Brand area – neutral behind logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 4px 18px;
    margin-right: 28px;
    border-radius: 999px;
}

/* Wrapper for multiple brand logos */
.navbar-brand-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    max-height: 48px;
    height: auto;
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.04);
}

.navbar-nav.gap-3 {
    gap: 0.5rem !important;
}

.navbar .nav-link {
    color: var(--primary-color) !important;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0px;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 8px 10px !important;
}

.navbar .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.navbar .btn-primary {
    background-color: var(--accent-color);
    border: none;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 500;
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.45);
}

.navbar .btn-primary:hover {
    background-color: #e66a00;
}

/* Mobile toggler visibility */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15);
}

/* =========================================
   HOME SEARCH TABS SECTION
========================================= */

/* Home page search section - overlaps hero */
.home-search-section {
    margin-top: -60px;
    position: relative;
    z-index: 20;
    padding-bottom: 20px;
    background: transparent;
    transition: margin-top 0.3s ease, padding-top 0.3s ease;
    will-change: margin-top;
}

/* Fix search bar on scroll for all carousel slides */
body.scrolled .home-search-section,
.home-search-section.scrolled {
    margin-top: 0 !important;
    padding-top: 20px;
}

.home-search-card {
    background: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 24px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: visible;
    position: relative;
}

.home-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.home-search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.home-search-tabs::-webkit-scrollbar {
    height: 4px;
}

.home-search-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.home-search-tabs::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
}

.home-search-tabs .nav-item {
    flex-shrink: 0;
}

.home-search-tabs .nav-link {
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.home-search-tabs .nav-link.active {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.home-search-tabs .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.home-search-form {
    width: 100%;
    overflow: visible;
}

.home-search-form .row {
    margin-left: -8px;
    margin-right: -8px;
}

.home-search-form .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.home-search-form .form-label {
    font-size: 0.75rem;
    margin-bottom: 6px;
    display: block;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

.home-search-input {
    width: 100%;
    margin-bottom: 0;
}

.home-search-input .input-group-text {
    border-radius: 10px 0 0 10px;
    border-right: none;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.home-search-input .form-control,
.home-search-input .form-select {
    border-radius: 0 10px 10px 0;
    border-left: none;
    padding: 10px 14px;
    font-size: 0.95rem;
    height: auto;
    min-height: 42px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-dark);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.home-search-input .form-control:hover,
.home-search-input .form-select:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.home-search-input .form-control:focus,
.home-search-input .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.3);
    border-color: var(--accent-color);
    z-index: 3;
}

.home-search-input .input-group-text:focus-within,
.home-search-input .form-control:focus ~ .input-group-text,
.home-search-input .form-select:focus ~ .input-group-text {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

.home-search-submit {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    height: 42px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .home-search-submit {
        margin-top: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .home-search-section {
        margin-top: 0;
        padding-top: 20px;
    }

    .home-search-card {
        border-radius: 16px;
        padding: 18px 20px 20px;
    }

    .packages-search-section .home-search-card {
        border-radius: 16px;
        padding: 18px 20px 20px;
    }

    .home-search-tabs {
        margin-bottom: 16px !important;
    }

    .home-search-form .row > div {
        margin-bottom: 12px;
    }

    .home-search-submit {
        width: 100%;
        margin-top: 0;
    }
}

/* Mobile view: remove gap between hero and search, reduce input spacing */
@media (max-width: 767.98px) {
    .home-search-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 15px;
    }

    .home-search-form .row {
        margin-left: -4px;
        margin-right: -4px;
        gap: 0;
    }

    .home-search-form .row > [class*="col-"] {
        padding-left: 4px;
        padding-right: 4px;
        margin-bottom: 8px;
    }

    .home-search-form .form-label {
        margin-bottom: 4px;
    }
}

@media (max-width: 575.98px) {
    .home-search-card {
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
        padding: 12px 10px 14px;
    }

    .home-search-tabs {
        margin-bottom: 12px !important;
    }

    .home-search-tabs .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .home-search-form .form-label {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .home-search-form .row > [class*="col-"] {
        margin-bottom: 2px;
    }

    .home-search-input .input-group-text,
    .home-search-input .form-control,
    .home-search-input .form-select {
        padding: 8px 10px;
        font-size: 0.85rem;
        min-height: 38px;
    }
}

/* =========================================
   COMING SOON PAGES
========================================= */

.coming-soon-page {
    position: relative;
}

.coming-soon-wrapper {
    max-width: 720px;
}

.coming-soon-watermark {
    position: absolute;
    inset: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.05;
}

.coming-soon-watermark img {
    max-width: 380px;
    width: 100%;
}

.coming-soon-title {
    font-size: 2.4rem;
}

.coming-soon-subtitle {
    font-size: 1.05rem;
    color: #555;
}

/* =========================================
   BUTTONS (Global)
========================================= */

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #e66a00;
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Brand button variants */
.btn-brand {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 6px;
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: #e66a00;
    border-color: #e66a00;
    color: var(--white);
}

.btn-outline-brand {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 6px;
    background-color: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* =========================================
   HERO SECTION
========================================= */

.hero-slide {
    min-height: 85vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Ensure images are sharp and properly displayed - no blur */
.hero-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Prevent image blur on background images */
.hero-slide[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(75, 0, 56, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 2rem;
}



.hero-slide-row {
    row-gap: 1.5rem;
}

.hero-video-wrapper{
position:relative;
width:100%;
max-width:600px;
aspect-ratio:16/9;
border-radius:20px;
overflow:hidden;
margin-left:auto;
z-index:2;
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}


/* VIDEO GLOW BACKGROUND */
.hero-video-wrapper::before{
content:'';
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
width:110%;
height:115%;
background:radial-gradient(
circle,
rgba(255,180,100,0.35) 0%,
rgba(255,140,0,0.25) 40%,
rgba(255,140,0,0.1) 60%,
transparent 75%
);
filter:blur(40px);
z-index:-1;
border-radius:30px;
}

.hero-video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------
   HERO RESPONSIVE SPACING (TABLET + MOBILE)
   ----------------------------------------- */
@media (max-width: 1024px) {
    /* Add breathing room around hero so video/content
       don't touch header or the next section */
    .hero-slide {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    /* Ensure clear spacing between video (first)
       and content (second) when stacked */
    .hero-video-wrapper {
        margin-bottom: 20px;
    }

    /* Extra bottom spacing below text content to
       keep distance from following section */
    .hero-content {
        margin-bottom: 12px;
    }
}


.hero-content-column {
    text-align: left;
}

@media (max-width: 991.98px) {
    .hero-content-column {
        text-align: center;
    }
}



/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* =========================================
   PACKAGE CARDS (Premium Styling)
========================================= */

.package-card,
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(75, 0, 56, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(75, 0, 56, 0.1);
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animation for cards on scroll */
.package-card.fade-in-card,
.card.fade-in-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.package-card.fade-in-card.animate-in,
.card.fade-in-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.package-card::before,
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-mixed);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.package-card:hover,
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(75, 0, 56, 0.15);
    border-color: rgba(75, 0, 56, 0.2);
}

/* Removed hover top line effect */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays for cards */
.package-card:nth-child(1), .card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2), .card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3), .card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4), .card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5), .card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6), .card:nth-child(6) { animation-delay: 0.6s; }

.package-card-img {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}

.package-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
    display: block;
}

/* Package Tags - Horizontal Top-Left Ribbon Style */
.package-tag {
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 2;
    padding: 6px 20px 6px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    white-space: normal;
    min-width: 80px;
    max-width: calc(100% - 12px);
    width: auto;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    display: inline-block;
    hyphens: auto;
    border-radius: 0;
    box-sizing: border-box;
}

/* Ribbon tail effect - perfectly aligned triangle at the end */
.package-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 6px solid #f7931e;
}

/* All tags use the same Top Deal styling */
.package-tag-top-deal,
.package-tag-featured,
.package-tag-category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tag for top-deal-card (home page) */
.top-deal-image {
    position: relative;
    overflow: visible;
}

.top-deal-placeholder {
    position: relative;
    overflow: visible;
}

/* Package Category Sections */
.package-category-section {
    margin-bottom: 4rem;
}

.package-category-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
}

.package-category-section .modern-divider {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Image styling is now in the earlier definition */

.package-card:hover .package-card-img img {
    transform: scale(1.05);
}

.package-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #999;
}

.package-card-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.package-card-overlay {
    display: none !important;
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card .card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.package-card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    flex: 1;
    margin-right: 12px;
    margin-bottom: 0;
}

.package-card:hover .package-card-title {
    color: var(--accent-color);
}

.price-inline {
    flex-shrink: 0;
    text-align: right;
}

.price-inline .price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
    white-space: nowrap;
}

.package-card .text-muted {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.package-card .text-muted i {
    color: var(--accent-color);
    margin-right: 6px;
}

.package-duration {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.package-duration i {
    color: var(--primary-color);
    margin-right: 6px;
}

.package-description {
    line-height: 1.5;
    margin: 0 0 12px 0;
    flex: 1;
    min-height: 45px;
}

.package-card .text-muted {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.package-card .text-muted i {
    color: var(--accent-color);
    margin-right: 6px;
}

.package-duration {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.package-duration i {
    color: var(--primary-color);
    margin-right: 6px;
}


.package-card h5,
.card-title {
    color: var(--primary-color);
}

/* =========================================
   SECTIONS
========================================= */

/* =========================================
   VARIED SECTION DESIGNS - NO MORE SAME!
========================================= */

/* Section Variant 1: Warm Orange Gradient (More Vibrant & Visible) */
.section-light {
    background: 
        linear-gradient(135deg, rgba(255, 122, 0, 0.18) 0%, rgba(255, 122, 0, 0.08) 50%, transparent 100%),
        linear-gradient(45deg, rgba(75, 0, 56, 0.08) 0%, transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.section-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.28) 0%, rgba(255, 122, 0, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
    z-index: 0;
    filter: blur(30px);
}

.section-light::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.18) 0%, rgba(75, 0, 56, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 25s ease-in-out infinite reverse;
    z-index: 0;
    filter: blur(30px);
}

.section-light > .container,
.section-light > * {
    position: relative;
    z-index: 1;
}

/* Section Variant 2: Clean White with More Visible Pattern */
.section-white {
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 122, 0, 0.06) 100px, rgba(255, 122, 0, 0.06) 200px),
        repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(75, 0, 56, 0.05) 100px, rgba(75, 0, 56, 0.05) 200px),
        #ffffff;
    position: relative;
    background-size: 200px 200px;
    animation: patternShift 30s linear infinite;
}

@keyframes patternShift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 200px 200px, -200px -200px; }
}

.section-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.4), rgba(75, 0, 56, 0.4), transparent);
    z-index: 0;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.section-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(75, 0, 56, 0.2), transparent);
    z-index: 0;
}

.section-white > .container,
.section-white > * {
    position: relative;
    z-index: 1;
}

/* Section Variant 3: Diagonal Mesh Gradient - More Visible */
.section-variant-3 {
    background: 
        linear-gradient(135deg, rgba(255, 122, 0, 0.18) 0%, rgba(255, 122, 0, 0.08) 40%, transparent 60%),
        linear-gradient(225deg, rgba(75, 0, 56, 0.12) 0%, rgba(75, 0, 56, 0.06) 40%, transparent 60%),
        linear-gradient(45deg, rgba(255, 122, 0, 0.1) 0%, transparent 60%),
        #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-variant-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 122, 0, 0.08) 50px, rgba(255, 122, 0, 0.08) 100px);
    animation: diagonalMove 20s linear infinite;
    z-index: 0;
}

@keyframes diagonalMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.section-variant-3 > .container {
    position: relative;
    z-index: 1;
}

/* Section Variant 4: Animated Gradient Waves - More Visible */
.section-variant-4 {
    background: 
        radial-gradient(ellipse at top left, rgba(255, 122, 0, 0.22) 0%, rgba(255, 122, 0, 0.1) 30%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(75, 0, 56, 0.18) 0%, rgba(75, 0, 56, 0.08) 30%, transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.section-variant-4::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 122, 0, 0.08) 2px, rgba(255, 122, 0, 0.08) 4px);
    animation: waveMove 15s linear infinite;
    z-index: 0;
}

@keyframes waveMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.section-variant-4 > .container {
    position: relative;
    z-index: 1;
}

/* Section Variant 5: Bold Color Blocks - More Vibrant */
.section-variant-5 {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 250, 245, 0.9) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 250, 245, 0.9) 75%, rgba(75, 0, 56, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.section-variant-5::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.25) 0%, rgba(255, 122, 0, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
    z-index: 0;
    filter: blur(40px);
}

.section-variant-5::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.2) 0%, rgba(75, 0, 56, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 25s ease-in-out infinite reverse;
    z-index: 0;
    filter: blur(40px);
}

.section-variant-5 > .container {
    position: relative;
    z-index: 1;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.section-dark {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
    z-index: 0;
    filter: blur(40px);
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 25s ease-in-out infinite reverse;
    z-index: 0;
    filter: blur(40px);
}

.section-dark > .container {
    position: relative;
    z-index: 1;
}

/* CTA Section Styling */
.cta-section {
    padding: 25px 0;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.cta-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(255, 122, 0, 0.1));
    border: 3px solid rgba(255, 122, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
    margin: 0 auto;
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 122, 0, 0);
    }
}

.cta-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem !important;
    display: block;
    width: 100%;
    text-align: center;
}

.cta-heading {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem !important;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.cta-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,122,0,0.8), rgba(255,255,255,0.3)) !important;
    margin: 0 auto 1.5rem !important;
    border-radius: 2px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    width: 100%;
}

.cta-features {
    margin: 0 auto 2.5rem;
    width: 100%;
    max-width: 800px;
}

.cta-features .row {
    margin: 0;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    height: 100%;
    min-height: 60px;
    text-align: center;
}

.cta-feature-item:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.cta-feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cta-feature-item span {
    white-space: nowrap;
}

.cta-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.cta-button {
    background: var(--accent-color);
    border: none;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background: #e66a00;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.5);
    color: var(--white);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-feature-item {
        font-size: 0.85rem;
        padding: 12px 8px;
        min-height: 55px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon i {
        font-size: 2rem;
    }
}

/* =========================================
   CLIENT LOGO SECTION
========================================= */

.client-logos img {
    max-height: 60px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* =========================================
   LEGACY FOOTER (OVERRIDDEN BY .site-footer)
   Kept for compatibility but not used by new layout
========================================= */

/* Legacy footer - disabled to prevent conflicts */
footer:not(.site-footer) {
    background: inherit;
    color: inherit;
    padding: 0;
}

footer:not(.site-footer) h5,
footer:not(.site-footer) h6 {
    color: inherit;
    margin-bottom: 15px;
}

.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* =========================================
   UTILITY
========================================= */

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.shadow-soft {
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Typography helpers */
.section-lead {
    max-width: 750px;
    font-size: 1.02rem;
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
    padding-top: 25px;
    padding-bottom: 25px;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.about-hero .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.about-title {
    font-size: 2.4rem;
}

.about-lead {
    font-size: 1rem;
    color: #555;
}

.about-pill {
    background: rgba(75, 0, 56, 0.06);
    color: var(--primary-color);
    font-weight: 500;
}

.about-stat {
    background: rgba(75, 0, 56, 0.04);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(75, 0, 56, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.about-stat:hover {
    background: rgba(75, 0, 56, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(75, 0, 56, 0.15);
}

.about-stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.about-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.about-hero-gallery {
    position: relative;
    min-height: 260px;
}

.about-hero-main img,
.about-hero-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-hero-main {
    position: relative;
    height: 260px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.about-hero-side {
    position: absolute;
    width: 42%;
    height: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.about-hero-side.top {
    top: -20px;
    right: -10px;
}

.about-hero-side.bottom {
    bottom: -20px;
    left: -10px;
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 56, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(75, 0, 56, 0.15);
    border-color: rgba(75, 0, 56, 0.2);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 0, 56, 0.1), rgba(75, 0, 56, 0.05));
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, var(--primary-color), rgba(75, 0, 56, 0.8));
    color: var(--white);
    transform: scale(1.1);
}

.about-card h5 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

/* Service Cards Styling */
.about-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 56, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.about-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(75, 0, 56, 0.15);
    border-color: rgba(75, 0, 56, 0.2);
}

.about-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 0, 56, 0.1), rgba(75, 0, 56, 0.05));
    color: var(--primary-color);
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.about-service-card:hover .about-service-icon {
    background: linear-gradient(135deg, var(--primary-color), rgba(75, 0, 56, 0.8));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.about-service-card h5 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

.about-timeline {
    border-left: 3px solid rgba(75, 0, 56, 0.15);
    padding-left: 32px;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 1), 0 0 0 6px var(--primary-color);
}

.about-timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 8px;
    transition: all 0.3s ease;
}

.about-timeline-item:hover {
    padding-left: 12px;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-item .step {
    position: absolute;
    left: -44px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), rgba(75, 0, 56, 0.8));
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(75, 0, 56, 0.3);
    transition: all 0.3s ease;
}

.about-timeline-item:hover .step {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(75, 0, 56, 0.4);
}

.about-timeline-item h6 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-timeline-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.about-list li:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.about-list i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-team-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.about-team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(75, 0, 56, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.about-team-card:hover::after {
    opacity: 1;
}

.about-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-team-card:hover img {
    transform: scale(1.05);
}

.about-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   ABOUT PAGE RESPONSIVE - 4 VIEW TYPES
========================================= */

/* Mobile view (<768px) */
@media (max-width: 767.98px) {
    .about-hero {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .about-hero .lead {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .about-stat {
        padding: 16px 18px;
        min-width: 120px;
        flex: 1 1 auto;
    }

    .about-stat h3 {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }

    .about-stat p {
        font-size: 0.8rem;
    }

    .about-hero-gallery {
        min-height: 200px;
        margin-top: 24px;
    }

    .about-hero-main {
        height: 200px;
    }

    .about-hero-side {
        width: 38%;
        height: 120px;
    }

    .about-hero-side.top {
        top: -15px;
        right: -8px;
    }

    .about-hero-side.bottom {
        bottom: -15px;
        left: -8px;
    }

    .about-card,
    .about-service-card {
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .about-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .about-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .about-card h5,
    .about-service-card h5 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .about-card p,
    .about-service-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .about-timeline {
        padding-left: 24px;
        margin-top: 24px;
    }

    .about-timeline-item {
        margin-bottom: 24px;
    }

    .about-timeline-item .step {
        left: -36px;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .about-timeline-item h6 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .about-timeline-item p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .about-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding: 6px 0;
    }

    .about-list i {
        font-size: 1rem;
        margin-right: 8px;
    }

    .about-team-card {
        margin-bottom: 12px;
    }
}

/* Tablet view (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .about-hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-hero h1 {
        font-size: 2.3rem;
        line-height: 1.25;
    }

    .about-hero .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-stat {
        padding: 18px 20px;
        min-width: 140px;
    }

    .about-stat h3 {
        font-size: 1.8rem;
    }

    .about-stat p {
        font-size: 0.85rem;
    }

    .about-hero-gallery {
        min-height: 240px;
    }

    .about-hero-main {
        height: 240px;
    }

    .about-hero-side {
        width: 40%;
        height: 140px;
    }

    .about-card,
    .about-service-card {
        padding: 28px 24px;
    }

    .about-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .about-service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.65rem;
    }

    .about-card h5,
    .about-service-card h5 {
        font-size: 1.2rem;
    }

    .about-card p,
    .about-service-card p {
        font-size: 0.92rem;
    }

    .about-timeline {
        padding-left: 28px;
    }

    .about-timeline-item {
        margin-bottom: 28px;
    }

    .about-timeline-item .step {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .about-timeline-item h6 {
        font-size: 1.1rem;
    }

    .about-timeline-item p {
        font-size: 0.92rem;
    }
}

/* Desktop view (≥992px and <1200px) - default sizes are fine */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .about-hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-hero h1 {
        font-size: 2.6rem;
    }

    .about-hero .lead {
        font-size: 1.1rem;
    }

    .about-stat {
        padding: 20px 22px;
    }

    .about-stat h3 {
        font-size: 1.9rem;
    }

    .about-hero-gallery {
        min-height: 250px;
    }

    .about-hero-main {
        height: 250px;
    }

    .about-hero-side {
        height: 145px;
    }
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
    .about-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero .lead {
        font-size: 1.2rem;
    }

    .about-stat {
        padding: 22px 26px;
        min-width: 160px;
    }

    .about-stat h3 {
        font-size: 2.2rem;
    }

    .about-stat p {
        font-size: 0.95rem;
    }

    .about-hero-gallery {
        min-height: 280px;
    }

    .about-hero-main {
        height: 280px;
    }

    .about-hero-side {
        width: 43%;
        height: 160px;
    }

    .about-card,
    .about-service-card {
        padding: 36px 32px;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .about-service-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 22px;
    }

    .about-card h5,
    .about-service-card h5 {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .about-card p,
    .about-service-card p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-timeline {
        padding-left: 36px;
    }

    .about-timeline-item {
        margin-bottom: 36px;
    }

    .about-timeline-item .step {
        left: -48px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .about-timeline-item h6 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .about-timeline-item p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .about-list li {
        font-size: 1.05rem;
        margin-bottom: 14px;
        padding: 10px 0;
    }

    .about-list i {
        font-size: 1.15rem;
        margin-right: 12px;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

/* =========================================
   TODAY'S TOP DEALS - Horizontal Slider
========================================= */

.top-deals-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.top-deals-slider {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    will-change: scroll-left;
}


.top-deal-card {
    min-width: 360px;
    max-width: 360px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(75, 0, 56, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Grid layout cards - allow flexible width */
.row .top-deal-card {
    min-width: auto;
    max-width: 100%;
    width: 100%;
}

.top-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(75, 0, 56, 0.2);
}

.top-deal-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.top-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.top-deal-card:hover .top-deal-image img {
    transform: scale(1.1);
}

.top-deal-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
}

.top-deal-badge {
    display: none; /* Replaced by package-tag */
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.top-deal-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-deal-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-deal-destination {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-deal-destination i {
    color: var(--accent-color);
    margin-right: 6px;
}

.top-deal-info {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #555;
}

.top-deal-info i {
    color: var(--primary-color);
    margin-right: 6px;
}

.top-deal-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* =========================================
   CUSTOMER REVIEWS - Horizontal Slider
========================================= */

.reviews-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    will-change: scroll-left;
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review-card {
    min-width: 380px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 25px rgba(75, 0, 56, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(75, 0, 56, 0.2);
}

.review-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Different colors for different avatars */
.review-card:nth-child(1) .review-avatar { background: linear-gradient(135deg, #4285F4, #34A853); }
.review-card:nth-child(2) .review-avatar { background: linear-gradient(135deg, #EA4335, #FBBC05); }
.review-card:nth-child(3) .review-avatar { background: linear-gradient(135deg, #34A853, #4285F4); }
.review-card:nth-child(4) .review-avatar { background: linear-gradient(135deg, #FBBC05, #EA4335); }
.review-card:nth-child(5) .review-avatar { background: linear-gradient(135deg, #4285F4, #EA4335); }
.review-card:nth-child(6) .review-avatar { background: linear-gradient(135deg, #34A853, #FBBC05); }
.review-card:nth-child(7) .review-avatar { background: linear-gradient(135deg, #EA4335, #4285F4); }
.review-card:nth-child(8) .review-avatar { background: linear-gradient(135deg, #FBBC05, #34A853); }
.review-card:nth-child(9) .review-avatar { background: linear-gradient(135deg, #4285F4, #FBBC05); }
.review-card:nth-child(10) .review-avatar { background: linear-gradient(135deg, #34A853, #EA4335); }

.review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.review-message {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.review-stars i {
    color: #FFB800;
    font-size: 1rem;
}

.review-stars i.far {
    color: #ddd;
}

/* =========================================
   YOUTUBE VIDEOS SECTION
========================================= */

.youtube-video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(75, 0, 56, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.youtube-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(75, 0, 56, 0.2);
}

.youtube-video-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.youtube-video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.youtube-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.youtube-video-card:hover .youtube-thumbnail-img {
    transform: scale(1.1);
}

.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 4rem;
}

.youtube-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-video-card:hover .youtube-play-overlay {
    opacity: 1;
}

.youtube-play-button {
    width: 100px;
    height: 70px;
    border-radius: 12px;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    position: relative;
}

.youtube-play-button::before {
    content: '\f167';
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}

.youtube-video-card:hover .youtube-play-button {
    transform: scale(1.1);
    background: #CC0000;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.youtube-video-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.youtube-video-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.youtube-video-card:hover .youtube-video-title {
    color: var(--accent-color);
}

.youtube-video-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .hero-slide {
        height: 60vh;
        text-align: center;
    }

    .hero-slide h1 {
        font-size: 2rem;
    }

    .navbar .btn-primary {
        margin-top: 10px;
    }

    .package-card-img {
        height: 210px;
    }

    .top-deal-card {
        min-width: 300px;
        max-width: 300px;
    }

    .review-card {
        min-width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .package-card-img {
        height: 160px;
    }

    .top-deal-card {
        min-width: 260px;
        max-width: 260px;
    }

    .top-deal-image {
        height: 150px;
    }

    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .review-name {
        font-size: 1rem;
    }

    .review-message {
        font-size: 0.9rem;
    }

    .youtube-video-thumbnail {
        padding-top: 56.25%;
    }
    
    .youtube-play-button {
        width: 80px;
        height: 56px;
    }
    
    .youtube-play-button::before {
        font-size: 2.5rem;
    }
    
    .youtube-video-title {
        font-size: 1.1rem;
    }
    
    .youtube-video-content {
        padding: 16px;
    }

    #heroCarousel .carousel-control-prev {
        left: 10px;
    }

    #heroCarousel .carousel-control-next {
        right: 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* =========================================
   PACKAGES PAGE - SEARCH & FILTERS
========================================= */

.packages-search-section {
    background: 
        /* Brand color gradient - Purple to Orange matching website */
        linear-gradient(135deg, #4B0038 0%, #5a0045 20%, #6b0052 40%, rgba(255, 122, 0, 0.4) 60%, rgba(255, 122, 0, 0.6) 80%, #FF7A00 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    padding: 20px 0 15px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.packages-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle diagonal pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.06) 25px,
            rgba(255, 255, 255, 0.06) 50px
        ),
        /* Light mesh overlay with brand colors */
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 56, 0.12) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.packages-search-section::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.25) 0%, rgba(255, 122, 0, 0.10) 40%, rgba(255, 122, 0, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    animation: floatShape 25s ease-in-out infinite;
    z-index: 0;
    filter: blur(50px);
}

.packages-search-section > .container {
    position: relative;
    z-index: 1;
}

/* Home search card inside packages section */
.packages-search-section .home-search-card {
    margin-bottom: 0;
    max-width: 100%;
}

/* Filter buttons inside packages search section */
.packages-search-section .filter-buttons-wrapper {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.packages-search-section .filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.packages-search-section .filter-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.packages-search-section .filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.packages-search-section .filter-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.packages-search-section .filter-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
}

.search-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
}

.package-search-form {
    position: relative;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.search-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    padding: 12px 15px;
    background: transparent;
}

.search-input:focus {
    box-shadow: none;
}

.search-btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    white-space: nowrap;
}

.filter-buttons-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .packages-search-section {
        padding: 20px 0 15px;
        margin-top: 0;
    }

    .packages-search-section .home-search-card {
        padding: 16px 18px 18px;
    }

    .packages-search-section .filter-buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
        gap: 12px;
    }

    .packages-search-section .filter-label {
        font-size: 1rem;
    }

    .packages-search-section .filter-buttons {
        width: 100%;
        gap: 8px;
    }

    .packages-search-section .filter-btn {
        flex: 0 1 auto;
        min-width: auto;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .search-input-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }

    .search-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-btn {
        width: 100%;
    }

    .filter-buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        min-width: calc(50% - 6px);
        text-align: center;
    }
}

/* =========================================
   PACKAGES PAGE RESPONSIVE - 4 VIEW TYPES
========================================= */

/* Mobile view (<768px) */
@media (max-width: 767.98px) {
    .packages-search-section {
        padding: 15px 0 12px;
    }

    .packages-search-section .home-search-card {
        padding: 14px 12px 16px;
    }

    .packages-search-section .filter-buttons-wrapper {
        margin-top: 16px;
        gap: 10px;
    }

    .packages-search-section .filter-label {
        font-size: 0.9rem;
    }

    .packages-search-section .filter-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .package-category-section {
        margin-bottom: 32px;
    }

    .package-category-section h3 {
        font-size: 1.4rem;
    }

    .package-card {
        margin-bottom: 20px;
    }

    .package-card-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .package-card .card-body {
        padding: 16px;
    }

    .package-card .text-muted {
        font-size: 0.85rem;
    }

    .package-description {
        font-size: 0.8rem !important;
    }

    .price-inline .price-amount {
        font-size: 1.1rem;
    }

    .package-card-img {
        height: 180px;
    }
}

/* Tablet view (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .packages-search-section {
        padding: 18px 0 14px;
    }

    .packages-search-section .home-search-card {
        padding: 18px 20px 20px;
    }

    .packages-search-section .filter-buttons-wrapper {
        margin-top: 24px;
        gap: 16px;
    }

    .packages-search-section .filter-label {
        font-size: 1.05rem;
    }

    .packages-search-section .filter-btn {
        padding: 9px 20px;
        font-size: 0.95rem;
    }

    .package-category-section {
        margin-bottom: 40px;
    }

    .package-category-section h3 {
        font-size: 1.6rem;
    }

    .package-card-title {
        font-size: 1.2rem;
    }

    .package-card .card-body {
        padding: 20px;
    }

    .package-card-img {
        height: 200px;
    }
}

/* Desktop view (≥992px and <1200px) - default sizes are fine */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .packages-search-section {
        padding: 20px 0 15px;
    }

    .packages-search-section .filter-buttons-wrapper {
        margin-top: 28px;
    }

    .package-category-section {
        margin-bottom: 48px;
    }

    .package-category-section h3 {
        font-size: 1.8rem;
    }

    .package-card-img {
        height: 220px;
    }
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
    .packages-search-section {
        padding: 25px 0 20px;
    }

    .packages-search-section .home-search-card {
        padding: 24px 28px 28px;
    }

    .packages-search-section .filter-buttons-wrapper {
        margin-top: 32px;
        gap: 24px;
    }

    .packages-search-section .filter-label {
        font-size: 1.15rem;
    }

    .packages-search-section .filter-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .package-category-section {
        margin-bottom: 56px;
    }

    .package-category-section h3 {
        font-size: 2rem;
    }

    .package-card-title {
        font-size: 1.35rem;
    }

    .package-card .card-body {
        padding: 28px;
    }

    .package-card .text-muted {
        font-size: 0.95rem;
    }

    .package-description {
        font-size: 0.9rem !important;
    }

    .price-inline .price-amount {
        font-size: 1.4rem;
    }

    .package-card-img {
        height: 240px;
    }
}

/* =========================================
   GALLERY PAGE
========================================= */

.gallery-hero {
    padding-top: 25px;
    padding-bottom: 25px;
}

.gallery-title {
    font-size: 2.4rem;
}

.gallery-lead {
    font-size: 1rem;
    color: #555;
}

.gallery-pill {
    background: rgba(75, 0, 56, 0.06);
    color: var(--primary-color);
    font-weight: 500;
}

.gallery-hero-art {
    position: relative;
    height: 260px;
}

.gallery-hero-art .shape {
    position: absolute;
    border-radius: 30px;
}

.gallery-hero-art .shape-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top left, var(--accent-color), var(--primary-color));
    top: 0;
    left: 10%;
}

.gallery-hero-art .shape-2 {
    width: 220px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
    top: 40px;
    right: 5%;
}

.gallery-hero-art .shape-3 {
    width: 260px;
    height: 180px;
    background: linear-gradient(135deg, rgba(75, 0, 56, 0.9), rgba(255, 122, 0, 0.9));
    bottom: 0;
    left: 20%;
}

.gallery-hero-image {
    position: absolute;
    inset: 40px 60px;
    border-radius: 26px;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)), url('../images/about/about-hero-main.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.gallery-filters {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 30px 0;
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-filter-bar .filter-label {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.gallery-filter-btn.active {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* Honeycomb Gallery Section */
.honeycomb-gallery-section {
    padding: 25px 0;
}

.honeycomb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.honeycomb-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    padding: 20px 0;
}

.honeycomb-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.honeycomb-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(75, 0, 56, 0.3);
    z-index: 10;
}

.honeycomb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.honeycomb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.honeycomb-item:hover .honeycomb-inner img {
    transform: scale(1.15);
}

.honeycomb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(75, 0, 56, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.honeycomb-item:hover .honeycomb-overlay {
    opacity: 1;
}

.honeycomb-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.honeycomb-item:hover .honeycomb-content {
    transform: translateY(0);
}

.honeycomb-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    display: block;
}

.honeycomb-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Honeycomb Item Sizes */
.honeycomb-large {
    grid-column: span 3;
    grid-row: span 2;
}

.honeycomb-medium {
    grid-column: span 2;
    grid-row: span 2;
}

.honeycomb-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive Honeycomb Layout */
@media (max-width: 1200px) {
    .honeycomb-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .honeycomb-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .honeycomb-medium {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .honeycomb-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .honeycomb-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }
    
    .honeycomb-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .honeycomb-medium {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .honeycomb-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .honeycomb-content i {
        font-size: 2rem;
    }
    
    .honeycomb-content h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .honeycomb-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .honeycomb-large,
    .honeycomb-medium,
    .honeycomb-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-grid-section {
    padding-top: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
}

.gallery-item-inner {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px 18px;
}

.gallery-item-inner:hover img {
    transform: scale(1.07);
}

.gallery-item-inner:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-meta h5 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #f5f5f5;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding-top: 20px;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-hero-art {
        margin-top: 20px;
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 15px;
        padding: 0 15px;
    }
}

/* =========================================
   GALLERY PAGE RESPONSIVE - 4 VIEW TYPES
   (Carefully maintaining image orientation & aspect ratios)
========================================= */

/* Mobile view (<768px) */
@media (max-width: 767.98px) {
    .gallery-hero {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .gallery-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .gallery-hero .lead {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .gallery-hero-art {
        height: 200px;
        margin-top: 24px;
    }

    .gallery-hero-art .shape-1 {
        width: 140px;
        height: 140px;
        left: 5%;
    }

    .gallery-hero-art .shape-2 {
        width: 160px;
        height: 100px;
        top: 30px;
        right: 0;
    }

    .gallery-hero-art .shape-3 {
        width: 180px;
        height: 120px;
        bottom: 0;
        left: 15%;
    }

    .gallery-hero-image {
        inset: 30px 40px;
        border-radius: 20px;
    }

    .honeycomb-gallery-section {
        padding: 20px 0;
    }

    .honeycomb-container {
        padding: 0 15px;
    }

    .honeycomb-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
        padding: 15px 0;
    }

    .honeycomb-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .honeycomb-medium {
        grid-column: span 2;
        grid-row: span 2;
    }

    .honeycomb-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .honeycomb-overlay {
        padding: 18px;
    }

    .honeycomb-content i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .honeycomb-content h5 {
        font-size: 0.95rem;
    }

    .gallery-grid-section {
        padding-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
        padding: 0 15px;
    }

    .gallery-item-overlay {
        padding: 12px 14px;
    }

    .gallery-item-meta h5 {
        font-size: 0.9rem;
    }

    .gallery-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Tablet view (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .gallery-hero {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .gallery-hero h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .gallery-hero .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .gallery-hero-art {
        height: 240px;
    }

    .gallery-hero-art .shape-1 {
        width: 160px;
        height: 160px;
    }

    .gallery-hero-art .shape-2 {
        width: 190px;
        height: 120px;
    }

    .gallery-hero-art .shape-3 {
        width: 220px;
        height: 150px;
    }

    .gallery-hero-image {
        inset: 35px 50px;
    }

    .honeycomb-gallery-section {
        padding: 25px 0;
    }

    .honeycomb-container {
        padding: 0 18px;
    }

    .honeycomb-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
        padding: 18px 0;
    }

    .honeycomb-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .honeycomb-medium {
        grid-column: span 2;
        grid-row: span 2;
    }

    .honeycomb-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .honeycomb-overlay {
        padding: 20px;
    }

    .honeycomb-content i {
        font-size: 2.2rem;
        margin-bottom: 9px;
    }

    .honeycomb-content h5 {
        font-size: 1.05rem;
    }

    .gallery-grid-section {
        padding-top: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
        gap: 18px;
        padding: 0 18px;
    }

    .gallery-item-overlay {
        padding: 14px 16px;
    }

    .gallery-item-meta h5 {
        font-size: 0.95rem;
    }
}

/* Desktop view (≥992px and <1200px) - default sizes are fine */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .gallery-hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .gallery-hero .lead {
        font-size: 1.1rem;
    }

    .gallery-hero-art {
        height: 250px;
    }

    .honeycomb-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 190px;
        gap: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 20px;
    }
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
    .gallery-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .gallery-hero h1 {
        font-size: 3rem;
    }

    .gallery-hero .lead {
        font-size: 1.2rem;
    }

    .gallery-hero-art {
        height: 280px;
    }

    .gallery-hero-art .shape-1 {
        width: 200px;
        height: 200px;
    }

    .gallery-hero-art .shape-2 {
        width: 240px;
        height: 150px;
    }

    .gallery-hero-art .shape-3 {
        width: 280px;
        height: 200px;
    }

    .gallery-hero-image {
        inset: 45px 70px;
        border-radius: 28px;
    }

    .honeycomb-gallery-section {
        padding: 35px 0;
    }

    .honeycomb-container {
        padding: 0 25px;
    }

    .honeycomb-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
        padding: 25px 0;
    }

    .honeycomb-overlay {
        padding: 28px;
    }

    .honeycomb-content i {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .honeycomb-content h5 {
        font-size: 1.2rem;
    }

    .gallery-grid-section {
        padding-top: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 300px;
        gap: 25px;
        padding: 0 25px;
    }

    .gallery-item-overlay {
        padding: 18px 20px;
    }

    .gallery-item-meta h5 {
        font-size: 1.1rem;
    }

    .gallery-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* Ensure images always maintain aspect ratio and orientation */
.honeycomb-inner img,
.gallery-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    padding-top: 25px;
    padding-bottom: 15px;
}

.contact-title {
    font-size: 2.4rem;
}

.contact-lead {
    font-size: 1rem;
    color: #555;
}

.contact-pill {
    background: rgba(75, 0, 56, 0.06);
    color: var(--primary-color);
    font-weight: 500;
}

.contact-hero-art {
    position: relative;
    height: 260px;
}

.contact-shape {
    position: absolute;
    border-radius: 999px;
}

.contact-shape-1 {
    width: 220px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: 0;
    right: 10%;
}

.contact-shape-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.9), rgba(255,255,255,0.2));
    top: 40px;
    left: 5%;
}

.contact-shape-3 {
    width: 260px;
    height: 190px;
    background: linear-gradient(135deg, rgba(75,0,56,0.9), rgba(0,0,0,0.9));
    bottom: 0;
    left: 18%;
}

.contact-hero-image {
    position: absolute;
    inset: 40px 60px;
    border-radius: 28px;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6)), url('../images/about/team-1.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.contact-highlights .contact-highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.contact-highlight-card .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(75,0,56,0.06);
    color: var(--primary-color);
}

.contact-main {
    padding-top: 25px;
}

.contact-form-card {
    border-radius: 20px;
}

.contact-map-card {
    border-radius: 18px;
}

.contact-map-placeholder {
    height: 180px;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.25), rgba(75,0,56,0.35));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    font-size: 0.9rem;
    text-align: center;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 25px 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(75, 0, 56, 0.2);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(75, 0, 56, 0.3);
}

.contact-info-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

/* Enhanced Contact Form */
.contact-form-card {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

.contact-form-card .card-body {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid rgba(75, 0, 56, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 56, 0.15);
    outline: none;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-quick-card,
.contact-features-card {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: rgba(75, 0, 56, 0.03);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-quick-link:hover {
    background: rgba(75, 0, 56, 0.08);
    border-color: var(--primary-color);
    transform: translateX(5px);
    color: var(--primary-color);
}

.contact-quick-link i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-quick-link.whatsapp i {
    background: #25D366;
    color: white;
}

.contact-quick-link.email i {
    background: var(--primary-color);
    color: white;
}

.contact-quick-link.phone i {
    background: var(--accent-color);
    color: white;
}

.contact-quick-link strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-quick-link small {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

.contact-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(75, 0, 56, 0.1);
    display: flex;
    align-items: center;
}

.contact-features-list li:last-child {
    border-bottom: none;
}

.contact-features-list i {
    font-size: 1.1rem;
}

/* Map Section */
.contact-map-section {
    padding: 25px 0;
    background: linear-gradient(135deg, rgba(75, 0, 56, 0.02) 0%, rgba(255, 122, 0, 0.02) 100%);
}

.contact-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-map-container-full {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-overlay-info {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.contact-map-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.contact-map-info-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-map-info-card p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.contact-faq-section {
    padding: 25px 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(75, 0, 56, 0.2);
    box-shadow: 0 8px 25px rgba(75, 0, 56, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(75, 0, 56, 0.02);
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(75, 0, 56, 0.05) 0%, rgba(255, 122, 0, 0.05) 100%);
}

.faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-question h5 {
    flex: 1;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-arrow {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(75, 0, 56, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px 100px;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .contact-map-overlay-info {
        position: static;
        margin-top: 20px;
    }
    
    .contact-map-info-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .contact-map-container-full {
        height: 400px;
    }
    
    .faq-question {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .faq-question h5 {
        font-size: 1rem;
    }
}

/* =========================================
   CONTACT PAGE RESPONSIVE - 4 VIEW TYPES
========================================= */

/* Mobile view (<768px) */
@media (max-width: 767.98px) {
    .contact-hero {
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .contact-hero .lead {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .contact-hero-art {
        height: 200px;
        margin-top: 24px;
    }

    .contact-shape-1 {
        width: 160px;
        height: 100px;
        right: 5%;
    }

    .contact-shape-2 {
        width: 140px;
        height: 140px;
        top: 30px;
        left: 0;
    }

    .contact-shape-3 {
        width: 180px;
        height: 130px;
        bottom: 0;
        left: 10%;
    }

    .contact-hero-image {
        inset: 30px 40px;
        border-radius: 20px;
    }

    .contact-highlight-card {
        padding: 10px 12px;
    }

    .contact-highlight-card .icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .contact-highlight-card small {
        font-size: 0.75rem;
    }

    .contact-info-section {
        padding: 20px 0;
    }

    .contact-info-card {
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .contact-info-card h5 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .contact-info-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .contact-main {
        padding-top: 20px;
    }

    .contact-form-card .card-body {
        padding: 20px !important;
    }

    .contact-form-card h3 {
        font-size: 1.3rem;
    }

    .contact-form-card .form-label {
        font-size: 0.88rem;
        margin-bottom: 6px;
    }

    .contact-form-card .form-control,
    .contact-form-card .form-select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .contact-sidebar {
        position: static;
        margin-top: 24px;
    }

    .contact-quick-card,
    .contact-features-card {
        margin-bottom: 20px;
    }

    .contact-quick-link {
        padding: 14px;
        gap: 12px;
    }

    .contact-quick-link i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-quick-link strong {
        font-size: 0.9rem;
    }

    .contact-quick-link small {
        font-size: 0.8rem;
    }

    .contact-features-list li {
        padding: 10px 0;
        font-size: 0.88rem;
    }

    .contact-map-section {
        padding: 20px 0;
    }

    .contact-map-container-full {
        height: 350px;
    }

    .contact-map-overlay-info {
        position: static;
        margin-top: 16px;
    }

    .contact-map-info-card {
        max-width: 100%;
        padding: 20px;
    }

    .contact-map-info-card h5 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .contact-map-info-card p {
        font-size: 0.88rem;
    }

    .contact-faq-section {
        padding: 20px 0;
    }

    .faq-accordion {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 18px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .faq-question h5 {
        font-size: 0.95rem;
    }

    .faq-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 18px 18px 18px;
        font-size: 0.88rem;
        line-height: 1.6;
    }
}

/* Tablet view (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .contact-hero {
        padding-top: 25px;
        padding-bottom: 20px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .contact-hero .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .contact-hero-art {
        height: 240px;
    }

    .contact-shape-1 {
        width: 200px;
        height: 120px;
    }

    .contact-shape-2 {
        width: 160px;
        height: 160px;
    }

    .contact-shape-3 {
        width: 230px;
        height: 170px;
    }

    .contact-hero-image {
        inset: 35px 50px;
    }

    .contact-highlight-card {
        padding: 12px 14px;
    }

    .contact-highlight-card .icon {
        width: 30px;
        height: 30px;
    }

    .contact-info-section {
        padding: 25px 0;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .contact-info-card h5 {
        font-size: 1.2rem;
    }

    .contact-info-card p {
        font-size: 0.92rem;
    }

    .contact-main {
        padding-top: 25px;
    }

    .contact-form-card .card-body {
        padding: 28px !important;
    }

    .contact-form-card h3 {
        font-size: 1.5rem;
    }

    .contact-sidebar {
        position: static;
        margin-top: 28px;
    }

    .contact-map-container-full {
        height: 450px;
    }

    .contact-map-overlay-info {
        position: static;
        margin-top: 20px;
    }

    .contact-map-info-card {
        max-width: 100%;
        padding: 22px;
    }

    .faq-question {
        padding: 22px 25px;
        gap: 16px;
    }

    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .faq-question h5 {
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 25px 22px 90px;
        font-size: 0.95rem;
    }
}

/* Desktop view (≥992px and <1200px) - default sizes are fine */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .contact-hero {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero .lead {
        font-size: 1.1rem;
    }

    .contact-hero-art {
        height: 250px;
    }

    .contact-info-section {
        padding: 30px 0;
    }

    .contact-main {
        padding-top: 30px;
    }

    .contact-map-container-full {
        height: 480px;
    }

    .contact-faq-section {
        padding: 30px 0;
    }
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
    .contact-hero {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }

    .contact-hero .lead {
        font-size: 1.2rem;
    }

    .contact-hero-art {
        height: 280px;
    }

    .contact-shape-1 {
        width: 240px;
        height: 150px;
    }

    .contact-shape-2 {
        width: 200px;
        height: 200px;
    }

    .contact-shape-3 {
        width: 280px;
        height: 200px;
    }

    .contact-hero-image {
        inset: 45px 70px;
        border-radius: 30px;
    }

    .contact-highlight-card {
        padding: 14px 16px;
    }

    .contact-highlight-card .icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-info-section {
        padding: 35px 0;
    }

    .contact-info-card {
        padding: 40px 35px;
    }

    .contact-info-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 22px;
    }

    .contact-info-card h5 {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .contact-info-card p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .contact-main {
        padding-top: 35px;
    }

    .contact-form-card .card-body {
        padding: 36px !important;
    }

    .contact-form-card h3 {
        font-size: 1.7rem;
    }

    .contact-form-card .form-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .contact-form-card .form-control,
    .contact-form-card .form-select {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .contact-sidebar {
        position: sticky;
        top: 120px;
    }

    .contact-quick-link {
        padding: 18px;
        gap: 16px;
    }

    .contact-quick-link i {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .contact-quick-link strong {
        font-size: 1.05rem;
    }

    .contact-quick-link small {
        font-size: 0.9rem;
    }

    .contact-features-list li {
        padding: 14px 0;
        font-size: 0.95rem;
    }

    .contact-map-section {
        padding: 35px 0;
    }

    .contact-map-container-full {
        height: 550px;
    }

    .contact-map-overlay-info {
        position: absolute;
        top: 35px;
        right: 35px;
    }

    .contact-map-info-card {
        max-width: 320px;
        padding: 28px;
    }

    .contact-map-info-card h5 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .contact-map-info-card p {
        font-size: 1rem;
    }

    .contact-faq-section {
        padding: 35px 0;
    }

    .faq-question {
        padding: 28px 32px;
        gap: 22px;
    }

    .faq-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .faq-question h5 {
        font-size: 1.2rem;
    }

    .faq-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 32px 28px 105px;
        font-size: 1.05rem;
        line-height: 1.85;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-hero-art {
        height: 220px;
        margin-top: 10px;
    }
}

/* =========================================
   PACKAGE DETAIL PAGE
========================================= */

/* Package Title Section */
.package-title-section {
    padding: 17.6px 0 14.4px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 56, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, #f7f3ff 0%, #ffeede 50%, #f7f3ff 100%) !important;
    position: relative;
    overflow: hidden;
}

.package-title-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatShape 20s ease-in-out infinite;
}

.package-title-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.package-title-section > .container {
    position: relative;
    z-index: 1;
}

.package-category-label {
    display: inline-block;
    padding: 6.4px 16px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    box-shadow: 0 1.6px 6.4px rgba(255, 122, 0, 0.3);
}

.package-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.package-title-divider {
    width: 80px;
    height: 2.4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 1.6px;
}

/* Package Image Section */
.package-image-section {
    padding: 20px 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(75, 0, 56, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #faf5ff 50%, #fff5f0 100%) !important;
    position: relative;
    overflow: hidden;
}

.package-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255, 122, 0, 0.02) 80px, rgba(255, 122, 0, 0.02) 160px),
        repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(75, 0, 56, 0.02) 80px, rgba(75, 0, 56, 0.02) 160px);
    pointer-events: none;
    z-index: 0;
}

.package-image-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.package-image-gallery {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-gallery-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.package-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    aspect-ratio: 16/10;
}

.package-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-main-image:hover .package-hero-img {
    transform: scale(1.05);
}

.gallery-view-all {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-view-all:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.package-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(75, 0, 56, 0.2);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 0, 56, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

.gallery-more {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.gallery-more small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Package Content Section */
.package-detail-main {
    padding: 19.2px 0 25.6px;
    min-height: auto;
    background: 
        radial-gradient(circle at 0% 0%, rgba(75, 0, 56, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 122, 0, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f7f5ff 40%, #fff5ef 70%, #ffffff 100%) !important;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.package-detail-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(75, 0, 56, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 122, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.package-detail-main::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 30s ease-in-out infinite;
}

.package-detail-main > .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    overflow-x: hidden;
}

.package-detail-main .section-white,
.package-detail-main .section-light {
    background: transparent !important;
}

.package-detail-main .section-white::before,
.package-detail-main .section-white::after,
.package-detail-main .section-light::before,
.package-detail-main .section-light::after {
    display: none !important;
}

.section-heading {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 2.4px solid var(--primary-color);
}

.package-content-section:nth-child(even) .section-heading {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Quick Info Section */
.package-quick-info {
    margin-bottom: 24px;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

@media (min-width: 640px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.w-full {
    width: 100%;
}

.min-w-0 {
    min-width: 0;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12.8px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12.8px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    min-height: 88px;
    min-width: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.quick-info-item::before {
    display: none;
}

.quick-info-item:hover {
    background: #f8f9fa;
    transform: none;
    box-shadow: none;
}

.quick-info-item i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 9.6px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.12rem;
    flex-shrink: 0;
    background: var(--primary-color);
}

.quick-info-grid .quick-info-item:nth-child(1) i,
.quick-info-grid .quick-info-item:nth-child(3) i {
    background: var(--primary-color);
}

.quick-info-grid .quick-info-item:nth-child(2) i,
.quick-info-grid .quick-info-item:nth-child(4) i {
    background: var(--accent-color);
}

.quick-info-item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.quick-info-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.6rem;
    margin-bottom: 4.8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.64px;
    line-height: 1.2;
}

.quick-info-item span {
    display: block;
    color: #1f2937;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-info-item span.whitespace-nowrap {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.package-section {
    margin-bottom: 50px;
}

.package-content-section {
    margin-bottom: 19.2px;
    border-radius: 0.8rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 0.8px 1.6px 0 rgba(0, 0, 0, 0.05);
    padding: 19.2px;
    overflow: hidden;
}

.package-content-box {
    background: #fafafa;
    border-radius: 0;
    padding: 16px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-content-box::before {
    display: none;
}

.package-content-section:nth-child(even) .package-content-box {
    /* No border changes */
}

.package-content-section:nth-child(even) .package-content-box::before {
    display: none;
}

.package-content-section:nth-child(even) .package-content-box {
    /* No border changes */
}

.package-content-box:hover {
    background: #f5f5f5;
    transform: none;
}

.package-content-box:hover::before {
    display: none;
}

.package-content-section:nth-child(odd) .package-content-box:hover {
    background: #f5f5f5;
}

.package-content-section:nth-child(even) .package-content-box:hover {
    background: #f5f5f5;
}

.package-text-content {
    font-size: 0.84rem;
    line-height: 1.9;
    color: #444;
}

/* Gallery Section */
.package-gallery-section {
    margin-bottom: 50px;
}

.package-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.package-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-gallery-item.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.package-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-gallery-item:hover .package-gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 0, 56, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
}

/* Itinerary Section */
.package-itinerary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.itinerary-day-card {
    background: #fafafa;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 12px;
}

.itinerary-day-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.itinerary-day-card:nth-child(even) {
    /* No border */
}

.itinerary-day-card:nth-child(even)::before {
    background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
}

.itinerary-day-card:hover {
    background: #f5f5f5;
    transform: none;
    box-shadow: none;
}

.itinerary-day-card:nth-child(even):hover {
    background: #f5f5f5;
    box-shadow: none;
}

.itinerary-day-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.itinerary-day-header:hover {
    background: #f0f0f0;
}

.itinerary-day-header[aria-expanded="true"] {
    background: var(--primary-color);
    color: var(--white);
}

.itinerary-day-card:nth-child(even) .itinerary-day-header[aria-expanded="true"] {
    background: var(--accent-color);
}

.itinerary-day-header[aria-expanded="true"] .itinerary-day-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.itinerary-day-header[aria-expanded="true"] .itinerary-day-title h5 {
    color: var(--white);
}

.itinerary-day-header[aria-expanded="true"] .itinerary-day-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.itinerary-day-header[aria-expanded="true"] .itinerary-day-arrow i {
    color: var(--white);
}

.itinerary-day-number {
    width: 48px;
    height: 48px;
    border-radius: 9.6px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
}

.itinerary-day-card:nth-child(even) .itinerary-day-number {
    background: var(--accent-color);
}

.itinerary-day-card:nth-child(even) .itinerary-day-header[aria-expanded="true"] .itinerary-day-number {
    background: rgba(255, 255, 255, 0.2);
}

.itinerary-day-title {
    flex: 1;
    position: relative;
}

/* Decorative element in the middle space - elegant divider */
.itinerary-day-title::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6px;
    height: 32px;
    background: linear-gradient(to bottom, 
        rgba(75, 0, 56, 0.1) 0%, 
        rgba(75, 0, 56, 0.3) 50%, 
        rgba(75, 0, 56, 0.1) 100%);
    border-radius: 1.6px;
}

.itinerary-day-header[aria-expanded="true"] .itinerary-day-title::after {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
}

.itinerary-day-title h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.96rem;
}

.itinerary-day-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
    background: rgba(75, 0, 56, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.itinerary-day-arrow i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.itinerary-day-content {
    border-top: 1px solid rgba(75, 0, 56, 0.1);
}

.itinerary-day-body {
    padding: 16px 20px;
    font-size: 0.84rem;
    line-height: 1.8;
    color: #555;
}

/* Package Lists */
.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-list li {
    padding: 9.6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid rgba(75, 0, 56, 0.1);
    font-size: 0.84rem;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12.8px;
    width: 6.4px;
    height: 6.4px;
    border-radius: 50%;
}

.package-list-success li::before {
    background: #28a745;
}

.package-list-danger li::before {
    background: #dc3545;
}

.package-list-info li::before {
    background: var(--primary-color);
}

/* Logistics Section */
.logistics-item {
    display: flex;
    gap: 12px;
    padding: 14.4px;
    background: #f0f0f0;
    border-radius: 0;
    border: none;
}

.logistics-item:nth-child(2) {
    /* No border */
}

.logistics-item:nth-child(3) {
    /* No border */
}

.logistics-item i {
    width: 36px;
    height: 36px;
    border-radius: 9.6px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.96rem;
    flex-shrink: 0;
}

.logistics-item:nth-child(1) i,
.logistics-item:nth-child(3) i {
    background: var(--primary-color);
}

.logistics-item:nth-child(2) i {
    background: var(--accent-color);
}

.logistics-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 0.76rem;
}

.logistics-item p {
    margin: 0;
    color: #555;
    font-size: 0.72rem;
}

/* Package Sidebar */
.package-sidebar {
    position: sticky;
    top: 100px;
    margin-right: 48px;
    max-width: 100%;
}

.package-sidebar-card {
    background: #fafafa;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 16px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 16px;
}


.package-sidebar-card::after {
    display: none;
}

.package-sidebar-card:hover {
    background: #f5f5f5;
    transform: none;
    box-shadow: none;
}

.package-sidebar-card:hover::after {
    display: none;
}

.package-sidebar-card .btn {
    border-radius: 9.6px;
    padding: 11.2px 16px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.package-sidebar-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 0, 56, 0.2);
}

.sidebar-card-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 16px;
    margin: -16px -16px 0 -16px;
}

.sidebar-card-header h4,
.sidebar-card-header h5 {
    margin: 0 0 6.4px 0;
    color: var(--white);
    font-weight: 600;
    font-size: 0.96rem;
}

.sidebar-card-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.72rem;
}

.sidebar-card-body {
    padding: 16px;
    margin: 0 -16px -16px -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.form-group {
    margin-bottom: 12px;
}

/* Reduce spacing in sidebar forms */
.package-sidebar .form-group {
    margin-bottom: 12px;
}

.package-sidebar .mb-3 {
    margin-bottom: 1rem !important;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-group .form-control {
    border: 2px solid rgba(75, 0, 56, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 56, 0.15);
    outline: none;
}

/* Package Highlights */
.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 9.6px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #f0f0f0;
    transform: translateX(2.4px);
}

.highlight-item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.highlight-item:nth-child(1) i,
.highlight-item:nth-child(3) i {
    background: var(--primary-color);
}

.highlight-item:nth-child(2) i,
.highlight-item:nth-child(4) i {
    background: var(--accent-color);
}

.highlight-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.68rem;
    margin-bottom: 4px;
}

.highlight-item span {
    display: block;
    color: #555;
    font-size: 0.76rem;
}

/* Package Actions */
.package-actions {
    text-align: center;
    padding: 30px 0;
}

/* Gallery Modal */
#galleryModal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

#galleryModal .carousel-item img {
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .package-main-title {
        font-size: 2.5rem;
    }
    
    .package-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .package-gallery-main {
        grid-template-columns: 1fr;
    }
    
    .package-gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .package-title-section {
          margin-top: 180px;
    padding: 20px 0 15px;
    }
    
    .package-main-title {
        font-size: 2rem;
    }
    
    .package-gallery-main {
        grid-template-columns: 1fr;
    }
    
    .package-gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-view-all {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .itinerary-day-header {
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .itinerary-day-number {
        width: 50px;
        height: 50px;
        font-size: 0.95rem;
    }
    
    .itinerary-day-title h5 {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .package-content-box {
        padding: 25px;
    }
    
    .quick-info-item {
        padding: 18px;
        border-radius: 14px;
        min-height: 90px;
    }
    
    .quick-info-item i {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
    
    .quick-info-item strong {
        font-size: 0.7rem;
    }
    
    .quick-info-item span {
        font-size: 1rem;
    }
}

.package-hero {
    position: relative;
    min-height: 260px;
    padding: 40px 0 30px;
    color: #fff;
    overflow: hidden;
}

.package-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.package-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.05);
}

.package-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(75, 0, 56, 0.8));
}

.package-hero .container {
    position: relative;
    z-index: 2;
}

.package-title {
    font-size: 2.4rem;
}

.package-price-card {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(4px);
}

.package-price-card .label {
    color: rgba(255,255,255,0.7);
}

.package-price-card .price {
    font-size: 1.8rem;
    font-weight: 700;
}

.package-detail-main {
    padding-top: 20px;
}

.package-tabs .nav-link {
    border-radius: 999px;
    padding-inline: 18px;
    padding-block: 6px;
    font-size: 0.9rem;
}

.package-tabs .nav-link.active {
    background-color: var(--primary-color);
}

.package-enquiry-card {
    top: 80px;
    border-radius: 16px;
}

.package-carousel-image {
    height: 420px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .package-title {
        font-size: 2rem;
    }

    .package-price-card {
        margin-top: 16px;
    }
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
    clear: both;
}

.site-footer * {
    box-sizing: border-box;
}

/* Ensure footer doesn't break layout */
.site-footer {
    display: block;
    left: 0;
    right: 0;
}

body {
    position: relative;
    min-height: 100vh;
}

.footer-main {
    padding: 40px 0 30px;
    width: 100%;
    max-width: 100%;
}

.site-footer .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .site-footer .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .site-footer .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .site-footer .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .site-footer .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1400px) {
    .site-footer .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1920px) {
    .site-footer .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 42px;
    width: auto;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.footer-title-small {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-timing {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.footer-timing h6,
.footer-timing p {
    color: #f5f5f5;
}

.footer-bottom {
    background: #0f0f0f;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-line {
    text-align: center;
    /* Responsive font – shrinks as screen gets narrower, but not unreadably small */
    font-size: clamp(0.55rem, 1.6vw, 0.9rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.footer-developed {
    white-space: nowrap;
}

/* Mobile (<576px): break exactly before 'Developed by' so you either get 1 full line or 2 clean lines */
@media (max-width: 575.98px) {
    .footer-bottom-line {
        white-space: nowrap;
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0 60px 0 8px; /* extra right space for WhatsApp button */
    }

    .footer-developed {
        display: block;
        margin-top: 2px;
        white-space: nowrap; /* keep 'Developed by ...' as a single unit on second line */
    }

    .footer-bottom .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-legal .separator {
    color: #555;
}

/* =========================================
   FLOATING BUTTONS
========================================= */

.floating-whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 65px !important;
    height: 65px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 32px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease;
    animation: pulse-whatsapp-strong 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.8;
    animation: pulse-ring-strong 2s infinite;
    z-index: -1;
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse-ring-strong-delayed 2s infinite;
    z-index: -2;
}

.floating-whatsapp:hover {
    background: #20BA5A !important;
    transform: scale(1.2) !important;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.9) !important;
    color: #ffffff !important;
    animation: none !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-whatsapp:hover::before,
.floating-whatsapp:hover::after {
    animation: pulse-ring-hover-strong 1s infinite;
}

@keyframes pulse-whatsapp-strong {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.08);
    }
}

@keyframes pulse-ring-strong {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse-ring-strong-delayed {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes pulse-ring-hover-strong {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.floating-contact {
    position: fixed !important;
    right: 0 !important;
    bottom: 100px !important;
    background: var(--accent-color) !important;
    color: #ffffff !important;
    padding: 20px 12px !important;
    border-radius: 8px 0 0 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.4) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    letter-spacing: 2px;
}

.floating-contact:hover {
    background: #e66a00 !important;
    padding-left: 15px !important;
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.6) !important;
    color: #ffffff !important;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .floating-contact {
        bottom: 85px !important;
        padding: 16px 10px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
    }
}

/* Footer responsive behavior - match 4 view types like header/navbar */

/* Mobile (<768px): tighter footer, smaller text/logo */
@media (max-width: 767.98px) {
    .footer-main {
        padding: 28px 0 20px;
    }

    .footer-logo img {
        max-height: 32px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-bottom p,
    .footer-legal a {
        font-size: 0.85rem;
    }

    /* Make footer widgets sit side-by-side (2 per row) for a compact look */
    .footer-main .row {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-main .row > div[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-widget {
        margin-bottom: 16px;
    }
}

/* Tablet (≥768px and <992px): medium spacing and text */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-main {
        padding: 36px 0 26px;
    }

    .footer-logo img {
        max-height: 38px;
    }
}

/* Desktop (≥992px and <1200px): keep current default sizes but ensure comfortable padding */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-main {
        padding: 40px 0 30px;
    }
}

/* Large screens (≥1200px): slightly more breathing room */
@media (min-width: 1200px) {
    .footer-main {
        padding: 48px 0 34px;
    }
}

/* =========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Ultra-wide to Mobile - Full Coverage
========================================= */

/* Ultra-wide screens (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
    }
    
    .hero-slide {
        min-height: 90vh;
        max-height: 95vh;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        color: var(--accent-color);
    }
    
    .section {
        padding: 30px 0;
    }
    
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.75rem; }
    h3 { font-size: 2.25rem; }
    h4 { font-size: 1.9rem; }
    h5 { font-size: 1.5rem; }
    
    .section-lead { font-size: 1.25rem; }
    .subheading { font-size: 1.3rem; }
    .lead { font-size: 1.25rem; }
}

/* Large screens (1400px - 1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 25px 0;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 25px 0;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.2rem; }
    
    .package-card-img {
        height: 200px;
    }
    
    .top-deal-card {
        min-width: 280px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    body {
        padding-top: 65px;
        font-size: 15px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 25px 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .package-card-img {
        height: 180px;
    }
    
    .top-deal-card {
        min-width: 250px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        padding-top: 60px;
        font-size: 14px;
    }
    
    /* Typography adjustments for mobile */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.95rem; }
    
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .section-lead { font-size: 0.95rem; }
    .subheading { font-size: 1rem; }
    .lead { font-size: 1rem; }
    
    .label { font-size: 0.75rem; }
    .price { font-size: 1.25rem; }
    
    .navbar {
        padding: 6px 0;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .navbar-nav {
        gap: 0 !important;
    }
    
    .navbar-nav .btn {
        margin-top: 10px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.15rem; }
    h4 { font-size: 1.05rem; }
    
    .package-card-img {
        height: 160px;
    }
    
    .top-deal-card {
        min-width: 220px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .section-lead {
        font-size: 0.95rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
    
    .floating-contact {
        bottom: 75px;
        padding: 16px 8px;
        font-size: 0.75rem;
    }
}

/* Small Mobile (below 320px) */
@media (max-width: 319px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    body {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.15rem; }
    h3 { font-size: 1rem; }
    
    .package-card-img {
        height: 140px;
    }
    
    .top-deal-card {
        min-width: 200px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .floating-contact {
        padding: 12px 6px;
        font-size: 0.7rem;
    }
}

/* Global responsive utilities */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Grid adjustments for tablets and mobile */
@media (max-width: 991px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Navbar responsive improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

/* Hero carousel responsive */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 70vh;
        max-height: 75vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 60vh;
        max-height: 65vh;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-slide {
        min-height: 55vh;
        max-height: 60vh;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Package cards responsive */
@media (max-width: 991px) {
    .package-card {
        margin-bottom: 25px;
    }
}

/* Top deals slider responsive */
@media (max-width: 767px) {
    .top-deals-slider-wrapper {
        padding: 0 10px;
    }
    
    .top-deal-card {
        margin-right: 15px;
    }
}

/* =========================================
   MODERN UI/UX ENHANCEMENTS - PREMIUM DESIGN
========================================= */

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-heading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-heading.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Section Decorations */
.section-decorated {
    position: relative;
}

.section-decorated::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.section-decorated::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.section-decorated > * {
    position: relative;
    z-index: 1;
}

/* Modern Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-brand {
    background: var(--accent-color);
    border: none;
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.btn-brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-brand:hover::after {
    left: 100%;
}

/* Enhanced Cards with Glassmorphism Effect */
.package-card-img,
.top-deal-image {
    position: relative;
    overflow: hidden;
}

.package-card-img::after,
.top-deal-image::after {
    display: none;
}

/* Modern Input Enhancements */
.form-control,
.form-select {
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 56, 0.15);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.15), 0 4px 12px rgba(255, 122, 0, 0.1);
    transform: translateY(-1px);
}

/* Decorative Shapes for Sections */
.modern-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape-blur-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 0, 56, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.shape-blur-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    filter: blur(60px);
    animation: float 25s ease-in-out infinite reverse;
}

/* Ensure shapes don't interfere with content */
.container.position-relative {
    z-index: 2;
}

.container.position-relative .modern-shape {
    z-index: 0;
}

/* Enhanced Typography with Gradients */
h1, h2, h3 {
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-mixed);
    border-radius: 2px;
    opacity: 0.6;
}

/* Premium Badge Styles */
.label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-soft);
    border: 1px solid rgba(75, 0, 56, 0.1);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.label:hover::before {
    left: 100%;
}

/* Modern Divider Enhancement */
.modern-divider {
    display: none;
}

/* Enhanced Hero Section */
.hero-slide {
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(75, 0, 56, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 122, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    z-index: 2;
}

.hero-content {
    z-index: 3;
}

/* Premium Card Hover Effects */
.package-card-img img,
.top-deal-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-card-img img,
.top-deal-card:hover .top-deal-image img {
    transform: scale(1.05);
}

/* Glassmorphism Effect for Search Cards - Enhanced with purple colors */
.home-search-card {
    backdrop-filter: blur(10px);
}

/* Enhanced Section Headings */
.section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-mixed);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.section.animate-in h2::before {
    transform: scaleX(1);
}

/* Premium Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Enhanced Footer */
.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.5), transparent);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-mixed);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Premium Text Effects */
.gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.5;
}

/* Enhanced Package Card Images */
.package-card-img {
    position: relative;
}

.package-card-img::before {
    display: none;
}

/* Modern Section Spacing with Visual Interest */
.section {
    position: relative;
}

.section + .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(75, 0, 56, 0.1), transparent);
}

/* Premium Badge Animations */
.badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Enhanced Form Elements */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.form-control:focus,
.form-select:focus {
    background: #ffffff;
}

/* Modern Card Overlay Effects */
.package-card-overlay {
    display: none !important;
}

/* Premium Section Transitions */
.section {
    transition: background 0.3s ease;
}

/* Enhanced Visual Hierarchy */
.text-center h2 {
    margin-bottom: 1.5rem;
}

.subheading {
    color: #666;
    font-weight: 400;
    line-height: 1.8;
}

/* Modern Icon Enhancements */
.fas, .fab {
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn:hover .fas,
.btn:hover .fab,
.nav-link:hover .fas {
    transform: scale(1.1);
}

/* Premium Shadow System */
.shadow-premium {
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(75, 0, 56, 0.05);
}

.shadow-premium-hover:hover {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(75, 0, 56, 0.1);
}

/* Responsive Animation Adjustments */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   ALIGNMENT & STYLING FIXES
========================================= */

/* Ensure proper container alignment */
.container {
    position: relative;
    z-index: 1;
}

/* Fix row alignment */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix section content alignment */
.section > .container {
    position: relative;
    z-index: 2;
}

.section-light > .container,
.section-white > .container {
    position: relative;
    z-index: 2;
}

/* Fix decorative shapes positioning */
.section-decorated .container {
    position: relative;
    z-index: 2;
}

.section-decorated .modern-shape {
    z-index: 0;
}

/* Ensure content is clickable above backgrounds */
.section-light::after,
.section-white::before,
.section-white::after,
.section-decorated::before,
.section-decorated::after {
    pointer-events: none;
}

/* Fix heading alignment */
h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

h2:not(.text-center)::after {
    display: none;
}

/* Fix card alignment in grids */
.package-card,
.card {
    margin-bottom: 30px;
}

/* Ensure proper spacing */
.section + .section {
    margin-top: 0;
}

/* Fix navbar z-index */
.navbar.fixed-top,
.top-header-bar.fixed-top {
    z-index: 1050 !important;
}

.top-header-bar.fixed-top {
    z-index: 1060 !important;
}

/* Fix overflow issues */
body {
    overflow-x: hidden;
}

.section {
    overflow-x: hidden;
}

.section-decorated {
    overflow: hidden;
}

/* Responsive alignment fixes */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .modern-shape {
        display: none; /* Hide decorative shapes on mobile */
    }
}

/* =========================================
   ENHANCED ANIMATIONS - EVERYWHERE!
========================================= */

/* Fade In Animation */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Slide Up Animation */
.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Up with Delay */
.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Scale In Animation */
.animate-scale-in {
    animation: scaleIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale-in-delay {
    animation: scaleIn 0.6s ease-out 0.6s forwards;
    opacity: 0;
    transform: scale(0.8);
}

/* Fade In with Delays */
.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

/* Bounce In Animation */
.animate-bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In Animation */
.animate-rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
}

@keyframes rotateIn {
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Float Animation for Cards */
.animate-float {
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse Animation */
.animate-pulse {
    animation: pulseAnim 2s ease-in-out infinite;
}

@keyframes pulseAnim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* Shake Animation on Hover */
.animate-shake:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Label Animation */
.label {
    animation: labelSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes labelSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Heading Animation */
h2 {
    animation: headingFadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes headingFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Divider Animation */
.modern-divider {
    display: none;
}

@keyframes dividerGrow {
    to {
        transform: scaleX(1);
    }
}

/* Card Stagger Animation */
.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }

/* Button Hover Animation */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Icon Animation */
.fas, .fab {
    transition: all 0.3s ease;
}

.btn:hover .fas,
.btn:hover .fab,
.nav-link:hover .fas {
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.2) translateY(-3px); }
}

/* =========================================
   PROMOTIONAL BANNERS - INFINITE SCROLLING STRIP
========================================= */

.promotional-banners-section {
    padding: 25px 0;
    overflow: hidden;
}

.promotional-banners-strip-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: 0;
}

.promotional-banners-strip {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scrollBannersStrip 40s linear infinite;
    will-change: transform;
}

.promotional-banner-strip-item {
    flex-shrink: 0;
    width: 400px;
    height: 155px;
    position: relative;
}

.promotional-banner-strip-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.promotional-banner-strip-card {
    width: 99%;
    height: 155px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    border: 2px solid rgba(75, 0, 56, 0.08);
}

/* Mobile */
@media (max-width: 768px){
    .promotional-banner-strip-card{
        height: 108px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px){
    .promotional-banner-strip-card{
        height: 130px;
    }
}

/* Large screens */
@media (min-width: 1400px){
    .promotional-banner-strip-card{
        height: 160px;
    }
}

.promotional-banner-strip-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.3);
}

.promotional-banner-strip-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.promotional-banner-strip-card:hover .promotional-banner-strip-image {
    transform: scale(1.03);
}

@keyframes scrollBannersStrip {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.promotional-banners-strip-wrapper:hover .promotional-banners-strip {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 992px) {
    .promotional-banner-strip-item {
        width: 350px;
        height: 130px;
    }
    
    .promotional-banners-strip {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .promotional-banner-strip-item {
        width: 300px;
        height: 108px;
    }
    
    .promotional-banners-strip {
        gap: 12px;
        animation-duration: 30s;
    }
    
    .promotional-banners-strip-wrapper {
        margin: 0;
        padding: 15px 0;
    }
}

@media (max-width: 576px) {
    .promotional-banner-strip-item {
        width: 280px;
        height: 90px;
    }
    
    .promotional-banners-strip {
        gap: 10px;
        animation-duration: 25s;
    }
}

/* Responsive Animation Adjustments */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .promotional-banners-strip {
        animation: none;
    }
}

/* =========================================
   HOME PAGE POPUP MODAL - Same as Enquiry
========================================= */

#homePopupModal {
    z-index: 10000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
}

/* Desktop: prevent outer home popup container from scrolling;
   scrolling remains inside the modal body/content only */
@media (min-width: 992px) {
    #homePopupModal {
        overflow: hidden !important;
    }
}

#homePopupModal.show {
    display: block !important;
}

#homePopupModal .modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

#homePopupModal .modal-dialog {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10001 !important;
    max-width: 800px;
    width: 85%;
    max-height: 85vh;
    margin: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    padding: 20px 0;
}

#homePopupModal .modal-dialog .modal-content {
    pointer-events: auto;
    max-height: 85vh;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Popup Image Wrapper - Replaces Form Area */
.popup-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.popup-image-display {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    display: block;
}

/* Ensure right block doesn't scroll for popup */
#homePopupModal .enquiry-modal-right {
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    height: 100% !important;
    max-height: 600px !important;
}

#homePopupModal .popup-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

#homePopupModal .popup-image-display {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    display: block !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #homePopupModal .modal-dialog {
        width: 95%;
        max-height: 95vh;
    }
    
    .enquiry-modal-body {
        flex-direction: column;
        min-height: auto;
    }
    
    .enquiry-modal-left {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        max-height: 300px;
        padding: 25px 20px;
    }
    
    .popup-image-wrapper {
        width: 100%;
        padding: 0;
        min-height: 300px;
        overflow: hidden;
    }
    
    #homePopupModal .popup-image-display {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    #homePopupModal .enquiry-modal-right {
        overflow: hidden !important;
    }
    
    .enquiry-modal-banner {
        height: 60px;
    }
    
    .enquiry-modal-logo {
        max-height: 60px;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.4rem;
    }
}

/* Home popup: show only image on tablet & mobile (<992px) */
@media (max-width: 991.98px) {
    /* Hide left content column completely */
    #homePopupModal .enquiry-modal-left {
        display: none !important;
    }

    /* Make right/image column full width */
    #homePopupModal .enquiry-modal-right {
        width: 100% !important;
        max-height: none !important;
        padding: 0 !important;
        background: transparent !important;
        overflow: hidden !important;
    }

    /* Ensure image wrapper fills popup and centers image */
    #homePopupModal .popup-image-wrapper {
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        min-height: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Image should take full width, keep aspect ratio, centered */
    #homePopupModal .popup-image-display {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

@media (max-width: 576px) {
    .enquiry-modal-left {
        padding: 20px 15px;
        max-height: 250px;
    }
    
    .popup-image-wrapper {
        padding: 0;
        min-height: 250px;
        overflow: hidden;
    }
    
    #homePopupModal .popup-image-display {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    #homePopupModal .enquiry-modal-right {
        overflow: hidden !important;
    }
    
    .enquiry-modal-banner {
        height: 60px;
    }
    
    .enquiry-modal-logo {
        max-height: 50px;
        margin-bottom: 10px;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.2rem;
    }
}

/* =========================================
   ENQUIRY POPUP MODAL - REFERENCE STYLE
========================================= */

#enquiryModal {
    z-index: 10000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

#enquiryModal.show {
    display: block !important;
}

#enquiryModal .modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

#enquiryModal .modal-dialog {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10001 !important;
    max-width: 800px;
    width: 85%;
    margin: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    padding: 20px 0;
}

#enquiryModal .modal-dialog .modal-content {
    pointer-events: auto;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: visible;
    display: flex;
    flex-direction: column;
}

.enquiry-modal-content {
    border-radius: 0;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: visible;
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    opacity: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enquiry-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.enquiry-modal-close::before {
    content: '×';
    color: white;
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
}

/* Top Banner */
.enquiry-modal-banner {
    width: 100%;
    height: 60px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 56, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(75, 0, 56, 0.95) 0%, rgba(107, 0, 72, 0.95) 50%, rgba(255, 122, 0, 0.95) 100%);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.enquiry-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.enquiry-banner-logo-center {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    z-index: 1;
}

.enquiry-modal-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 0 !important;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.enquiry-modal-title-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Modal Body - Two Column Layout */
.enquiry-modal-body {
    display: flex;
    min-height: 400px;
    overflow: hidden;
    flex: 1;
    overflow-y: auto;
}

.enquiry-modal-left {
    width: 45%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-right: 2px solid #e0e0e0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 600px;
}

.enquiry-modal-right {
    width: 55%;
    padding: 40px 35px;
    background: #ffffff;
    overflow-y: auto;
    max-height: 600px;
}

/* For home popup - ensure left can scroll but right cannot */
#homePopupModal .enquiry-modal-body {
    overflow: hidden !important;
    max-height: 600px !important;
}

#homePopupModal .enquiry-modal-left {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Left Side Features */
.enquiry-features {
    margin-bottom: 30px;
}

.enquiry-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.enquiry-feature-item:last-child {
    border-bottom: none;
}

.enquiry-feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Contact Information */
.enquiry-contact-info {
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.enquiry-contact-info h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
    width: 24px;
}

.contact-detail strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.contact-detail a,
.contact-detail span {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

/* Right Side Form */
.enquiry-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.enquiry-form-group {
    margin-bottom: 18px;
}

.enquiry-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.enquiry-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(75, 0, 56, 0.1);
}

.enquiry-form-input::placeholder {
    color: #999;
}

.enquiry-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.enquiry-submit-btn:hover {
    background: linear-gradient(135deg, #444 0%, #666 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.enquiry-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.enquiry-form-footer {
    text-align: center;
    margin: 20px 0 15px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.enquiry-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.facebook-btn {
    background: #1877f2;
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.youtube-btn {
    background: #ff0000;
}

.youtube-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
}

/* Success Message */
.enquiry-success-message {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    border: 2px solid #28a745;
}

.enquiry-success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

.enquiry-success-message h5 {
    color: #155724;
    font-weight: 700;
    margin-bottom: 10px;
}

.enquiry-success-message p {
    color: #155724;
    margin: 0;
}

/* Package Enquiry Success Message */
.package-enquiry-success {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    border: 2px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.package-enquiry-success i {
    font-size: 2.5rem;
    color: #28a745;
    flex-shrink: 0;
}

.package-enquiry-success div {
    flex: 1;
}

.package-enquiry-success strong {
    display: block;
    color: #155724;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.package-enquiry-success p {
    color: #155724;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .enquiry-modal-body {
        flex-direction: column-reverse;
        display: flex;
    }
    
    .enquiry-modal-left,
    .enquiry-modal-right {
        width: 100%;
        max-height: none;
    }
    
    .enquiry-modal-right {
        order: 1;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .enquiry-modal-left {
        order: 2;
        border-right: none;
        border-bottom: none;
        border-top: 2px solid #e0e0e0;
    }
    
    .enquiry-modal-banner {
        height: 140px;
    }
    
    .enquiry-modal-logo {
        max-height: 60px;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    #enquiryModal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .enquiry-modal-body {
        flex-direction: column-reverse !important;
        display: flex !important;
    }
    
    .enquiry-modal-right {
        order: 1 !important;
        border-bottom: 2px solid #e0e0e0 !important;
    }
    
    .enquiry-modal-left {
        order: 2 !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: 2px solid #e0e0e0 !important;
    }
    
    .enquiry-modal-left,
    .enquiry-modal-right {
        padding: 25px 20px;
        width: 100% !important;
    }
    
    .enquiry-modal-banner {
        height: 60px;
    }
    
    .enquiry-banner-overlay {
        padding: 15px 20px;
    }
    
    .enquiry-modal-logo {
        max-height: 50px;
        margin-bottom: 0 !important;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .enquiry-banner-logo-center {
        gap: 12px !important;
    }
    
    .enquiry-form-title {
        font-size: 1.2rem;
    }
}

/* =========================================
   MODALS RESPONSIVE - 4 VIEW TYPES
   (Home Popup Modal & Enquiry Modal)
========================================= */

/* Mobile view (<768px) */
@media (max-width: 767.98px) {
    /* Both modals - common mobile styles */
    #homePopupModal .modal-dialog,
    #enquiryModal .modal-dialog {
        width: 95% !important;
        max-width: calc(100% - 20px) !important;
        max-height: 95vh !important;
        margin: 0 !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    #homePopupModal .modal-content,
    #enquiryModal .modal-content {
        max-height: 95vh !important;
        border-radius: 16px;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .enquiry-modal-close {
        width: 36px !important;
        height: 36px !important;
        top: 12px !important;
        right: 12px !important;
    }

    .enquiry-modal-close::before {
        font-size: 24px !important;
    }

    /* Banner section */
    .enquiry-modal-banner {
        height: 60px !important;
    }

    .enquiry-banner-overlay {
        padding: 12px 16px !important;
    }

    .enquiry-modal-logo {
        max-height: 45px !important;
        margin-bottom: 0 !important;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.1rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
    
    .enquiry-banner-logo-center {
        gap: 12px !important;
    }

    /* Modal body - reorder: right (image/form) first, then left (features) below */
    .enquiry-modal-body {
        flex-direction: column-reverse !important;
        display: flex !important;
        min-height: auto !important;
        max-height: calc(95vh - 110px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .enquiry-modal-left,
    .enquiry-modal-right {
        width: 100% !important;
        padding: 20px 16px !important;
        max-height: none !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        align-self: stretch !important;
    }

    .enquiry-modal-right {
        order: 1 !important;
        border-bottom: 2px solid #e0e0e0 !important;
        flex-shrink: 0 !important;
    }

    .enquiry-modal-left {
        order: 2 !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: 2px solid #e0e0e0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure modal content scrolls as single unit */
    #homePopupModal .modal-content,
    #enquiryModal .modal-content {
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    /* Remove individual scrolling from left/right sections on mobile */
    #homePopupModal .enquiry-modal-left,
    #enquiryModal .enquiry-modal-left {
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }
    
    #homePopupModal .enquiry-modal-right,
    #enquiryModal .enquiry-modal-right {
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }

    /* Home popup image */
    #homePopupModal .enquiry-modal-left {
        max-height: 300px !important;
        padding: 0 !important;
    }

    .popup-image-wrapper {
        min-height: 280px !important;
        padding: 0 !important;
    }

    #homePopupModal .popup-image-display {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Form elements */
    .enquiry-form-title {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }

    .enquiry-form-group {
        margin-bottom: 14px !important;
    }

    .enquiry-form-input {
        padding: 12px 14px !important;
        font-size: 0.9rem !important;
    }

    .enquiry-submit-btn {
        padding: 14px !important;
        font-size: 0.95rem !important;
    }

    /* Features and contact info */
    .enquiry-feature-item {
        padding: 10px 0 !important;
        font-size: 0.85rem !important;
    }

    .enquiry-feature-item i {
        font-size: 1rem !important;
        width: 20px !important;
    }

    .enquiry-contact-info {
        padding-top: 16px !important;
    }

    .enquiry-contact-info h6 {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    .contact-detail {
        gap: 12px !important;
        margin-bottom: 16px !important;
    }

    .contact-detail i {
        font-size: 1rem !important;
        width: 20px !important;
    }

    .contact-detail strong,
    .contact-detail a,
    .contact-detail span {
        font-size: 0.85rem !important;
    }

    /* Social links */
    .enquiry-social-links {
        gap: 8px !important;
    }

    .social-btn {
        padding: 10px !important;
        font-size: 0.8rem !important;
    }

    /* Success message */
    .enquiry-success-message {
        padding: 30px 18px !important;
    }

    .enquiry-success-message i {
        font-size: 2.5rem !important;
        margin-bottom: 12px !important;
    }

    .enquiry-success-message h5 {
        font-size: 1.1rem !important;
    }

    .enquiry-success-message p {
        font-size: 0.9rem !important;
    }
}

/* Tablet view (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Both modals - common tablet styles */
    #homePopupModal .modal-dialog,
    #enquiryModal .modal-dialog {
        width: 85% !important;
        max-width: 900px !important;
        max-height: 92vh !important;
        margin: 0 !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    #homePopupModal .modal-content,
    #enquiryModal .modal-content {
        max-height: 92vh !important;
        border-radius: 20px;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .enquiry-modal-close {
        width: 38px !important;
        height: 38px !important;
        top: 14px !important;
        right: 14px !important;
    }

    .enquiry-modal-close::before {
        font-size: 26px !important;
    }

    /* Banner section */
    .enquiry-modal-banner {
        height: 60px !important;
    }

    .enquiry-banner-overlay {
        padding: 18px 24px !important;
    }

    .enquiry-modal-logo {
        max-height: 65px !important;
        margin-bottom: 0 !important;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.5rem !important;
        white-space: nowrap !important;
    }
    
    .enquiry-banner-logo-center {
        gap: 18px !important;
    }

    /* Modal body - reorder: right (image/form) first, then left (features) below */
    .enquiry-modal-body {
        flex-direction: column-reverse !important;
        display: flex !important;
        min-height: auto !important;
        max-height: calc(92vh - 150px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .enquiry-modal-left,
    .enquiry-modal-right {
        width: 100% !important;
        padding: 28px 24px !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        align-self: stretch !important;
    }

    .enquiry-modal-right {
        order: 1 !important;
        border-bottom: 2px solid #e0e0e0 !important;
    }

    .enquiry-modal-left {
        order: 2 !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: 2px solid #e0e0e0 !important;
    }
    
    /* Ensure modal content scrolls as single unit */
    #homePopupModal .modal-content,
    #enquiryModal .modal-content {
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    /* Remove individual scrolling from left/right sections on tablet */
    #homePopupModal .enquiry-modal-left,
    #enquiryModal .enquiry-modal-left {
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }
    
    #homePopupModal .enquiry-modal-right,
    #enquiryModal .enquiry-modal-right {
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }

    /* Home popup image */
    #homePopupModal .enquiry-modal-left {
        max-height: 350px !important;
        padding: 0 !important;
    }

    .popup-image-wrapper {
        min-height: 320px !important;
    }

    /* Form elements */
    .enquiry-form-title {
        font-size: 1.3rem !important;
        margin-bottom: 22px !important;
    }

    .enquiry-form-input {
        padding: 13px 16px !important;
        font-size: 0.93rem !important;
    }

    .enquiry-submit-btn {
        padding: 15px !important;
        font-size: 0.98rem !important;
    }

    /* Features and contact info */
    .enquiry-feature-item {
        padding: 11px 0 !important;
        font-size: 0.88rem !important;
    }

    .enquiry-contact-info h6 {
        font-size: 0.98rem !important;
        margin-bottom: 18px !important;
    }

    .contact-detail {
        margin-bottom: 18px !important;
    }

    .contact-detail strong,
    .contact-detail a,
    .contact-detail span {
        font-size: 0.88rem !important;
    }
}

/* Desktop view (≥992px and <1200px) - default sizes are fine */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #homePopupModal .modal-dialog,
    #enquiryModal .modal-dialog {
        max-width: 750px !important;
        
        align-items: flex-start !important;
        padding: 20px 0 !important;
    }

    .enquiry-modal-content {
    height: 85vh;          /* fixed height */
    overflow: hidden;      /* 🚨 prevents outer scroll */
}

    .enquiry-modal-banner {
        height: 50px !important;
    }
    
    .enquiry-banner-overlay {
        padding: 10px 20px !important;
    }

    .enquiry-modal-logo {
        max-height: 45px !important;
        margin-bottom: 0 !important;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.3rem !important;
        white-space: nowrap !important;
    }
    
    .enquiry-banner-logo-center {
        gap: 16px !important;
    }

    .enquiry-modal-body {
        flex-direction: row !important;
        display: flex !important;
        min-height: 380px !important;
    }

.enquiry-modal-body {
    height: calc(100% - 100px);  /* fill modal */
    overflow: hidden;            /* no outer scroll */
}

    .enquiry-modal-left {
        width: 45% !important;
        padding: 35px 28px !important;
        max-height: 580px !important;
        border-right: 2px solid #e0e0e0 !important;
        border-top: none !important;
        border-bottom: none !important;
        order: 0 !important;
        overflow-y: auto !important;
    }

    .enquiry-modal-right {
        width: 55% !important;
        padding: 35px 32px !important;
        max-height: 580px !important;
        border-bottom: none !important;
        border-top: none !important;
        order: 0 !important;
        overflow-y: auto !important;
    }

    /* Home popup: swap image to left, features to right */
    #homePopupModal .enquiry-modal-left {
        order: 2 !important;
        width: 45% !important;
        border-right: none !important;
        border-left: 2px solid #e0e0e0 !important;
        padding: 35px 28px !important;
        max-height: 580px !important;
    }

    #homePopupModal .enquiry-modal-right {
        order: 1 !important;
        width: 55% !important;
        padding: 0 !important;
        max-height: 580px !important;
    }

    .popup-image-wrapper {
        min-height: 500px !important;
    }
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
    /* Both modals - common large screen styles */
    #homePopupModal .modal-dialog,
    #enquiryModal .modal-dialog {
        max-width: 850px !important;
        
        align-items: flex-start !important;
        padding: 20px 0 !important;
    }
    
    .enquiry-modal-content {
    height: 85vh;          /* fixed height */
    overflow: hidden;      /* 🚨 prevents outer scroll */
}

    #homePopupModal .modal-content,
    #enquiryModal .modal-content {
        max-height: 90vh !important;
        border-radius: 24px;
    }

    .enquiry-modal-close {
        width: 42px !important;
        height: 42px !important;
        top: 18px !important;
        right: 18px !important;
    }

    .enquiry-modal-close::before {
        font-size: 30px !important;
    }

    /* Banner section */
    .enquiry-modal-banner {
        height: 70px !important;
    }

    .enquiry-banner-overlay {
        padding: 12px 25px !important;
    }

    .enquiry-modal-logo {
        max-height: 55px !important;
        margin-bottom: 0 !important;
    }
    
    .enquiry-modal-title-text {
        font-size: 1.5rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }
    
    .enquiry-banner-logo-center {
        gap: 20px !important;
    }

    /* Modal body */
    .enquiry-modal-body {
        flex-direction: row !important;
        display: flex !important;
        min-height: 450px !important;
            }
            
            .enquiry-modal-body {
    height: calc(100% - 100px);  /* fill modal */
    overflow: hidden;            /* no outer scroll */
}

    .enquiry-modal-left {
        width: 45% !important;
        padding: 45px 35px !important;
      
        border-right: 2px solid #e0e0e0 !important;
        border-top: none !important;
        border-bottom: none !important;
        order: 0 !important;
        overflow-y: auto !important;
    }

    .enquiry-modal-right {
        width: 55% !important;
        padding: 45px 40px !important;
    
        border-bottom: none !important;
        border-top: none !important;
        order: 0 !important;
        overflow-y: auto !important;
    }

    /* Home popup: swap image to left, features to right */
    #homePopupModal .enquiry-modal-left {
        order: 2 !important;
        width: 45% !important;
        border-right: none !important;
        border-left: 2px solid #e0e0e0 !important;
        padding: 45px 35px !important;
   
    }

    #homePopupModal .enquiry-modal-right {
        order: 1 !important;
        width: 55% !important;
        padding: 0 !important;
   
    }

    .popup-image-wrapper {
        min-height: 600px !important;
        padding: 50px 40px !important;
    }

    #homePopupModal .popup-image-display {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Form elements */
    .enquiry-form-title {
        font-size: 1.5rem !important;
        margin-bottom: 28px !important;
    }

    .enquiry-form-group {
        margin-bottom: 20px !important;
    }

    .enquiry-form-input {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .enquiry-submit-btn {
        padding: 18px !important;
        font-size: 1.05rem !important;
    }

    /* Features and contact info */
    .enquiry-features {
        margin-bottom: 35px !important;
    }

    .enquiry-feature-item {
        padding: 14px 0 !important;
        font-size: 0.95rem !important;
        gap: 14px !important;
    }

    .enquiry-feature-item i {
        font-size: 1.15rem !important;
        width: 26px !important;
    }

    .enquiry-contact-info {
        padding-top: 25px !important;
    }

    .enquiry-contact-info h6 {
        font-size: 1.05rem !important;
        margin-bottom: 22px !important;
    }

    .contact-detail {
        gap: 16px !important;
        margin-bottom: 22px !important;
    }

    .contact-detail i {
        font-size: 1.25rem !important;
        width: 26px !important;
    }

    .contact-detail strong,
    .contact-detail a,
    .contact-detail span {
        font-size: 0.95rem !important;
    }

    /* Social links */
    .enquiry-social-links {
        gap: 12px !important;
    }

    .social-btn {
        padding: 14px !important;
        font-size: 0.9rem !important;
    }

    /* Success message */
    .enquiry-success-message {
        padding: 45px 25px !important;
    }

    .enquiry-success-message i {
        font-size: 3.5rem !important;
        margin-bottom: 18px !important;
    }

    .enquiry-success-message h5 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }

    .enquiry-success-message p {
        font-size: 1rem !important;
    }
}

/* =========================================
   OUR PACKAGE INCLUDES SECTION
========================================= */

/* Hide Package Includes section - commented out in home.php but keeping CSS for future use */
.package-includes-section {
    display: none !important;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.package-includes-row {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 30px;
}

.package-include-col {
    flex: 1;
    min-width: 0;
}

.package-include-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e8e8e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.package-include-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-include-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.package-include-card:hover::before {
    transform: scaleX(1);
}

.package-include-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(75, 0, 56, 0.1) 100%);
    border: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.package-include-card:hover .package-include-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: scale(1.1) rotate(5deg);
}

.package-include-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.package-include-card:hover .package-include-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.package-include-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.package-include-card:hover .package-include-heading {
    color: var(--primary-color);
}

.package-include-description {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .package-include-card {
        padding: 20px 12px;
    }
    
    .package-include-icon {
        width: 55px;
        height: 55px;
    }
    
    .package-include-icon i {
        font-size: 1.3rem;
    }
    
    .package-include-heading {
        font-size: 1rem;
    }
    
    .package-include-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .package-includes-section {
        padding: 20px 0;
    }
    
    .package-includes-row {
        flex-wrap: wrap;
        margin-top: 25px;
    }
    
    .package-include-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .package-include-card {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .package-includes-section {
        padding: 20px 0;
    }
    
    .package-includes-row {
        margin-top: 20px;
    }
    
    .package-include-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .package-include-icon {
        width: 50px;
        height: 50px;
    }
    
    .package-include-icon i {
        font-size: 1.2rem;
    }
    
    .package-include-heading {
        font-size: 0.95rem;
    }
    
    .package-include-description {
        font-size: 0.75rem;
    }
}

/* =========================================
   KASHI YATRA PROMOTIONAL BANNER
========================================= */

.kashi-yatra-banner-section {
    padding: 0;
    position: relative;
}

.kashi-yatra-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 220px;
    background-image: url('../images/varanasi.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    image-rendering: auto;
}

.kashi-yatra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.kashi-yatra-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.kashi-yatra-headline {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.kashi-yatra-subheadline {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.kashi-yatra-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.kashi-yatra-btn:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.kashi-yatra-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .kashi-yatra-banner {
        min-height: 200px;
    }
    
    .kashi-yatra-content {
        padding: 40px 25px;
        min-height: 200px;
    }
    
    .kashi-yatra-headline {
        font-size: 1.8rem;
    }
    
    .kashi-yatra-subheadline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .kashi-yatra-banner {
        min-height: 180px;
    }
    
    .kashi-yatra-content {
        padding: 35px 20px;
        min-height: 180px;
    }
    
    .kashi-yatra-headline {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .kashi-yatra-subheadline {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .kashi-yatra-btn {
        font-size: 1rem;
        padding: 12px 28px;
    }
}

@media (max-width: 576px) {
    .kashi-yatra-banner {
        min-height: 160px;
    }
    
    .kashi-yatra-content {
        padding: 30px 15px;
        min-height: 160px;
    }
    
    .kashi-yatra-headline {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .kashi-yatra-subheadline {
        font-size: 0.9rem;
    }
    
    .kashi-yatra-btn {
        font-size: 0.95rem;
        padding: 10px 24px;
    }
}

@media (max-width: 576px) {
    .package-include-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE UPDATES
   Full Device Coverage: Mobile to Ultra-Wide
   ============================================ */

/* ============================================
   PACKAGE DETAIL PAGE RESPONSIVE
   ============================================ */

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .package-detail-main .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .package-detail-main .col-lg-7 {
        max-width: 58.333333%;
    }
    
    .package-detail-main .col-lg-5 {
        max-width: 41.666667%;
    }
    
    .package-sidebar {
        margin-right: 100px;
    }
}

/* Large Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .package-detail-main .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .package-sidebar {
        margin-right: 80px;
    }
}

/* Desktop (1400px - 1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
    .package-detail-main .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .package-sidebar {
        margin-right: 70px;
    }
}

/* Laptop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .package-detail-main .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    
    .package-detail-main .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    
    .package-sidebar {
        margin-right: 60px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .package-detail-main .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-detail-main .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-sidebar {
        position: static !important;
        margin-right: 0;
        margin-top: 30px;
    }
    
    .package-sidebar .sticky-top {
        position: static !important;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .package-detail-main .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-detail-main .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-sidebar {
        position: static !important;
        margin-right: 0;
        margin-top: 30px;
    }
    
    .package-sidebar .sticky-top {
        position: static !important;
    }
    
    .package-tag {
        top: 10px;
        left: 0;
        padding: 5px 14px 5px 6px;
        font-size: 0.65rem;
        min-width: 70px;
        max-width: calc(100% - 20px);
    }
    
    .package-tag::after {
        right: -6px;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 6px solid #f7931e;
    }
    
    .itinerary-day-title::after {
        right: -20px;
        height: 35px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .package-detail-main .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-detail-main .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-sidebar {
        position: static !important;
        margin-right: 0;
        margin-top: 20px;
    }
    
    .package-sidebar .sticky-top {
        position: static !important;
    }
    
    .package-tag {
        top: 8px;
        left: 0;
        padding: 4px 12px 4px 5px;
        font-size: 0.6rem;
        min-width: 60px;
        max-width: calc(100% - 16px);
    }
    
    .package-tag::after {
        right: -5px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 5px solid #f7931e;
    }
    
    .package-content-box {
        padding: 18px;
    }
    
    .quick-info-item {
        padding: 16px;
        gap: 14px;
        border-radius: 12px;
        min-height: 85px;
    }
    
    .quick-info-item i {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.2rem;
        border-radius: 10px;
    }
    
    .quick-info-item strong {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    .quick-info-item span {
        font-size: 0.95rem;
    }
    
    .itinerary-day-header {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .itinerary-day-number {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .itinerary-day-title::after {
        right: -15px;
        height: 35px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .package-detail-main .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-detail-main .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-sidebar {
        position: static !important;
        margin-right: 0;
        margin-top: 20px;
    }
    
    .package-sidebar .sticky-top {
        position: static !important;
    }
    
    .package-tag {
        top: 8px;
        left: 0;
        padding: 4px 10px 4px 4px;
        font-size: 0.55rem;
        min-width: 50px;
        max-width: calc(100% - 12px);
        line-height: 1.2;
    }
    
    .package-tag::after {
        right: -4px;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-left: 4px solid #f7931e;
    }
    
    .package-content-box {
        padding: 15px;
    }
    
    .quick-info-item {
        padding: 14px;
        gap: 12px;
        flex-direction: row;
        text-align: left;
        border-radius: 12px;
        min-height: 80px;
    }
    
    .quick-info-item i {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .quick-info-item strong {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }
    
    .quick-info-item span {
        font-size: 0.9rem;
    }
    
    .itinerary-day-header {
        padding: 10px 12px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .itinerary-day-number {
        width: 45px;
        height: 45px;
        font-size: 0.85rem;
    }
    
    .itinerary-day-title h5 {
        font-size: 0.95rem;
    }
    
    .itinerary-day-title::after {
        display: none; /* Hide divider on mobile */
    }
    
    .itinerary-day-arrow {
        width: 35px;
        height: 35px;
    }
    
    .section-heading {
        font-size: 1.3rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
}

/* ============================================
   PACKAGE CARDS RESPONSIVE
   ============================================ */

/* Ultra-wide (2560px+) */
@media (min-width: 2560px) {
    .package-card-img {
        height: 220px;
    }
    
    .package-tag {
        top: 15px;
        padding: 7px 20px 7px 8px;
        font-size: 0.75rem;
    }
}

/* Large Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .package-card-img {
        height: 210px;
    }
}

/* Desktop (1400px - 1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
    .package-card-img {
        height: 200px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .package-card-img {
        height: 180px;
    }
    
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .package-card-img {
        height: 160px;
    }
    
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-category-section {
        margin-bottom: 2.5rem;
    }
    
    .package-category-section h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   HOME PAGE COMPONENTS RESPONSIVE
   ============================================ */

/* Ultra-wide (2560px+) */
@media (min-width: 2560px) {
    .top-deal-card {
        min-width: 320px;
    }
    
    .top-deal-image {
        height: 220px;
    }
}

/* Large Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .top-deal-card {
        min-width: 300px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .top-deal-card {
        min-width: 280px;
    }
    
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .top-deal-card {
        min-width: 250px;
    }
    
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .home-search-card {
        padding: 20px;
    }
    
    .home-search-form .row {
        gap: 15px;
    }
}

/* ============================================
   NAVBAR RESPONSIVE
   ============================================ */

/* Tablet and below */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 1rem;
    }
    
    .filter-buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-nav .btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* ============================================
   FLOATING BUTTONS RESPONSIVE
   ============================================ */

/* Tablet and below */
@media (max-width: 991px) {
    .floating-contact {
        right: 0 !important;
        bottom: 90px !important;
        padding: 18px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .floating-whatsapp {
        bottom: 25px !important;
        right: 25px !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .floating-contact {
        bottom: 85px !important;
        padding: 16px 8px !important;
        font-size: 0.75rem !important;
    }
    
    .floating-whatsapp {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 26px !important;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .floating-contact {
        bottom: 75px !important;
        padding: 14px 6px !important;
        font-size: 0.7rem !important;
    }
    
    .floating-whatsapp {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
}

/* ============================================
   SEARCH BAR RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .home-search-form .col-md-3,
    .home-search-form .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .home-search-form .col-md-3,
    .home-search-form .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .home-search-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .home-search-tabs .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* ============================================
   RESPONSIVE CONTAINERS
   ============================================ */

@media (min-width: 2560px) {
    .container {
        max-width: calc(100% - 50px); /* 25px on each side = ~2cm total */
        padding-left: 25px;
        padding-right: 25px;
    }
}








/* ============================================
   Package view page 
   ============================================ */


/* Package page – Download PDF button improvement */
.package-sidebar-card .btn-brand{
    font-size:17px;
    padding:16px 22px;
    border-radius:14px;
    font-weight:600;
    letter-spacing:0.3px;
}

.package-sidebar-card .btn-brand i{
    font-size:18px;
}

/* Package page WhatsApp enquiry button */
#whatsappEnquiryBtn{
    padding:16px 22px;
    font-size:17px;
    font-weight:600;
    border-radius:14px;
}

#whatsappEnquiryBtn i{
    font-size:18px;
}


#whatsappEnquiryBtn{
    background:#25D366;
    border-color:#25D366;
}

/* PACKAGE PAGE MOBILE FIX */
@media (max-width: 768px){

    /* fix navbar offset */
    body{
        padding-top:110px !important;
    }

    /* reduce section spacing */
    .section{
        padding:40px 0 !important;
    }

    /* remove extra top gap */
    .package-title-section{
        margin-top:0 !important;
        padding-top:10px !important;
        padding-bottom:20px !important;
    }

    /* allow gallery to expand properly */
    .package-image-section{
        padding-top:10px !important;
        overflow:visible !important;
    }

    /* stack gallery layout */
    .package-gallery-main{
        grid-template-columns:1fr !important;
        height:auto !important;
    }

    /* fix image container */
    .package-main-image{
        aspect-ratio:auto !important;
        height:auto !important;
    }

    /* control image height */
    .package-hero-img{
        width:100%;
        height:auto !important;
        max-height:320px;
        object-fit:cover;
    }

}


/* Desktop offset (top bar + navbar) */
body{
    padding-top:110px;
}

/* Mobile & tablet (top bar hidden, only navbar) */
@media (max-width: 992px){
    body{
        padding-top:75px;
    }
}

/* make navbar sit below top contact bar */
.main-navbar{
    top:40px;
}





/* ===== MOBILE TOP HEADER FIX ===== */
@media (max-width: 992px){

    .top-header-bar .row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-wrap:nowrap;
    }

    /* make columns auto width instead of full width */
    .top-header-bar .col-md-3,
    .top-header-bar .col-md-6{
        flex:0 0 auto;
        width:auto;
    }

    /* hide scrolling news ticker */
    .top-header-middle{
        display:none !important;
    }

    /* phone left */
    .top-header-contact{
        justify-content:flex-start !important;
        font-size:14px;
    }

    /* social icons right */
    .top-header-social{
        justify-content:flex-end !important;
        gap:8px;
    }

}


/* ===== MOBILE NAVBAR STABLE LAYOUT ===== */

@media (max-width: 992px){

.main-navbar .container{
    display:flex;
    align-items:center;
    position:relative;
}

/* reserve space for hamburger */
.navbar-brand{
    display:flex;
    align-items:center;
    gap:8px;
    padding-right:70px; /* space for toggler */
}

/* main logo */
.navbar-brand img:first-child{
    height:38px !important;
}

/* telugu logo */
.telugu-logo{
    height:20px;
    max-width:110px;
    margin-left:6px;
    object-fit:contain;
}

/* lock hamburger position */
.navbar-toggler{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    z-index:1051;
}

/* menu alignment */
.navbar-collapse{
    margin-top:20px;
    text-align:center;
}

}

/* ===== PARTNER SECTION IMPROVEMENT ===== */

.partner-section .partner-logo{
    max-height:240px;   /* bigger logo */
    width:auto;
    object-fit:contain;

    /* position adjustments */
    margin-top:-30px;   /* move slightly up */
    margin-left:20px;   /* move slightly right */
}

/* keep row width balanced */
.partner-section .row{
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}

/* center logo column vertically */
.partner-section .col-md-4{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* spacing for text side */
.partner-section .col-md-8{
    padding-left:30px;
}

/* mobile adjustments */
@media (max-width:768px){

    .partner-section .partner-logo{
        max-height:150px;
        margin-top:0;
        margin-left:0;
    }

    .partner-section .col-md-8{
        padding-left:0;
        text-align:center;
    }

}



/* deals slider */

.top-deals-slider-wrapper{
overflow:hidden;
position:relative;
}

.static-deals{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}


/* Default slider layout */


/* Static layout ONLY on desktop */
@media (min-width:992px){
    .top-deals-slider.static-deals{
        justify-content:center;
        overflow:visible;
    }
}

/* Force horizontal scroll on mobile */
@media (max-width:991px){
    .top-deals-slider{
        overflow-x:auto;
        flex-wrap:nowrap;
    }

}

/* Top Deals Slider Layout */
.top-deals-slider-wrapper{
    width:100%;
    overflow:hidden;
}

.top-deals-slider{
    display:flex;
    gap:24px;
}


/* Card width for mobile scroll */
@media (max-width:991px){

    .top-deal-card{
        flex:0 0 80%;
        max-width:80%;
    }

}

@media (min-width:992px){

    .top-deal-card{
        flex:0 0 25%;
        max-width:25%;
    }

}


.top-deal-card{
    scroll-snap-align:start;
}


/* Fix blog page hidden under fixed navbar */
@media (min-width:992px){

.blog-offset{
    margin-top:120px;
}

}



/* BLOG PAGE NAVBAR OFFSET */
.blog-page-section{
    padding-top:70px !important;
}


/* BLOG VIEW PAGE NAVBAR OFFSET */
.blog-view-section{
    padding-top:70px !important;
}



.telugu-logo{
    height: 45px !important;
    width: auto;
}

/* Laptop */
@media (min-width: 992px){
    .telugu-logo{
        height: 36px !important;
    }
}

/* Large screens */
@media (min-width: 1400px){
    .telugu-logo{
        height: 37px !important;
    }
}



/* top deal slider */

.top-deals-slider{
    display:flex;
    gap:24px;
    will-change:transform;
}



/* =====================================
   OUR EXPERTS / TOP DEALS SLIDER FIX
===================================== */

.top-deals-slider-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
}

.top-deals-slider{
    display:flex;
    gap:24px;
    will-change:transform;
}

/* CARD BASE */
.top-deal-card{
    flex-shrink:0;
}

/* MOBILE */
@media (max-width:767px){

.top-deal-card{
    width:80%;
}

}

/* TABLET */
@media (min-width:768px) and (max-width:1024px){

.top-deal-card{
    width:45%;
}

}

/* DESKTOP */
@media (min-width:1025px){

.top-deal-card{
    width:23%;
}

}

/* STATIC LAYOUT ONLY FOR DESKTOP */
@media (min-width:1025px){

.top-deals-slider.static-deals{
    justify-content:center;
    flex-wrap:wrap;
}

}



/* ===== TOP DEALS / OUR EXPERTS SLIDER FINAL FIX ===== */

.top-deals-slider-wrapper{
    width:100%;
    overflow:hidden;
}

.top-deals-slider{
    display:flex;
    gap:24px;
    overflow-x:auto;   /* allow manual scroll */
    will-change:transform;
}

/* mobile */
@media (max-width:767px){

.top-deal-card{
    flex:0 0 80%;
    max-width:80%;
}

}

/* tablet */
@media (min-width:768px) and (max-width:1024px){

.top-deal-card{
    flex:0 0 45%;
    max-width:45%;
}

}

/* desktop */
@media (min-width:1025px){

.top-deal-card{
    flex:0 0 23%;
    max-width:23%;
}

}

/* static layout only for desktop */
@media (min-width:1025px){

.top-deals-slider.static-deals{
    justify-content:center;
    overflow:visible;
}

}


/* ===== CONTINUOUS TOP DEALS SLIDER ===== */

.top-deals-slider-wrapper{
    overflow:hidden;
    width:100%;
}

.top-deals-slider{
    display:flex;
    gap:24px;
    will-change:transform;
}

/* card sizes */

/* mobile */
@media (max-width:767px){
.top-deal-card{
    flex:0 0 80%;
}
}

/* tablet */
@media (min-width:768px) and (max-width:1024px){
.top-deal-card{
    flex:0 0 45%;
}
}

/* desktop */
@media (min-width:1025px){
.top-deal-card{
    flex:0 0 23%;
}
}



.top-deals-slider{
overflow:hidden;
width:100%;
}

.top-deals-track{
display:flex;
gap:24px;
will-change:transform;
}

.top-deal-card{
flex-shrink:0;
}


/* viewport */
.top-deals-slider{
    overflow:hidden;
    width:100%;
}

/* moving track */
.top-deals-track{
    display:flex;
    gap:24px;
    width:max-content;
}

/* cards must never shrink */
.top-deal-card{
    flex-shrink:0;
}

/* MOBILE */
@media (max-width:767px){
.top-deal-card{
    width:80vw;
}
}

/* TABLET */
@media (min-width:768px) and (max-width:1024px){
.top-deal-card{
    width:45vw;
}
}

/* DESKTOP */
@media (min-width:1025px){
.top-deal-card{
    width:230px;
}
}

.top-deals-track{
display:flex;
gap:24px;
width:max-content;
}

.top-deal-card{
flex-shrink:0;
}



/* =====================================
CONTINUOUS TOP DEALS / EXPERTS SLIDER
===================================== */

.top-deals-slider-wrapper{
width:100%;
overflow:hidden;
position:relative;
}

/* viewport */
.top-deals-slider{
width:100%;
overflow:hidden;
display:block;
}

/* moving belt */
.top-deals-track{
display:flex;
gap:24px;
width:max-content;
will-change:transform;
}

/* cards */
.top-deal-card{
flex:0 0 auto;
}

/* MOBILE */
@media (max-width:767px){
.top-deal-card{
width:80vw;
}
}

/* TABLET */
@media (min-width:768px) and (max-width:1024px){
.top-deal-card{
width:45vw;
}
}

/* DESKTOP */
@media (min-width:1025px){
.top-deal-card{
width:320px;
}
}


/* ===============================
REVIEWS CONTINUOUS SLIDER FIX
=============================== */

.reviews-slider-wrapper{
width:100%;
overflow:hidden;
position:relative;
}

.reviews-slider{
display:flex;
gap:24px;
width:max-content;
will-change:transform;
}

.review-card{
flex:0 0 auto;
width:360px;
}



/* Remove side padding for handpicked packages slider on mobile */
@media (max-width:767px){

.top-deals-slider-wrapper{
padding-left:0 !important;
padding-right:0 !important;
}

.section-light .container-fluid{
padding-left:0 !important;
padding-right:0 !important;
}

.top-deals-track{
padding-left:0 !important;
padding-right:0 !important;
}

}




/* HERO FIXES */

/* mobile spacing for video */
@media (max-width: 768px){
.hero-video-column{
padding-top:20px;
}
}

/* better text colors */
.hero-title{
color:#ffffff;
}

.hero-subtitle{
color:#f1f1f1; /* softer than orange */
max-width:500px;
}

/* HERO VIDEO PERFECT ALIGNMENT */

.hero-video-column{
display:flex;
align-items:center;
justify-content:center;
}

.hero-video-wrapper{
width:100%;
max-width:600px;
aspect-ratio:16/9;
border-radius:20px;
overflow:hidden;
margin-left:auto;
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.hero-video{
object-fit:cover;
width:100%;
height:100%;
}

.hero-content{
max-width:520px;
margin:0 auto;
text-align:center;
}

.hero-content-column{
display:flex;
align-items:center;
justify-content:center;
}

.hero-slide-row{
gap:40px;
}

@media (max-width:768px){


.hero-content{
text-align:center;
}

.hero-video-wrapper{
max-width:100%;
}

}

.hero-video-wrapper{
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
}

.hero-slide-row{
gap:60px;
}


/* MOBILE HERO FIX - CONTENT ABOVE VIDEO */

@media (max-width: 768px){

}

.hero-content{
margin-top:20px;
}

.hero-video-wrapper{
max-width:100%;
margin:0 auto;
}



@media (max-width:768px){


/* spacing for video */
.hero-video-column{
margin-top:20px;
}

/* center text nicely */
.hero-content{
text-align:center;
margin-top:10px;
}

}


@media (max-width:768px){

.hero-slide{
padding-top:60px;
padding-bottom:40px;
}

}


@media (max-width:768px){

/* keep bootstrap grid intact */
.hero-slide-row{
display:flex;
flex-wrap:wrap;
}

/* force full width */
.hero-video-column,
.hero-content-column{
flex:0 0 100%;
max-width:100%;
}

/* move content above video */


/* spacing */
.hero-video-column{
margin-top:20px;
}

/* better spacing inside */
.hero-content{
margin-top:10px;
text-align:center;
}

}


@media (max-width:768px){

/* push entire hero content slightly down from header */
.hero-slide{
padding-top:80px;
padding-bottom:60px;
}

/* move video slightly down */
.hero-video-column{
margin-top:30px;
}

/* add space between video and content */
.hero-content-column{
margin-top:25px;
}

/* optional: tighter content spacing */
.hero-content{
margin-top:10px;
}

}


@media (max-width:768px){

/* give full hero proper breathing space */
.hero-slide{
padding-top:90px;
padding-bottom:70px;
}

/* video spacing from top */
.hero-video-column{
margin-top:10px;
margin-bottom:25px;
}

/* content spacing from bottom */
.hero-content-column{
margin-bottom:20px;
}

/* center everything nicely */
.hero-content{
text-align:center;
padding:0 15px;
}

}


@media (max-width:1024px){

/* make hero take screen height */
.hero-slide{
min-height:90vh;
display:flex;
align-items:center;   /* THIS IS THE KEY */
justify-content:center;
padding-top:80px;
padding-bottom:80px;
}

/* stack properly */
.hero-slide-row{
width:100%;
}

/* video */
.hero-video-column{
margin-bottom:25px;
display:flex;
justify-content:center;
}

/* video size control */
.hero-video-wrapper{
max-width:95%;
margin:0 auto;
}

/* content */
.hero-content-column{
text-align:center;
padding:0 20px;
}

/* spacing inside content */
.hero-title{
margin-bottom:10px;
}

.hero-subtitle{
margin-bottom:20px;
}

}

@media (max-width:1024px){

/* FIX horizontal centering */
.hero-slide-row{
margin-left:0 !important;
margin-right:0 !important;
justify-content:center;
text-align:center;
}

/* ensure columns are centered */
.hero-video-column,
.hero-content-column{
margin-left:auto;
margin-right:auto;
}

/* center video perfectly */
.hero-video-wrapper{
margin:0 auto;
}

/* center text block */
.hero-content{
margin-left:auto;
margin-right:auto;
}

}


/* 🚫 Disable ALL outer scrolling */
#enquiryModal,
#enquiryModal .modal-dialog,
#enquiryModal .modal-content {
    overflow: hidden !important;
}

/* ✅ Fix modal height */
#enquiryModal .modal-dialog {
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* ✅ Fixed container */
#enquiryModal .modal-content {
    height: 85vh;
    display: flex;
    flex-direction: column;
}

/* ✅ Body should NOT scroll */
#enquiryModal .enquiry-modal-body {
    flex: 1;
    display: flex;
    overflow: hidden;  /* IMPORTANT */
}

/* ✅ Only THESE should scroll */
#enquiryModal .enquiry-modal-left,
#enquiryModal .enquiry-modal-right {
    overflow-y: auto !important;
    height: 100%;
}



body.modal-open {
    overflow: hidden !important;
}


@media (min-width: 992px) {

    /* 🚫 Disable outer scroll */
    #enquiryModal,
    #enquiryModal .modal-dialog,
    #enquiryModal .modal-content {
        overflow: hidden !important;
    }

    /* Fix modal height */
    #enquiryModal .modal-dialog {
        height: 100vh;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }

    #enquiryModal .modal-content {
        height: 85vh;
        display: flex;
        flex-direction: column;
    }

    /* Body layout */
    #enquiryModal .enquiry-modal-body {
        flex: 1;
        display: flex;
        overflow: hidden;
    }

    /* ✅ ONLY inner scroll */
    #enquiryModal .enquiry-modal-left,
    #enquiryModal .enquiry-modal-right {
        overflow-y: auto !important;
        height: 100%;
    }
}


@media (max-width: 991.98px) {

    #enquiryModal,
    #enquiryModal .modal-dialog,
    #enquiryModal .modal-content {
        overflow: auto !important;
        height: auto !important;
    }

    #enquiryModal .enquiry-modal-body {
        display: block !important;
        overflow: visible !important;
    }

    #enquiryModal .enquiry-modal-left,
    #enquiryModal .enquiry-modal-right {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
}


.partner-social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

/* Brand colors */
.partner-social-icon.facebook {
    background: #1877f2;
}

.partner-social-icon.instagram {
    background: #e4405f;
}

.partner-social-icon.youtube {
    background: #ff0000;
}

/* Hover effect */
.partner-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


body {
    padding-top: 140px; /* adjust based on navbar height */
}

.admin-text-display {
    white-space: normal !important;
    word-break: break-word;
    min-width: 400px;
}

.admin-text-display {
    max-width: 500px;
}


.table {
    table-layout: auto !important;
    width: 100%;
}

.admin-text-display {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    min-width: 300px !important;
}

.admin-text-display * {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.admin-text-display {
    padding: 0 !important;
}

.admin-text-display div,
.admin-text-display span,
.admin-text-display p {
    background: transparent !important;
    border-radius: 0 !important;
}

.table td {
    white-space: normal !important;
    word-break: break-word;
    vertical-align: top;
}


/* Fix center alignment for partner section */
.partner-section .row {
    justify-content: center;
    text-align: center;
}

/* Center content inside right column */
.partner-section .col-md-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center button */
.partner-section .btn {
    margin: 0 auto;
}

/* Center social icons */
.partner-social {
    justify-content: center !important;
}

/* Mobile fix */
@media (max-width: 768px) {
    .partner-section .col-md-8 {
        text-align: center;
        align-items: center;
    }

    .partner-social {
        justify-content: center !important;
    }
}



/* Reduce navbar menu text size ONLY for large screens */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 14px;   /* adjust if needed (13px–15px range) */
    }
}

/* Increase logo size WITHOUT increasing navbar height */
.navbar img {
    height: 55px;      /* increase this (try 55–65px) */
    max-height: 60px;  /* prevents navbar from stretching */
    width: auto;
    object-fit: contain;
}


.navbar-brand {
    display: flex;
    align-items: center;
}



/* =========================
   GALLERY HERO STATS (FINAL)
   ========================= */

.gallery-hero {
    padding: 90px 0;
}

/* RIGHT SIDE CONTAINER */
.gallery-hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GRID */
.gallery-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 440px;
}

/* CARD */
.stat-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.25s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 130px; /* ensures equal height */
}

/* ICON */
.stat-box i {
    font-size: 24px;
    color: #ff7a00;
    margin-bottom: 8px;
}

/* NUMBER */
.stat-box h4 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

/* LABEL */
.stat-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* HOVER */
.stat-box:hover {
    transform: translateY(-5px);
}

/* =========================
   RESPONSIVE
   ========================= */

/* TABLET */
@media (max-width: 992px) {
    .gallery-stats-wrapper {
        max-width: 380px;
        gap: 14px;
    }

    .stat-box {
        min-height: 120px;
        padding: 18px 12px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .gallery-hero {
        padding: 60px 0;
    }

    .gallery-stats-wrapper {
        grid-template-columns: 1fr 1fr; /* still 2x2 */
        gap: 12px;
        max-width: 300px;
        margin-top: 20px;
    }

    .stat-box {
        min-height: 100px;
        padding: 14px 10px;
    }

    .stat-box i {
        font-size: 20px;
    }

    .stat-box h4 {
        font-size: 18px;
    }

    .stat-box p {
        font-size: 12px;
    }
}

/* =========================
   CONTACT HERO RIGHT SIDE
   ========================= */

.contact-hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GRID */
.contact-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 420px;
    width: 100%;
}

/* CARD */
.contact-hero-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.25s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 130px;
}

/* ICON */
.contact-hero-card i {
    font-size: 22px;
    color: #ff7a00;
    margin-bottom: 8px;
}

/* TITLE */
.contact-hero-card h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

/* TEXT */
.contact-hero-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* HOVER */
.contact-hero-card:hover {
    transform: translateY(-5px);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
    .contact-hero-cards {
        max-width: 360px;
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-cards {
        max-width: 300px;
        gap: 12px;
        margin-top: 20px;
    }

    .contact-hero-card {
        min-height: 100px;
        padding: 14px 10px;
    }

    .contact-hero-card i {
        font-size: 18px;
    }

    .contact-hero-card h5 {
        font-size: 13px;
    }

    .contact-hero-card p {
        font-size: 12px;
    }
}



.contact-hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN CARD */
.contact-benefits-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TITLE */
.contact-benefits-card h4 {
    font-weight: 700;
    color: #222;
}

/* STEP */
.benefit-step {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

/* ICON */
.benefit-step i {
    font-size: 18px;
    color: #ff7a00;
    margin-top: 4px;
}

/* TEXT */
.benefit-step strong {
    font-size: 15px;
    color: #222;
}

.benefit-step p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-benefits-card {
        margin-top: 20px;
    }
}

/* ===== HERO RIGHT SECTION WRAPPER ===== */
.contact-hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* ===== MAIN CARD ===== */
.contact-benefits-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* HOVER (only desktop feel) */
@media (min-width: 992px) {
    .contact-benefits-card:hover {
        transform: translateY(-6px);
    }
}

/* ===== TITLE ===== */
.contact-benefits-card h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

/* ===== STEP BLOCK ===== */
.benefit-step {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

/* ICON */
.benefit-step i {
    font-size: 18px;
    color: #ff7a00;
    min-width: 20px;
    margin-top: 4px;
}

/* TEXT */
.benefit-step strong {
    font-size: 15px;
    display: block;
    color: #222;
}

.benefit-step p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
}

/* ===== DESKTOP (LARGE SCREENS) ===== */
@media (min-width: 1200px) {
    .contact-benefits-card {
        max-width: 440px;
        padding: 30px;
    }
}

/* ===== LAPTOP / NORMAL DESKTOP ===== */
@media (max-width: 1199px) {
    .contact-benefits-card {
        max-width: 400px;
    }
}

/* ===== TABLET ===== */
@media (max-width: 991px) {

    .contact-hero-art {
        margin-top: 30px;
        justify-content: center;
    }

    .contact-benefits-card {
        max-width: 500px;
        padding: 24px;
    }

    .contact-benefits-card h4 {
        text-align: center;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

    .contact-hero-art {
        margin-top: 25px;
        padding: 0 10px;
    }

    .contact-benefits-card {
        max-width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

    .contact-benefits-card h4 {
        font-size: 18px;
        text-align: center;
    }

    .benefit-step {
        gap: 10px;
        margin-bottom: 14px;
    }

    .benefit-step i {
        font-size: 16px;
    }

    .benefit-step strong {
        font-size: 14px;
    }

    .benefit-step p {
        font-size: 12px;
    }
}



/* Wrapper */
.travel-dates-box {
    border-radius: 10px;
    overflow: hidden;
}

/* Header (match enquiry style) */
.travel-dates-box .td-header {
    background: #6a004f; /* same theme */
    color: #fff;
    padding: 14px 16px;
}

.travel-dates-box .td-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff; /* FIX: make heading white */
}

.travel-dates-box .td-header p {
    color: #f1f1f1;
    font-size: 12px;
}

/* Body */
.travel-dates-box .td-body {
    background: #f8f8f8;
    padding: 12px;
}

/* Date Item */
.travel-dates-box .td-item {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    text-align: center; /* center everything */
    transition: 0.2s ease;
}

/* Hover */
.travel-dates-box .td-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #ff7a00; /* 🔥 orange accent */
}

/* Date Text */
.travel-dates-box .td-line {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}




/* Standard content font size across package page */
.package-detail-main p,
.package-detail-main li,
.package-detail-main span:not(.badge),
.package-detail-main .itinerary-day-body,
.package-detail-main .package-text-content {
    font-size: 14px;
    line-height: 1.6;
}










/* REMOVE divider specifically before arrow */
.itinerary-day-header > div:last-child {
    border-left: none !important;
}

/* Also remove padding causing spacing */
.itinerary-day-header > div:last-child {
    padding-left: 0 !important;
}

/* Safety: ensure arrow has no line */
.itinerary-day-arrow {
    border-left: none !important;
}

.itinerary-day-header * {
    border-left: none !important;
}





/* ===== FIX: Remove unwanted vertical divider in itinerary ===== */

/* Kill the divider line completely */
.itinerary-day-title::after,
.itinerary-day-header[aria-expanded="true"] .itinerary-day-title::after {
    display: none !important;
    content: none !important;
}

/* Ensure no accidental borders */
.itinerary-day-title {
    border: none !important;
}

/* Optional: small spacing improvement after removing line */
.itinerary-day-title {
    margin-right: 8px;
}

.itinerary-day-arrow i {
    transition: transform 0.3s ease;
}




/* SHORTS SECTION */

.short-video-card {
    width: 220px;
    flex: 0 0 auto;
}

.short-video-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.short-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */

@media (max-width: 768px) {
    .short-video-card {
        width: 160px;
    }

    .short-video-wrapper {
        height: 280px;
    }
}

@media (min-width: 1200px) {
    .short-video-card {
        width: 240px;
    }

    .short-video-wrapper {
        height: 420px;
    }
}




.short-video-card {
    flex: 0 0 auto;
    width: 220px;
    padding: 0; /* remove default padding from top-deal-card */
}
.short-video-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.short-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#shortsSlider {
    display: flex;
    gap: 16px; /* spacing between reels */
}
@media (max-width: 768px) {
    .short-video-card {
        width: 160px;
    }

    .short-video-wrapper {
        height: 280px;
    }
}

/* REMOVE extra spacing from parent card */
.short-video-card {
    flex: 0 0 auto;
    width: 220px;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* PERFECT vertical ratio */
.short-video-wrapper {
    width: 100%;
    height: 390px; /* tighter fit */
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* iframe fill */
.short-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}





/* PERFECT SHORTS STYLE */

.short-video-card {
    flex: 0 0 auto;
    width: 220px;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.short-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* 🔥 key fix */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

/* Make video fill properly */
.short-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



/* RESET TOP DEAL CARD FOR SHORTS */
.top-deal-card.short-video-card {
    all: unset; /* 🔥 removes all inherited styles */
    display: block;
    flex: 0 0 auto;
    width: 220px;
}

.short-video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16; /* exact shorts ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* force iframe to fill */
.short-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    border: none;
}

#shortsSlider {
    display: flex;
    align-items: center; /* 🔥 important */
    gap: 16px;
}

@media (max-width: 768px) {
    .top-deal-card.short-video-card {
        width: 160px;
    }
}





/* MOVE LOGO RIGHT */
.main-navbar .container {
    padding-left: 100px; /* 🔥 shift entire navbar content right */
}

/* LOGO SIZE CONTROL */
.navbar-brand img {
    height: 70px; /* 🔥 increased from 64 */
    width: auto;
    object-fit: contain;
}

/* KEEP NAVBAR HEIGHT FIXED */
.main-navbar {
    height: 87px; /* keep stable */
    display: flex;
    align-items: center;
}

/* REMOVE EXTRA VERTICAL SPACE */
.main-navbar.py-3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}




/* ================= HERO SECTION CLEAN FIX ================= */

/* Main hero container */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 0;
}

/* Fix Bootstrap row spacing issue */
.hero-slide-row {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center;
}

/* ================= VIDEO CASE ================= */

/* Video + content alignment */
.hero-content-column {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

/* ================= NO VIDEO CASE ================= */

/* Full width wrapper */
.hero-content-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= CONTENT ================= */

.hero-content {
    width: 70%;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}

/* ================= TEXT ================= */

.hero-title {
    line-height: 1.2;
}

.hero-subtitle {
    line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
    .hero-content {
        width: 85%;
    }

    .hero-content-column {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 92%;
    }
}


.hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px; /* 🔥 important */
}





