
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #ff6b35;
    --accent-color: #4a90e2;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-snow: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 0 4px rgba(0,0,0,.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --navy: #1a2e4a;
    --navy-light: #2a4068;
    --blue-link: #2563b0;
    --text-muted: #6b7280;
    --card-shadow: 0 2px 16px rgba(26, 46, 74, .09);
    --card-shadow-hover: 0 8px 32px rgba(26, 46, 74, .16);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-snow);
}

.h1,.h2,.h3,.h4,.h5,.h6{
    font-family: DM Sans,sans-serif !important;
}
img {
    max-width: 100%;
}
/* Modern Header Design */
.modern-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header-top {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--bg-snow);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--bg-snow);
}

.logo i {
    color: var(--secondary-color);
    font-size: 22px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.quick-action-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-snow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--bg-snow);
}

.quick-action-btn.primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.quick-action-btn.primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

/* Modern Header */
.modern-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.header-top {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.logo:hover {
    opacity: .9;
}
.header-quick-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.quick-action-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.quick-action-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-1px);
}
.quick-action-btn.primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.quick-action-btn.primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

/* Hamburger button — hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}
.hbg-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
/* Animated to X when open */
.mobile-menu-toggle.open .hbg-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open .hbg-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.open .hbg-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop nav */
.header-main-nav {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.main-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.main-nav-item {
    position: relative;
}
.nav-caret {
    font-size: 10px;
    margin-left: 2px;
    opacity: 0.7;
    transition: transform 0.25s ease;
}
.main-nav-item:hover .nav-caret {
    transform: rotate(180deg);
}
.main-nav-link {
    color: #fff;
    text-decoration: none;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}
.main-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}
.main-nav-link:hover::after,
.main-nav-link.active::after {
    width: 70%;
}
.main-nav-link:hover,
.main-nav-link.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.main-nav-icon {
    font-size: 13px;
    opacity: 0.85;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 100;
}
.main-nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 11px 18px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 22px;
}

/* ── MOBILE DRAWER ─────────────────────────────── */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1038;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.nav-backdrop.active {
    display: block;
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: #1a2e4a;
    z-index: 1039;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.35);
    overflow: hidden;
}
.mobile-drawer.active {
    right: 0;
}
body.drawer-open {
    overflow: hidden;
}

/* Drawer header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    background: #152538;
}
.mobile-drawer-logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
}
.drawer-close-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.drawer-close-btn:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
    transform: rotate(90deg);
}

/* Drawer nav items */
.mobile-drawer-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
}
.mobile-drawer-nav::-webkit-scrollbar {
    width: 4px;
}
.mobile-drawer-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}
.mobile-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    width: 100%;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255,255,255,0.07);
    border-left-color: var(--secondary-color);
    color: #fff;
}
.mobile-nav-link.active .mobile-nav-icon {
    color: var(--secondary-color);
}
.mobile-nav-icon {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.mobile-nav-link span {
    flex: 1;
}
.mobile-nav-arrow {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.mobile-nav-item.open > .mobile-nav-link .mobile-nav-arrow {
    transform: rotate(180deg);
}
.mobile-nav-item.open > .mobile-nav-link {
    background: rgba(255,255,255,0.07);
    border-left-color: var(--secondary-color);
    color: #fff;
}

/* Dropdown inside drawer */
.mobile-nav-dropdown {
    display: none;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid var(--secondary-color);
}
.mobile-nav-item.open > .mobile-nav-dropdown {
    display: block;
}
.mobile-nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 44px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s ease;
}
.mobile-nav-dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    padding-left: 48px;
}
.mobile-nav-dropdown-item i {
    font-size: 11px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Drawer footer CTAs */
.mobile-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    background: #152538;
}
.mobile-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}
.mobile-cta-primary:hover {
    background: #e55a2b;
    color: #fff;
}
.mobile-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.85);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mobile-cta-secondary:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

/* Hero Section */
.hero-section {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-snow);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    opacity: 0.95;
}

.search-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    backdrop-filter: blur(10px);
}

.search-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.search-input-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--bg-snow);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.search-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.date-input {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    min-width: 300px;
    transition: all 0.3s ease;
    background: var(--bg-snow);
}

.date-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.search-btn {
    background: var(--secondary-color);
    color: var(--bg-snow);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Tour Sections */
.tour-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.tour-section.alt {
    background: var(--bg-snow);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 20px;
}

.tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-snow);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tour-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    max-width: 100%;
    min-width: 160px;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: var(--bg-snow);
    padding: 4px 15px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.tour-badge.accent {
    background: var(--accent-color);
}

.tour-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-category {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tour-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.3em * 2); /* force equal 2-line space */
}

.tour-card__location {
    align-items: center;
    background: #fff;
    border-top-right-radius: 6px;
    bottom: 0;
    color: #00193c;
    display: flex;
    font-size: .75rem;
    font-weight: 700;
    left: 0;
}
.tour-card__label {
    border: none;
    outline: none;
    padding: .375rem .875rem;
    position: absolute;
    z-index: 1;
}
.tour-card__location span {
    margin-left: .5rem;
}

.tour-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.tour-book-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-color), #3a7bc8);
    color: var(--bg-snow);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}

.tour-view-btn {
    align-items: center;
    color: var(--secondary-color);
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    gap: .5rem;
    text-decoration: none;
}
.tour-view-btn:hover {
    color: var(--secondary-color);
}
.tour-view-btn:hover svg {
    transform: rotate(-20deg);
}
.tour-view-btn svg {
    transition: transform .1s ease-in-out;
}

.tour-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #3a7bc8, var(--accent-color));
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--bg-snow);
}

.blog-card {
    background: var(--bg-snow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--accent-color);
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-snow);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    background: var(--bg-snow);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    color: var(--bg-snow);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer.show {
    padding: 25px 30px;
    max-height: 500px;
}

/* Contact & Newsletter */
.contact-newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    color: var(--bg-snow);
    position: relative;
    overflow: hidden;
}

.contact-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-snow);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--bg-snow);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

.newsletter-wrapper {
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--bg-snow);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-snow);
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-snow);
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--bg-snow);
    padding: 60px 0 25px;
}

.footer-widget h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    /* --- THE FIX: Hide desktop elements & show hamburger --- */
    .header-quick-actions {
        display: none;
    }
    .header-main-nav {
        display: none; /* Completely hides the desktop <ul> so it doesn't conflict with the drawer */
    }
    .mobile-menu-toggle {
        display: flex; /* Shows the hamburger icon */
    }
    /* ------------------------------------------------------- */

    /* Other 992px styles from your original code */
    .tour-section,
    .blog-section,
    .faq-section,
    .contact-newsletter-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 50px 15px 40px;
    }
    .hero-content h1 {
        font-size: clamp(26px, 7vw, 38px);
        margin-bottom: 14px;
    }
    .hero-content p {
        font-size: clamp(14px, 4vw, 17px);
        margin-bottom: 24px;
    }
    .search-container {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .search-form {
        flex-direction: column;
        gap: 12px;
    }
    .search-input-group {
        min-width: 100%;
        width: 100%;
    }
    .search-input {
        padding: 13px 16px 13px 42px;
        font-size: 14px;
    }
    .date-input {
        width: 100%;
        min-width: 100%;
        padding: 13px 16px;
        font-size: 14px;
    }
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
        font-size: 15px;
    }
    .tour-section,
    .blog-section,
    .faq-section,
    .contact-newsletter-section {
        padding: 50px 0;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .contact-form-wrapper,
    .newsletter-wrapper {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 19px;
    }
    .hero-section {
        padding: 40px 12px 30px;
    }
    .hero-content h1 {
        font-size: clamp(22px, 8vw, 32px);
    }
    .hero-content p {
        font-size: 13px;
    }
    .search-container {
        padding: 16px 12px;
    }
    .section-title {
        font-size: clamp(24px, 7vw, 32px);
    }
    .tour-content {
        padding: 14px;
    }
    .blog-content {
        padding: 20px 16px;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    .faq-answer.show {
        padding: 18px 20px;
    }
    footer {
        padding: 36px 0 18px;
    }
    .footer-bottom {
        margin-top: 20px;
    }
    .social-icons {
        justify-content: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.page-item.active .page-link {
    color: #ffffff !important;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
