/* ==========================================================================
   1. CORE STYLE VARIABLE ARCHITECTURE & RESET
   ========================================================================== */
:root {
    --bg-primary: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-infobar: #1A2E40;
    --border-color: #E2E8F0;
    --input-bg: #FAFAFA;
    --text-main: #2D3748;
    --text-muted: #4A5568;
    --text-heading: #1A365D;
    --text-light: #718096;
    --text-accent: #E53E3E;
    --accent-gold: #e45d16;
    --accent-red: #E53E3E;
    --accent-red-hover: #C53030;
}

[data-theme="dark"] {
    --bg-primary: #0F172A;
    --bg-card: #1E293B;
    --bg-infobar: #020617;
    --border-color: #334155;
    --input-bg: #111827;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-heading: #38BDF8;
    --text-light: #64748B;
    --text-accent: #F87171;
    --accent-gold: #e45d16;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Transition Rules for Interactive Blocks */
.main-header, .package-card, .info-card, .info-card-block, 
.form-card-wrapper, .form-container-panel, .accordion-item, .social-card {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   2. TOP INFOBAR & BRAND INTERFACE NAVIGATION
   ========================================================================== */
.top-infobar {
    background-color: var(--bg-infobar);
    color: #FFFFFF;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.infobar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.infobar-link {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.infobar-link:hover {
    color: var(--accent-gold);
}

.main-header {
    background-color: var(--bg-card);
    border-bottom: 3px solid var(--bg-infobar);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

[data-theme="dark"] .brand-logo-img {
    filter: brightness(0) invert(1);
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.arrow-indicator {
    font-size: 8px;
    color: var(--text-light);
    transition: transform 0.2s ease;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 220px;
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background-color: var(--bg-primary);
    color: var(--accent-gold);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.open .arrow-indicator {
    transform: rotate(180deg);
}

.contact-button {
    border: 1px solid var(--text-main);
    border-radius: 4px;
    padding: 8px 16px;
}

.contact-button:hover, .contact-button.active {
    background-color: var(--text-main);
    color: var(--bg-card) !important;
}

/* Theme Toggle Control Design */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.theme-toggle:hover {
    background-color: var(--border-color);
    transform: scale(1.05);
}

/* ==========================================================================
   3. HOMEPAGE HERO LAYOUT & FILTERS
   ========================================================================== */
.hero-section {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 850px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 16px 0 8px;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--text-heading);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    text-decoration: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    background-color: var(--border-color);
    color: var(--text-main);
}

.filter-pills-container, .gallery-filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pill, .gallery-filter-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill.active, .gallery-filter-btn.active {
    background-color: var(--text-heading);
    color: #FFFFFF;
    border-color: var(--text-heading);
}

/* ==========================================================================
   4. ASYMMETRIC CONTENT GRIDS & FEATURE CARD MODULES
   ========================================================================== */
.about-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-img-holder img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.about-content h2, .center-title, .section-header h2 {
    font-size: 26px;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.about-content p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.why-section, .section-container {
    padding: 40px 0;
}

.center-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin: 6px 0 35px;
}

.why-grid, .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card, .package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.why-icon {
    font-size: 26px;
    margin-bottom: 14px;
}

.why-card h3, .package-card h3 {
    font-size: 16px;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.why-card p, .itinerary-snippet {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.btn-view-all {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-heading);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-gold);
}

.package-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card.hidden, .gallery-item.hidden-batch {
    display: none !important;
}

.card-img-holder {
    width: 100%;
    height: 200px;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.badge-category {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: auto;
}

.green-badge {
    background-color: #E6FFFA;
    color: #234E52;
}

/* Split Special Promotions Container Layout */
.offers-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.offer-row-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.offer-banner {
    width: 140px;
    height: 130px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.green-banner .banner-tag { background: #2F855A; }
.cyan-banner .banner-tag { background: #0BC5EA; }
.blue-banner .banner-tag { background: #3182CE; }
.purple-banner .banner-tag { background: #805AD5; }

.offer-details h3 {
    font-size: 16px;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.offer-details p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.btn-book-link {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.2s, color 0.2s;
}

.btn-book-link:hover {
    background-color: var(--text-muted);
    color: var(--bg-card);
}

/* ==========================================================================
   5. SOCIAL PROOF ARCHITECTURE & FAQ ACCORDION ENGINE
   ========================================================================== */
.social-section {
    padding: 40px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.social-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.social-card p {
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    color: var(--text-heading);
}

.faq-accordion-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-heading);
    text-align: left;
    cursor: pointer;
}

.accordion-icon {
    font-size: 10px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-primary);
}

.accordion-panel p {
    padding: 0 20px 20px 20px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* ==========================================================================
   6. GEOLOCATION CONTACT SEGMENT & CONTEXTUAL FORMS
   ========================================================================== */
.contact-page-wrapper {
    background-color: var(--bg-primary);
    padding-bottom: 40px;
}

.contact-hero-banner, .gallery-hero-banner {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center 35%;
    padding: 100px 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.gallery-hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), 
                      url('https://images.unsplash.com/photo-1542435503-956c469947f6?auto=format&fit=crop&w=1600&q=80');
    padding: 130px 20px;
    margin-bottom: 40px;
}

.banner-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero-banner .banner-heading, .banner-heading {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.1;
    color: #FFFFFF !important;
}

.banner-subheading {
    font-size: 16px;
    color: #E2E8F0;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -90px;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.info-card-block {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}

.icon-frame {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.split-form-map-container, .form-split-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
}

.form-container-panel {
    padding: 45px;
}

.form-container-panel h2 {
    font-size: 28px;
    color: var(--text-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-container-panel .accent-text {
    color: var(--text-accent);
}

.form-row-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.input-block label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.input-block input, .input-block select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--input-bg);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: all 0.2s ease;
}

.input-block input:focus, .input-block select:focus {
    border-color: var(--text-light);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px var(--border-color);
}

.btn-submit-enquiry {
    width: 100%;
    background-color: var(--accent-red);
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-submit-enquiry:hover {
    background-color: var(--accent-red-hover);
}

.map-embed-panel {
    background: var(--border-color);
    position: relative;
}

/* ==========================================================================
   7. BRICK FLUID MASONRY GALLERY PLATFORM
   ========================================================================== */
.gallery-page-wrapper {
    background-color: var(--bg-primary);
    padding-bottom: 60px;
}

.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 250px;
    background-color: var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-overlay span {
    color: #FFFFFF;
    font-size: 13.5px;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .item-overlay { opacity: 1; }
.gallery-item:hover .item-overlay span { transform: translateY(0); }

.gallery-action-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-load-gallery {
    background-color: var(--bg-card);
    border: 2px solid var(--text-heading);
    color: var(--text-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-load-gallery:hover {
    background-color: var(--text-heading);
    color: #FFFFFF;
}

/* Modal Lightbox Layout */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(11, 26, 48, 0.95);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-frame {
    max-width: 85vw;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content-frame img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #FFFFFF;
    font-size: 15px;
    margin-top: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #A0AEC0;
    font-size: 28px;
    cursor: pointer;
}

.lightbox-close:hover { color: #FFFFFF; }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s;
}

.lightbox-arrow:hover { background: rgba(255,255,255,0.15); }
.arrow-left { left: 40px; }
.arrow-right { right: 40px; }

/* ==========================================================================
   8. IMMERSIVE NIGHT LANDSCAPE VISUAL FOOTER
   ========================================================================== */
.immersive-footer {
    background-color: #0B1A30;
    background-image: linear-gradient(to bottom, rgba(11, 26, 48, 0.9), #060F1D), 
                      url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 60px 40px 30px;
    margin-top: 60px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.footer-hero-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-hero-cta h2 { font-size: 32px; margin-bottom: 10px; color: #FFFFFF !important;}
.footer-hero-cta p { color: #A0AEC0; font-size: 14px; }

.contact-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.contact-pill-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
}

.contact-pill-item h5 { color: #e45d16; font-size: 13px; margin-bottom: 6px; }
.contact-pill-item p { font-size: 12.5px; color: #E2E8F0; line-height: 1.4; }

.footer-link-item {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-item:hover { color: #e45d16; }
.footer-divider { border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 40px; }

.footer-links-container {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.brand-column .footer-logo { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #e45d16; }
.brand-column p { font-size: 13px; color: #A0AEC0; line-height: 1.5; }
.links-column h4 { font-size: 12px; color: #718096; margin-bottom: 14px; text-transform: uppercase; }

.links-column a {
    display: block;
    color: #E2E8F0;
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.links-column a:hover { color: #e45d16; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #718096;
}

/* ==========================================================================
   9. RESPONSIVE LAYOUT CONFIGURATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .packages-grid, .why-grid, .contact-box-grid, .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid, .form-split-layout-grid, .split-form-map-container { grid-template-columns: 1fr; }
    .gallery-masonry-grid { grid-template-columns: repeat(3, 1fr); }
    .info-cards-grid { margin-top: -40px; padding: 0 10px; }
    .map-card-wrapper, .map-embed-panel { height: 380px; min-height: auto; }
}

@media (max-width: 768px) {
    .navigation-menu { display: none; }
    .offers-split-grid, .faq-accordion-container, .footer-links-container, .form-row-block { grid-template-columns: 1fr; gap: 20px; }
    .main-title, .banner-heading { font-size: 32px; }
    .immersive-footer { padding: 40px 20px 20px; }
    .brand-logo-img { height: 44px; }
    .gallery-masonry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-item { height: 180px; }
    .lightbox-arrow { display: none; }
    .lightbox-close { top: 20px; right: 20px; }
    .form-container-panel { padding: 24px; }
}



/* --- Social Media Icon Array Setup --- */
.footer-social-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon-link:hover {
    color: #FFFFFF;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

/* --- Mandatory Legal Document Link Array --- */
.legal-links-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links-column a {
    color: #718096;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s ease;
}

.legal-links-column a:hover {
    color: var(--accent-gold);
}

/* Adjust layout rules to accommodate 4 columns on desktop viewports */
@media (min-width: 769px) {
    .footer-links-container {
        grid-template-columns: 1.2fr repeat(4, 1fr) !important;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Inter', sans-serif;

    background: #F8F5F0;

    color: #1F2A44;

    line-height: 1.6;
}

.contact-section {

    max-width: 1200px;

    margin: auto;

    padding: 80px 20px;
}

.section-heading {

    text-align: center;

    margin-bottom: 60px;
}

.section-heading h1 {

    font-size: 48px;

    margin-bottom: 12px;
}

.section-heading p {

    color: #666;
}



/* INFO CARDS */

.cards-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    margin-bottom: 70px;
}

.info-card {

    background: white;

    padding: 35px;

    border-radius: 24px;

    border: 1px solid #E5E7EB;

    transition: 0.3s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
}

.info-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}



/* ICON */

.why-icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #C8A96B,
        #E7D3A8
    );

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    box-shadow:
        0 10px 25px rgba(200,169,107,0.3);
}

.why-icon svg {

    width: 30px;

    height: 30px;

    color: white;
}

.info-card h3 {

    margin-bottom: 15px;

    font-size: 24px;
}

.info-card p {

    color: #555;

    margin-bottom: 5px;
}



/* FORM */

.form-wrapper {

    background: white;

    padding: 50px;

    border-radius: 28px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.06);
}

.form-wrapper h2 {

    font-size: 38px;

    margin-bottom: 12px;
}

.form-wrapper span {

    color: #C8A96B;
}

.form-row {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
}

.input-group {

    margin-bottom: 24px;
}

.input-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {

    width: 100%;

    padding: 16px;

    border-radius: 14px;

    border: 1px solid #D1D5DB;

    font-size: 15px;

    outline: none;

    transition: 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {

    border-color: #C8A96B;

    box-shadow:
        0 0 0 4px rgba(200,169,107,0.15);
}



/* BUTTON */

.submit-btn {

    width: 100%;

    border: none;

    padding: 18px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #C8A96B,
        #E7D3A8
    );

    color: #1F2A44;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.submit-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(200,169,107,0.35);
}



/* MOBILE */

@media(max-width:768px) {

    .section-heading h1 {

        font-size: 36px;
    }

    .form-wrapper {

        padding: 30px;
    }

}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Inter', sans-serif;

    background: #F8F5F0;

    color: #1F2A44;

    line-height: 1.6;
}

.contact-section {

    max-width: 1200px;

    margin: auto;

    padding: 80px 20px;
}

.section-heading {

    text-align: center;

    margin-bottom: 60px;
}

.section-heading h1 {

    font-size: 48px;

    margin-bottom: 12px;
}

.section-heading p {

    color: #666;
}



/* INFO CARDS */

.cards-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    margin-bottom: 70px;
}

.info-card {

    background: white;

    padding: 35px;

    border-radius: 24px;

    border: 1px solid #E5E7EB;

    transition: 0.3s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
}

.info-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}



/* ICON */

.why-icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    /* background: linear-gradient(
        135deg,
        #C8A96B,
        #E7D3A8
    ); */


    
    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    box-shadow:
        0 10px 25px rgba(200,169,107,0.3);
}

.why-icon svg {

    width: 30px;

    height: 30px;

    color: white;
}

.info-card h3 {

    margin-bottom: 15px;

    font-size: 24px;
}

.info-card p {

    color: #555;

    margin-bottom: 5px;
}



/* FORM */

.form-wrapper {

    background: white;

    padding: 50px;

    border-radius: 28px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.06);
}

.form-wrapper h2 {

    font-size: 38px;

    margin-bottom: 12px;
}

.form-wrapper span {

    color: #C8A96B;
}

.form-row {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
}

.input-group {

    margin-bottom: 24px;
}

.input-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {

    width: 100%;

    padding: 16px;

    border-radius: 14px;

    border: 1px solid #D1D5DB;

    font-size: 15px;

    outline: none;

    transition: 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {

    border-color: #C8A96B;

    box-shadow:
        0 0 0 4px rgba(200,169,107,0.15);
}



/* BUTTON */

.submit-btn {

    width: 100%;

    border: none;

    padding: 18px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #C8A96B,
        #E7D3A8
    );

    color: #1F2A44;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.submit-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(200,169,107,0.35);
}



/* MOBILE */

@media(max-width:768px) {

    .section-heading h1 {

        font-size: 36px;
    }

    .form-wrapper {

        padding: 30px;
    }

}


.package-card.hidden, .gallery-item.hidden-batch {
    display: none !important;
}


/* Force hide elements completely when this utility class is added */
.force-hide-element {
    display: none !important;
}


/* ==========================================================================
   Hero Slider Core System
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 80vh; /* Scaled hero area viewheight */
  min-height: 550px;
  overflow: hidden;
  background-color: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide Cover Imagery */
.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Content Frame & Dimmer Protection Mask */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
  
  /* Text protection fallback overlay gradient */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Overriding styling context to ensure premium legibility */
.slide ::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}

/* Typography elements alignment inside slides */
.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ffffff;
  animation: fadeInUp 0.8s ease forwards;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem auto;
  color: #e2e8f0;
}

.hero-subtext {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #cbd5e0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Action Button Layout Standardizers */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #3182ce; /* Accent Color Standard fallback */
  color: #fff;
}
.btn-primary:hover {
  background-color: #2b6cb0;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background-color: #fff;
  color: #1a202c;
}

/* ==========================================================================
   Arrows & Dot Navigation Layouts
   ========================================================================== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

.slider-dots-container {
  position: absolute;
  bottom: 100px; /* Aligned safe relative to floating control modules */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Anchor Layer for Filter Controls underneath Content */
.filter-pills-wrapper {
  position: absolute;
  bottom: 25px;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
}

/* Adaptive Responsive Configurations */
@media (max-width: 768px) {
  .hero-slider-section { height: 90vh; }
  .main-title { font-size: 2rem; }
  .subtitle { font-size: 1rem; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.8rem; }
  .slider-dots-container { bottom: 130px; }
}


/* ==========================================================================
   Hero Slider Core Styling (Fixed Overlay & Typography Z-Indexing)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #111;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Image Wrapper with Dimmer Overlay Effect */
.slide-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Subtle dark gradient overlay to ensure text legibility */
.slide-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100*
  );
  z-index: 2;
}

/* Typography Container Setup */
.hero-content-wrapper {
  position: relative;
  z-index: 5; /* Forces presentation above overlay block layers */
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
  color: #f7fafc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtext {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: #cbd5e0;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; /* Modern pill style shape */
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #3182ce;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2b6cb0;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #1a202c;
  transform: translateY(-2px);
}

/* Nav Control Arrows styling */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.prev-arrow { left: 25px; }
.next-arrow { right: 25px; }

/* Numeric Indicators/Dots container spacing */
.slider-dots-container {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Filter Pills Structural Wrapping Alignment */
.filter-pills-wrapper {
  position: absolute;
  bottom: 25px;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero-slider-section { height: 90vh; }
  .main-title { font-size: 2.25rem; }
  .subtitle { font-size: 1.1rem; }
  .slider-arrow { display: none; } /* Clear clutter on mobile viewports */
  .slider-dots-container { bottom: 140px; }
}

/* ==========================================================================
   Hero Slider Core Styling (Fixed Overlay & Typography Visibility)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #111;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Image Wrapper with Dimmer Overlay Effect */
.slide-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Subtle dark gradient overlay to ensure text legibility */
.slide-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 2;
}

/* Typography Container Setup */
.hero-content-wrapper {
  position: relative;
  z-index: 5; /* Forces text to sit safely on top of image dark overlay */
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff !important; /* Force explicit contrast visibility */
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
  color: #f7fafc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtext {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: #cbd5e0;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; 
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #3182ce;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2b6cb0;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #1a202c;
  transform: translateY(-2px);
}

/* Nav Control Arrows styling */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.prev-arrow { left: 25px; }
.next-arrow { right: 25px; }

/* Dynamic Navigation Dots container spacing */
.slider-dots-container {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Filter Pills Structural Wrapping Alignment */
.filter-pills-wrapper {
  position: absolute;
  bottom: 25px;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

/* Responsive Adaptive Viewports */
@media (max-width: 768px) {
  .hero-slider-section { height: 90vh; }
  .main-title { font-size: 2.25rem; }
  .subtitle { font-size: 1.1rem; }
  .slider-arrow { display: none; } /* Hide layout clutter on mobile layouts */
  .slider-dots-container { bottom: 140px; }
}

/* ==========================================================================
   Hero Slider Core Styling (Fixed Overlay & Typography Visibility)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #111;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Image Wrapper with Dimmer Overlay Effect */
.slide-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Subtle dark gradient overlay to ensure text legibility */
.slide-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 2;
}

/* Typography Container Setup */
.hero-content-wrapper {
  position: relative;
  z-index: 5; /* Forces text to sit safely on top of image dark overlay */
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff !important; /* Force explicit contrast visibility */
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
  color: #f7fafc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtext {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: #cbd5e0;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; 
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #3182ce;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2b6cb0;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #1a202c;
  transform: translateY(-2px);
}

/* Nav Control Arrows styling */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.prev-arrow { left: 25px; }
.next-arrow { right: 25px; }

/* Dynamic Navigation Dots container spacing */
.slider-dots-container {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Filter Pills Structural Wrapping Alignment */
.filter-pills-wrapper {
  position: absolute;
  bottom: 25px;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

/* Responsive Adaptive Viewports */
@media (max-width: 768px) {
  .hero-slider-section { height: 90vh; }
  .main-title { font-size: 2.25rem; }
  .subtitle { font-size: 1.1rem; }
  .slider-arrow { display: none; } /* Hide layout clutter on mobile layouts */
  .slider-dots-container { bottom: 140px; }
} 


.slide ::before{
    display: none;
}


.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem; /* <-- Added spacing here to push buttons down */
}

/* ==========================================================================
   Minimal Hero Slider Core Styling
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 80vh; /* Reduced height slightly for a cleaner aspect ratio */
  min-height: 550px;
  overflow: hidden;
  background-color: #111;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle elegant darkening vignette */
.slide-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
}

/* Clean Typography Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 5; 
  width: 100%;
  max-width: 800px;
  padding: 2rem 2rem 0 2rem;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff !important;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.main-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 1.75rem auto;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Single Elegant Action Button */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-minimal {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px; 
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-minimal:hover {
  background-color: #ffffff;
  color: #111111;
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* Clean Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 2.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.slider-arrow:hover {
  color: #ffffff;
}

.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* Navigation Indicator Dots */
.slider-dots-container {
  position: absolute;
  bottom: 100px; /* Perfectly balances whitespace between slide and pills */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Filter Pills Layout Positioning */
.filter-pills-wrapper {
  position: absolute;
  bottom: 20px; 
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.filter-pills-container {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pill {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pill.active, .pill:hover {
  background: #ffffff;
  color: #111111;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .hero-slider-section { height: 75vh; }
  .main-title { font-size: 2.2rem; }
  .subtitle { font-size: 1rem; }
  .slider-arrow { display: none; } 
  .slider-dots-container { bottom: 125px; }
}

/* ==========================================================================
   PACKAGES SEPARATE PAGE STYLESHEET (css/packages.css)
   ========================================================================== */

/* 1. Inner Page Elegant Hero Banner Structure */
.packages-hero-banner {
  position: relative;
  width: 100%;
  padding: 8rem 2rem 6rem 2rem;
  background: url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 32, 44, 0.85), rgba(26, 32, 44, 0.7));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 0 auto;
}

.banner-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #3182ce;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.banner-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e2e8f0;
  font-weight: 300;
}

/* 2. Content Layout Frame Container spacing */
.packages-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* 3. Destination Standalone Filter Capsule Tabs (Matching exact image_7cfe8e.png reference) */
.destination-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.destination-tabs-container {
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.05);
  padding: 6px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.dest-tab {
  background: transparent;
  color: #4a5568;
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-tab:hover {
  color: #1a202c;
  background: rgba(0, 0, 0, 0.02);
}

.dest-tab.active {
  background: #ffffff;
  color: #1a202c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 4. Display Logic Layout Rules for Dynamic Switching Panels */
.destination-panel {
  display: none;
}

.destination-panel.active {
  display: block;
  animation: smoothFadeVertical 0.5s ease-out forwards;
}

@keyframes smoothFadeVertical {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 5. Custom Fine-Tuned B2B Packages Card Design Layout */
.packages-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 3rem;
}

@media (max-width: 1100px) {
  .packages-cards-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
}

.custom-package-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.custom-package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-img-container {
  position: relative;
  height: 280px;
  width: 100%;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Price Floating Strip Box Element (Styled exactly like image_732086.jpg flyers) */
.card-pricing-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #718096;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b6cb0;
}

.badge-val small {
  font-size: 0.75rem;
  color: #4a5568;
  font-weight: 400;
}

/* Content Details Box */
.card-details-box {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.special-tag { background: #feebc8; color: #c05621; }
.exclusive-tag { background: #ebf8ff; color: #2b6cb0; }
.premium-tag { background: #e2e8f0; color: #4a5568; }
.cultural-tag { background: #e6fffa; color: #234e52; }

.package-card-title {
  font-size: 1.5rem;
  color: #1a202c;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.package-duration-row {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Bullet Perks lists with green checkmarks */
.package-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  border-top: 1px solid #edf2f7;
  padding-top: 1.5rem;
  flex-grow: 1;
}

.package-perks-list li {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.package-perks-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38a169;
  font-weight: 700;
}

/* Premium Rounded Pill CTA button */
.btn-card-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.95rem 0;
  background-color: transparent;
  color: #1a202c;
  border: 1px solid #cbd5e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-card-cta:hover {
  background-color: #1a202c;
  color: #ffffff;
  border-color: #1a202c;
}

/* Responsive configurations for mobile screens */
@media (max-width: 768px) {
  .banner-title { font-size: 2.5rem; }
  .banner-subtitle { font-size: 1rem; }
  .packages-page-container { padding: 2.5rem 1rem; }
  .destination-tabs-container {
    overflow-x: auto;
    max-width: 100%;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .card-img-container { height: 200px; }
  .card-details-box { padding: 1.5rem; }
}


/* ==========================================================================
   MINIMAL IMAGE ACTION WRAPPER STYLES (css/packages.css)
   ========================================================================== */

/* Hero Banner minimalist setup */
.packages-hero-banner {
  position: relative;
  width: 100%;
  padding: 6rem 2rem 4rem 2rem;
  background: #1a202c;
  text-align: center;
  color: #ffffff;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-subtitle {
  font-size: 1rem;
  color: #a0aec0;
}

/* Page Frame Spacing */
.packages-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Capsule Filter Controls (From image_7cfe8e.png styling rules) */
.destination-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.destination-tabs-container {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.05);
  padding: 6px;
  border-radius: 50px;
}

.dest-tab {
  background: transparent;
  color: #4a5568;
  border: none;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-tab.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Tab display logic controls */
.destination-panel {
  display: none;
}

.destination-panel.active {
  display: block;
}

/* Grid System customized strictly for clean presentation of vertical flyer assets */
.flyers-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
  justify-content: center;
}

/* Image Wrapper Structure Container with forced aspect properties */
.flyer-card-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flyer-card-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Image sizing ensuring clear view of your text values inside posters */
.b2b-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

/* Soft frosted blur action screen when active hovering happens */
.flyer-card-container:hover .b2b-flyer-img {
  filter: brightness(0.6) blur(2px);
}

/* Interactive Action Hover Frame Interface rules overlaying image blocks */
.flyer-action-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.flyer-card-container:hover .flyer-action-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Status Context Badge on Image Top Line */
.flyer-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-thailand { background: #fffaf0; color: #dd6b20; }
.text-singapore { background: #ebf8ff; color: #2b6cb0; }
.text-combo { background: #e6fffa; color: #234e52; }

/* Lower Button Layout Stack positioning blocks */
.flyer-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Minimal pill action triggers floating on top of custom flyer media */
.btn-flyer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.8rem 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-flyer:active {
  transform: scale(0.98);
}

.preview-btn {
  background: #ffffff;
  color: #1a202c;
}

.preview-btn:hover {
  background: #f7fafc;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #1cbd55;
}

/* Embedded Simple Base Footer */
.immersive-footer {
  background: #111111;
  color: #718096;
  padding: 1.5rem;
  margin-top: 5rem;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 480px) {
  .flyers-display-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   CLEAN RESPONSIVE FLYER RE-DESIGN SHEET (css/packages.css)
   ========================================================================== */

.packages-hero-banner {
  position: relative;
  width: 100%;
  padding: 5rem 2rem 4rem 2rem;
  background: #111827;
  text-align: center;
  color: #ffffff;
}

.banner-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.banner-subtitle {
  font-size: 1rem;
  color: #9ca3af;
}

/* Page structural Layout Constraints */
.packages-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Capsule Filter Styling layout */
.destination-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.destination-tabs-container {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.05);
  padding: 6px;
  border-radius: 50px;
}

.dest-tab {
  background: transparent;
  color: #4b5563;
  border: none;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-tab.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Panel management rules */
.destination-panel {
  display: none;
}

.destination-panel.active {
  display: block;
}

/* Responsive Grid setup optimized specifically for vertical flyers view display */
.flyers-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  justify-content: center;
}

/* Container acting as direct layout boundary anchor framework */
.flyer-card-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f3f4f6; /* placeholder fallback view screen block */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flyer-card-container:hover {
  transform: translateY(-6px);
}

/* Keep images native and responsive inside their cards */
.b2b-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1; /* Always visible */
  transition: filter 0.3s ease;
}

/* Applies slight tint dimming over flyer backdrop only when hovering active */
.flyer-card-container:hover .b2b-flyer-img {
  filter: brightness(0.4) blur(1px);
}

/* Interactive Hover Layer Panel layout configuration */
.flyer-action-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0; /* hidden entirely by default to keep clean sightlines */
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.flyer-card-container:hover .flyer-action-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Custom Floating UI Badges directly over custom flyers layout */
.flyer-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
}

.text-thailand { background: #fffaf0; color: #dd6b20; }
.text-singapore { background: #ebf8ff; color: #2b6cb0; }
.text-combo { background: #e6fffa; color: #234e52; }

.flyer-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Minimalist interaction actions blocks styling rules */
.btn-flyer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.85rem 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.preview-btn {
  background: #ffffff;
  color: #111827;
}

.preview-btn:hover {
  background: #f9fafb;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #1cbd55;
}

/* Footer layout definition metrics */
.immersive-footer {
  background: #111111;
  color: #6b7280;
  padding: 2rem 1.5rem;
  margin-top: 6rem;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 640px) {
  .flyers-display-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .banner-title { font-size: 1.8rem; }
}


/* ==========================================================================
   3-COLUMN B2B READY PACKERS ALIGNMENT STYLE (css/packages.css)
   ========================================================================== */

.packages-hero-banner {
  position: relative;
  width: 100%;
  padding: 5rem 2rem 4rem 2rem;
  background: #111827;
  text-align: center;
  color: #ffffff;
}

.banner-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.banner-subtitle {
  font-size: 1rem;
  color: #9ca3af;
}

/* Base Structural Spacing Matrix */
.packages-page-container {
  max-width: 1400px; /* Expanded grid boundary box to fit 3 items beautifully */
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Pill-Shaped Control Navigation Track */
.destination-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.destination-tabs-container {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.06);
  padding: 6px 12px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.dest-tab {
  background: transparent;
  color: #4b5563;
  border: none;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dest-tab.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Visibility Control Track states */
.destination-panel {
  display: none;
}

.destination-panel.active {
  display: block;
}

/* STUCTURAL FIX: Forces exactly 3 items per row on desktop view layouts */
.flyers-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-content: center;
}

/* Card framing geometry constraints */
.flyer-card-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f3f4f6;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.flyer-card-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Ensure posters maintain structural sharpness */
.b2b-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: filter 0.35s ease;
}

.flyer-card-container:hover .b2b-flyer-img {
  filter: brightness(0.35) blur(1.5px);
}

/* Instant Actions Overlay System Layer */
.flyer-action-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.flyer-card-container:hover .flyer-action-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Component Badges */
.flyer-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-thailand { background: #fffaf0; color: #dd6b20; }
.text-singapore { background: #ebf8ff; color: #2b6cb0; }
.text-combo { background: #e6fffa; color: #234e52; }

.flyer-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Dynamic Badge Buttons */
.btn-flyer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.85rem 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-flyer:active {
  transform: scale(0.98);
}

.preview-btn {
  background: #ffffff;
  color: #111827;
}

.preview-btn:hover {
  background: #f9fafb;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #1cbd55;
}

/* Immersive Footer standard system framework styling */
.immersive-footer {
  background: #111111;
  color: #6b7280;
  padding: 2rem 1.5rem;
  margin-top: 6rem;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE STEP-DOWNS: Graceful fallbacks for smaller viewports */
@media (max-width: 1024px) {
  .flyers-display-grid { grid-template-columns: repeat(2, 1fr); } /* 2 per row on tablets */
}

@media (max-width: 680px) {
  .flyers-display-grid { grid-template-columns: 1fr; } /* 1 per row on phones */
  .footer-bottom { flex-direction: column; text-align: center; }
  .banner-title { font-size: 1.8rem; }
}


/* ==========================================================================
   FORCE 3-COLUMN LAYOUT SYSTEM STYLE SHEET (css/packages.css)
   ========================================================================== */

.packages-hero-banner {
  position: relative;
  width: 100%;
  padding: 5rem 2rem 4rem 2rem;
  background: #111827;
  text-align: center;
  color: #ffffff;
}

.banner-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.banner-subtitle {
  font-size: 1rem;
  color: #9ca3af;
}

.packages-page-container {
  max-width: 1440px; /* Expanded space to easily allow 3 layouts per row side-by-side */
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Horizontal Segment Filters Style Framework */
.destination-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.destination-tabs-container {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.06);
  padding: 6px 12px;
  border-radius: 50px;
}

.dest-tab {
  background: transparent;
  color: #4b5563;
  border: none;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-tab:hover {
  color: #111111;
}

.dest-tab.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Standard Tab Visibility Blocks */
.destination-panel {
  display: none !important;
}

.destination-panel.active {
  display: block !important;
}

/* STRICT RULE: Fixed exact three-column display structure for posters on desktop screen modes */
.flyers-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.5rem;
}

/* Card Framing Boundary Anchor Details */
.flyer-card-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #f3f4f6;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flyer-card-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.b2b-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: filter 0.3s ease;
}

.flyer-card-container:hover .b2b-flyer-img {
  filter: brightness(0.35) blur(1px);
}

/* Action Hover Overlay Sheets System */
.flyer-action-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.flyer-card-container:hover .flyer-action-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Inner Badges Floating Layout Styles */
.flyer-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
}

.text-thailand { background: #fffaf0; color: #dd6b20; }
.text-singapore { background: #ebf8ff; color: #2b6cb0; }
.text-combo { background: #e6fffa; color: #234e52; }

.flyer-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-flyer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.8rem 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
}

.preview-btn {
  background: #ffffff;
  color: #111827;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #1cbd55;
}

/* Immersive Footer Framework Box styling rules */
.immersive-footer {
  background: #111111;
  color: #6b7280;
  padding: 2rem 1.5rem;
  margin-top: 6rem;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* GRACEFUL BREAKDOWNS: Fallbacks to manage columns cleanly on small devices */
@media (max-width: 1024px) {
  .flyers-display-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 680px) {
  .flyers-display-grid { grid-template-columns: 1fr !important; }
  .destination-tabs-container { flex-wrap: wrap; justify-content: center; border-radius: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}




/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero Banner */
.about-hero-banner {
    position: relative;
    background-image: linear-gradient(rgba(11, 26, 48, 0.7), rgba(11, 26, 48, 0.85)), 
                      url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center 60%;
    padding: 120px 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
    border-radius: 0 0 24px 24px;
}

.about-hero-banner .banner-heading {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: #FFFFFF !important;
}

/* Layout Utilities */
.section-kicker {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.center-align {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.bg-muted {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    margin: 40px 0;
}

.reverse-layout {
    direction: rtl;
}
.reverse-layout > * {
    direction: ltr;
}

/* Minimal Cards (For Divisions) */
.divisions-grid {
    margin-top: 20px;
}

.minimal-card {
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.minimal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
    border-color: var(--accent-gold);
}

/* Stats Banner */
.stats-banner-section {
    background-color: var(--bg-infobar);
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
    border-radius: 16px;
}

.stats-banner-section h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #E2E8F0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Network & Clients Grid */
.clients-partners-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.network-title {
    font-size: 18px;
    color: var(--text-heading);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.minimal-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.minimal-list-grid li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.minimal-list-grid li::before {
    content: "•";
    color: var(--accent-gold);
    font-size: 18px;
    margin-right: 8px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-img {
    height: 280px;
    width: 100%;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-img img {
    filter: grayscale(0%);
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 18px;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.team-info p {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 500;
}

/* Responsive Overrides for About Page */
@media (max-width: 768px) {
    .about-hero-banner { padding: 80px 20px; border-radius: 0; }
    .stats-grid, .clients-partners-wrapper, .team-grid { grid-template-columns: 1fr; gap: 30px; }
    .stat-item { margin-bottom: 20px; }
}

/* Animation Utility Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }


/* ==========================================================================
   SMOOTH SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Base state for elements before they are scrolled into view */
.smooth-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active state triggered by JavaScript Intersection Observer */
.smooth-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Stagger delays for grid items if they load at the same time */
.packages-grid .package-card:nth-child(2),
.why-grid .why-card:nth-child(2),
.team-grid .team-card:nth-child(2) {
    transition-delay: 0.1s;
}

.packages-grid .package-card:nth-child(3),
.why-grid .why-card:nth-child(3),
.team-grid .team-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* ==========================================================================
   PACKAGE FILTERING TRANSITIONS
   ========================================================================== */
.package-card {
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.force-hide-element {
    display: none !important;
}

/* ==========================================================================
   ACCORDION ANIMATION REFINEMENTS
   ========================================================================== */
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--bg-primary);
}


document.addEventListener("DOMContentLoaded", () => {
    
    /* ==========================================================================
       1. SMOOTH SCROLL REVEAL (Intersection Observer)
       ========================================================================== */
    // Target all elements that should fade up as you scroll
    const animatedElements = document.querySelectorAll('.smooth-reveal, .package-card, .why-card, .team-card');

    const revealObserver = new IntersectionObserver((entries, observer) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('is-visible');
                observer.unobserve(entry.target); // Only animate once
            }
        });
    }, {
        root: null,
        threshold: 0.15, // Trigger when 15% visible
        rootMargin: "0px 0px -50px 0px"
    });

    animatedElements.forEach(el => {
        // Ensure they have the base class before observing
        el.classList.add('smooth-reveal');
        revealObserver.observe(el);
    });

    /* ==========================================================================
       2. NUMBER COUNTER ANIMATION
       ========================================================================== */
    const counters = document.querySelectorAll('.counter');
    const animationSpeed = 200; // Lower number = faster counting

    const runCounter = (counter) => {
        const updateCount = () => {
            const target = +counter.getAttribute('data-target');
            const count = +counter.innerText;
            
            // Calculate increment based on target
            const increment = target / animationSpeed;

            if (count < target) {
                counter.innerText = Math.ceil(count + increment);
                setTimeout(updateCount, 10); // Run every 10ms
            } else {
                counter.innerText = target; // Lock exactly to the target number
            }
        };
        updateCount();
    };

    // Use Intersection Observer so it only counts when the user sees it
    const counterObserver = new IntersectionObserver((entries, observer) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                const counter = entry.target;
                runCounter(counter);
                observer.unobserve(counter); // Stop observing so it doesn't recount
            }
        });
    }, {
        root: null,
        threshold: 0.5, // Wait until the stats block is 50% visible
        rootMargin: "0px"
    });

    counters.forEach(counter => {
        counterObserver.observe(counter);
    });

    /* ==========================================================================
       3. THEME TOGGLE (DARK/LIGHT MODE)
       ========================================================================== */
    const themeToggle = document.getElementById("themeToggle");
    const rootHtml = document.documentElement;
    const toggleIcon = themeToggle ? themeToggle.querySelector('.toggle-icon') : null;

    const savedTheme = localStorage.getItem("theme");
    if (savedTheme) {
        rootHtml.setAttribute("data-theme", savedTheme);
        if(toggleIcon) toggleIcon.textContent = savedTheme === "dark" ? "☀️" : "🌙";
    }

    if (themeToggle) {
        themeToggle.addEventListener("click", () => {
            const currentTheme = rootHtml.getAttribute("data-theme");
            const newTheme = currentTheme === "dark" ? "light" : "dark";
            
            rootHtml.setAttribute("data-theme", newTheme);
            localStorage.setItem("theme", newTheme);
            
            if(toggleIcon) toggleIcon.textContent = newTheme === "dark" ? "☀️" : "🌙";
        });
    }

    /* ==========================================================================
       4. FAQ ACCORDION LOGIC
       ========================================================================== */
    const accordions = document.querySelectorAll(".accordion-header");
    accordions.forEach(accordion => {
        accordion.addEventListener("click", function() {
            // Close others
            accordions.forEach(other => {
                if (other !== this && other.parentElement.classList.contains("active")) {
                    other.parentElement.classList.remove("active");
                    other.setAttribute("aria-expanded", "false");
                    other.nextElementSibling.style.maxHeight = null;
                }
            });

            const panel = this.nextElementSibling;
            const item = this.parentElement;
            const isActive = item.classList.toggle("active");
            
            this.setAttribute("aria-expanded", isActive);
            panel.style.maxHeight = isActive ? panel.scrollHeight + "px" : null;
        });
    });
});

/* ==========================================================================
   STATS COUNTER BANNER (Matches your screenshot)
   ========================================================================== */
.stats-banner-section {
    background-color: #0B1A30; /* Deep navy background from screenshot */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
}

.stats-banner-section h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 56px; /* Large numbers */
    font-weight: 700;
    color: #F59E0B; /* The golden yellow from your screenshot */
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
}

/* ==========================================================================
   SMOOTH SCROLL REVEAL ANIMATIONS (Triggered by JS)
   ========================================================================== */
/* Base hidden state */
.smooth-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active visible state */
.smooth-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional cascading delays for grid items */
.team-card:nth-child(2),
.contact-pill-item:nth-child(2),
.stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.team-card:nth-child(3),
.contact-pill-item:nth-child(3),
.stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.contact-pill-item:nth-child(4) {
    transition-delay: 0.3s;
}



/* ==========================================================================
   NEW ABOUT PAGE SECTIONS (Vision, Values, Founder)
   ========================================================================== */

/* Vision & Mission Split Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}

.vm-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 22px;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Core Values 4-Column Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-box {
    background: var(--bg-primary); /* Uses alternate background for contrast */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.value-box:hover {
    border-color: var(--accent-gold);
}

.value-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.value-box h4 {
    font-size: 17px;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.value-box p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Founder / Leadership Message Section */
.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
}

.founder-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.founder-quote {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 500;
    font-style: italic;
    margin: 24px 0;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--accent-gold);
}

.founder-signature h5 {
    font-size: 16px;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.founder-signature p {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Scaling for New Grids */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .founder-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .founder-img {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}



/* Popup Code Starts from here  */
/* --- Root Core Variables & Reset --- */
:root {
    --popup-brand-orange: #e45d16; /* Extracted custom color from image_8eaa9f.jpg */
    --popup-dark: #222222;         
    --popup-gray: #666666;         
    --popup-border: #cccccc;       
}

.travel-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px); 
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active Class for Triggering Popup */
.travel-popup-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Instant Fade-Up Zoom Animation Card */
.travel-popup-card {
    background: #ffffff;
    width: 92%;
    max-width: 850px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.travel-popup-overlay.is-visible .travel-popup-card {
    transform: translateY(0) scale(1);
}

/* Floating Cross Close Button */
.travel-popup-close-btn {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #ffffff;
    border: 1px solid #dddddd;
    font-size: 24px;
    font-weight: bold;
    color: #444444;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.travel-popup-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: #f7f7f7;
}

/* Grid Layout Split Window */
.travel-popup-container {
    display: flex;
    flex-direction: row;
}

.travel-popup-banner {
    flex: 1.1;
    max-width: 46%;
    background-color: #fcfcfc;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    overflow: hidden;
}

.travel-popup-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.travel-popup-form-side {
    flex: 1.2;
    padding: 40px 40px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Content Typography styling */
.travel-popup-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--popup-gray);
    font-family: Arial, sans-serif;
}

.travel-popup-header h2 {
    margin: 6px 0 10px 0;
    font-size: 24px;
    font-weight: bold;
    color: var(--popup-brand-orange);
    font-family: Arial, sans-serif;
}

.travel-popup-header p {
    margin: 0 0 25px 0;
    font-size: 13.5px;
    color: #555555;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

/* Form Structure Layout Rows */
.travel-popup-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    width: 100%;
}

.form-row.split-width {
    gap: 15px;
}

.floating-input-group {
    position: relative;
    flex: 1;
}

/* Floating Label Form Inputs Fields */
.floating-input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--popup-border);
    border-radius: 8px;
    font-size: 14px;
    color: #111111;
    outline: none;
    box-sizing: border-box;
    background: transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-input-group input:focus {
    border-color: var(--popup-brand-orange);
    box-shadow: 0 0 0 1px var(--popup-brand-orange);
}

/* Dynamic Label Movements */
.floating-input-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 6px;
    color: #888888;
    font-size: 14px;
    font-family: Arial, sans-serif;
    pointer-events: none;
    transition: transform 0.2s ease, top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.floating-input-group input:focus ~ label,
.floating-input-group input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 12px;
    color: var(--popup-brand-orange);
    font-weight: 600;
}

/* Brand Theme Submission Button Layout */
.travel-popup-submit-btn {
    width: 100%;
    background-color: var(--popup-brand-orange);
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px; 
    cursor: pointer;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(228, 93, 22, 0.25);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.travel-popup-submit-btn:hover {
    background-color: #c94f10;
}

.travel-popup-submit-btn:active {
    transform: scale(0.99);
}

/* Footer Badge Bar */
.travel-popup-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 11.5px;
    font-weight: 600;
    color: #666666;
    font-family: Arial, sans-serif;
}

.travel-popup-badges .divider {
    color: #dddddd;
    font-weight: normal;
}

/* Responsive Adaptive Mobile Screen States */
@media (max-width: 720px) {
    .travel-popup-container {
        flex-direction: column;
    }
    .travel-popup-banner {
        display: none; 
    }
    .travel-popup-form-side {
        padding: 35px 25px 25px 25px;
    }
    .form-row.split-width {
        flex-direction: column;
        gap: 18px;
    }
    .travel-popup-badges {
        font-size: 10.5px;
        flex-wrap: wrap;
        gap: 6px;
    }
    .travel-popup-badges .divider {
        display: none;
    }
    .travel-popup-badges span {
        background: #fcf1eb;
        color: var(--popup-brand-orange);
        padding: 5px 10px;
        border-radius: 4px;
    }
}





/* PoPup code Ends here */




/* ==========================================================================
   SMOOTH SCROLL REVEAL ANIMATIONS 
   ========================================================================== */
.smooth-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.smooth-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }



/* --- Brand Configuration Sync --- */
:root {
    --mh-orange-theme: #e45d16;  /* Matches your Malaysia Package perfectly */
    --mh-text-dark: #0f172a;
    --mh-text-muted: #64748b;
    --mh-font-family: Arial, sans-serif;
}

.mh-main-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Smooth Scroll Reveal Load State --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* --- Top Legacy Header & Counters --- */
.mh-legacy-header {
    text-align: center;
    margin-bottom: 45px;
}

.mh-legacy-header h2 {
    font-family: var(--mh-font-family);
    color: var(--mh-text-dark);
    font-size: 28px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.mh-legacy-header .mh-subtitle {
    font-family: var(--mh-font-family);
    color: var(--mh-text-muted);
    font-size: 14px;
    margin: 0 0 35px 0;
}

.mh-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mh-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.mh-stat-icon {
    color: var(--mh-orange-theme);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-stat-number {
    font-family: var(--mh-font-family);
    font-size: 22px;
    font-weight: 700;
    color: var(--mh-text-dark);
    margin-bottom: 4px;
}

.mh-stat-label {
    font-family: var(--mh-font-family);
    font-size: 13px;
    color: var(--mh-text-muted);
}

/* --- Main Adventure Banner Compound Box --- */
.mh-adventure-banner {
    background: linear-gradient(135deg, var(--mh-orange-theme) 0%, #b8430a 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(228, 93, 22, 0.15);
}

.mh-banner-left {
    flex: 0.9;
    color: #ffffff;
}

.mh-banner-left h3 {
    font-family: var(--mh-font-family);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.mh-banner-left p {
    font-family: var(--mh-font-family);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.mh-banner-right-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- Nested Internal Action Cards --- */
.mh-tour-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mh-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.mh-card-img {
    height: 130px;
    width: 100%;
    overflow: hidden;
}

.mh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mh-tour-card:hover .mh-card-img img {
    transform: scale(1.06);
}

.mh-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mh-card-body h4 {
    font-family: var(--mh-font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--mh-text-dark);
    margin: 0 0 8px 0;
}

.mh-card-body p {
    font-family: var(--mh-font-family);
    font-size: 12.5px;
    color: var(--mh-text-muted);
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.mh-explore-link {
    font-family: var(--mh-font-family);
    font-size: 13px;
    font-weight: 700;
    color: var(--mh-orange-theme);
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.mh-explore-link:hover {
    color: #b8430a;
    text-decoration: underline;
}

/* --- Responsive Layout Modifiers --- */
@media (max-width: 992px) {
    .mh-adventure-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
    }
    .mh-banner-left {
        text-align: center;
        margin-bottom: 10px;
    }
    .mh-banner-right-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mh-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        row-gap: 25px;
    }
    .mh-banner-right-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mh-card-img {
        height: 160px; /* Thicker presentation profiles on single columns */
    }
}



/* --- Root References --- */
:root {
    --mh-google-blue: #4285f4;
    --mh-brand-orange: #e45d16; /* Inherited brand color */
    --star-gold: #ffb400;
    --card-border-radius: 20px;
}

.mh-reviews-section {
    max-width: 1240px;
    margin: 80px auto;
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
}

/* --- Top Header Structural Bar Grid Layout --- */
.mh-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.mh-section-title {
    font-family: Arial, sans-serif;
    color: #222222;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Google Micro Branding Element styling */
.mh-google-logo-text {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.5px;
}
.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-solid-green { color: #34a853; }
.reviews-txt { color: #5f6368; font-weight: normal; margin-left: 4px; }

.mh-rating-stars-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-family: Arial, sans-serif;
}
.rating-num { font-weight: bold; font-size: 18px; color: #222; }
.stars-gold { color: var(--star-gold); font-size: 16px; letter-spacing: 1px; }
.rating-count { color: #888; font-size: 12px; }

/* Call to Action Button */
.mh-google-btn {
    background-color: var(--mh-google-blue);
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 22px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
    transition: background-color 0.2s, transform 0.1s;
}
.mh-google-btn:hover { background-color: #357ae8; }

/* --- Slider Core Window Structure --- */
.mh-slider-viewport {
    position: relative;
    overflow: hidden; /* Clips elements sliding out of box paths */
    padding: 10px 5px;
}

.mh-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* --- Review Item Card --- */
.mh-review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--card-border-radius);
    padding: 24px;
    min-width: calc(33.333% - 16px); /* Displays 3 cards across desktop devices */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.mh-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Custom Fallback Colorful Initials Circle Profile Badges */
.mh-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
    position: relative;
}
.avatar-l { background-color: #2e7d32; }
.avatar-k { background-color: #006064; }
.avatar-s { background-color: #4e342e; }

.mh-user-img-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

/* Little nested overlapping Google Badge flag icons matching reference shot */
.mini-g-badge, .mh-card-header img + .mini-g-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    font-size: 9px;
    font-weight: bold;
    color: var(--mh-google-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-user-info h4 {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14.5px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 4px;
}
.verified-check {
    color: #ffffff;
    background-color: #4285f4;
    border-radius: 50%;
    font-size: 8px;
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.review-date { font-size: 12px; color: #777; font-family: Arial, sans-serif; }

.card-stars { color: var(--star-gold); font-size: 15px; margin-bottom: 12px; }

.review-text {
    font-family: Arial, sans-serif;
    font-size: 13.5px;
    color: #444444;
    line-height: 1.5;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Truncates long cards neatly */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: #888888;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-family: Arial, sans-serif;
    margin-top: auto;
}
.read-more-btn:hover { color: #333; text-decoration: underline; }

/* --- Navigation Arrow Controls --- */
.mh-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 34, 34, 0.45);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
}
.mh-slider-arrow:hover { background-color: rgba(34, 34, 34, 0.75); }
.prev-arrow { left: -10px; }
.next-arrow { right: -10px; }

/* --- Responsive Adaptive Modifiers --- */
@media (max-width: 992px) {
    .mh-review-card { min-width: calc(50% - 12px); } /* Show 2 cards across medium displays */
}

@media (max-width: 768px) {
    .mh-reviews-header {
        flex-direction: column;
        text-align: center;
    }
    .mh-review-card { min-width: 100%; } /* Single full width cards on mobile devices */
    .mh-slider-arrow { width: 36px; height: 36px; font-size: 20px; }
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
}


/* --- Updated Transparent Navigation Arrow Controls --- */
.mh-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Sleek semi-transparent dark circle background */
    background: rgba(0, 0, 0, 0.25); 
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    font-weight: 300;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px); /* Modern blur effect behind the transparency */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.3s ease;
}

/* Enhances contrast and gently scales up button when hovered */
.mh-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-50%) scale(1.08);
}

/* Positions buttons perfectly overlapping the track boundary */
.prev-arrow { 
    left: -12px; 
}
.next-arrow { 
    right: -12px; 
}

/* Smart UI: Slightly hide buttons on tiny mobile screens to avoid text crowding */
@media (max-width: 500px) {
    .mh-slider-arrow {
        background: rgba(0, 0, 0, 0.15);
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .prev-arrow { left: -4px; }
    .next-arrow { right: -4px; }
}

/* --- Updated Fully Transparent Slide Buttons --- */
.mh-slider-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    transform: none; /* Removed vertical translation to allow full height capture */
    background: transparent; /* Completely clear background canvas */
    color: #333333; /* Rich dark gray icon contrast */
    border: none;
    width: 60px; /* Wider invisible hitting box for easier desktop clicking */
    height: auto;
    border-radius: 0;
    cursor: pointer;
    font-size: 42px; /* Large, premium thin arrow symbol */
    font-weight: 100;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                color 0.2s ease, 
                opacity 0.2s ease;
    opacity: 0.6; /* Soft visibility by default */
}

/* Positions left and right buttons flush to the edges of the viewport container */
.prev-arrow { 
    left: 0; 
}
.next-arrow { 
    right: 0; 
}

/* Hover Micro-Interactions */
.mh-slider-arrow:hover {
    background: transparent; /* Remains completely clear */
    color: var(--mh-brand-orange); /* Highlights with your signature brand orange on hover */
    opacity: 1;
}

.next-arrow:hover {
    transform: translateX(4px); /* Micro-move outward on hover */
}

.prev-arrow:hover {
    transform: translateX(-4px); /* Micro-move outward on hover */
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
    .mh-slider-arrow {
        width: 40px;
        font-size: 32px;
        opacity: 0.8; /* Higher visibility defaults for touch devices */
    }
}


/* --- Right Side Header Controls Grouping --- */
.mh-header-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mh-arrow-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* --- Repositioned Transparent Slider Buttons --- */
.mh-slider-arrow {
    position: relative; /* Changed from absolute to flow naturally in header */
    background: transparent;
    color: #444444;
    border: 1px solid #dddddd; /* Thin modern border outline */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: 3px; /* Optically centers the arrow icon symbol vertically */
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Subtle Hover States using your Brand Theme */
.mh-slider-arrow:hover {
    border-color: var(--mh-brand-orange);
    color: var(--mh-brand-orange);
    background-color: #fffaf7; /* Minimal brand tint */
}

/* Override side positioning rules since buttons live in the header row now */
.prev-arrow, .next-arrow {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    opacity: 1;
}

/* Mobile Layout Responsive Fixes */
@media (max-width: 768px) {
    .mh-reviews-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mh-header-controls-wrapper {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .mh-arrow-container {
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }
}

/* --- Right Side Header Controls Grouping --- */
.mh-header-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mh-arrow-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* --- Repositioned Transparent Slider Buttons --- */
.mh-slider-arrow {
    position: relative; /* Changed from absolute to flow naturally in header */
    background: transparent;
    color: #444444;
    border: 1px solid #dddddd; /* Thin modern border outline */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: 3px; /* Optically centers the arrow icon symbol vertically */
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Subtle Hover States using your Brand Theme */
.mh-slider-arrow:hover {
    border-color: var(--mh-brand-orange);
    color: var(--mh-brand-orange);
    background-color: #fffaf7; /* Minimal brand tint */
}

/* Override side positioning rules since buttons live in the header row now */
.prev-arrow, .next-arrow {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    opacity: 1;
}

/* Mobile Layout Responsive Fixes */
@media (max-width: 768px) {
    .mh-reviews-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mh-header-controls-wrapper {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .mh-arrow-container {
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }
}


/* --- Floating Sticky Button Styling --- */
.dream-trip-sticky-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: #e45d16; /* Your signature deep orange brand color matches edited-image_2.png */
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    white-space: nowrap;
    transition: background-color 0.2s ease, padding 0.2s ease;
}

.dream-trip-sticky-btn:hover {
    background-color: #c94f10;
    padding-bottom: 16px; /* Pops out slightly on hover */
}

/* --- Modal Base Layer Layout --- */
.dream-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6); /* Deep navy glass tint */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100005;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Modal Active Pop State */
.dream-modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.dream-modal-card {
    background: #ffffff;
    width: 94%;
    max-width: 900px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: visible;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dream-modal-overlay.is-active .dream-modal-card {
    transform: translateY(0) scale(1);
}

/* Overlapping Close Button layout box */
.dream-modal-close-x {
    position: absolute;
    top: 10px;
    right: -42px; /* Pulls button cleanly outside card boundary layer */
    background: #ffffff;
    border: none;
    font-size: 24px;
    color: #333333;
    font-weight: 300;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.dream-modal-close-x:hover {
    transform: scale(1.08);
}

/* --- Content Split Wrapper --- */
.dream-modal-wrapper {
    display: flex;
    flex-direction: row;
}

.dream-modal-image-side {
    flex: 1;
    max-width: 40%;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    background-color: #f8fafc;
}

.dream-modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dream-modal-form-side {
    flex: 1.5;
    padding: 35px 40px;
    box-sizing: border-box;
}

.dream-modal-form-side h2 {
    margin: 0 0 24px 0;
    font-family: Arial, sans-serif;
    color: #222222;
    font-size: 26px;
    font-weight: bold;
}

/* --- Inner Form Structural Inputs --- */
.dream-form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dream-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dream-form-grid input,
.dream-form-grid textarea,
.mock-phone-input-group {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13.5px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    outline: none;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.dream-form-grid input:focus,
.dream-form-grid textarea:focus,
.mock-phone-input-group:focus-within {
    border-color: #0b1a4a; /* Focus outline matches the dark navy button */
}

/* Phone Field custom layout styles */
.mock-phone-input-group {
    display: flex;
    align-items: center;
}
.mock-flag { font-size: 16px; margin-right: 4px; }
.mock-prefix { color: #555; font-size: 13.5px; margin-right: 4px; }

.dream-form-grid textarea {
    resize: none;
}

/* --- reCAPTCHA Mock Component --- */
.dream-recaptcha-mock {
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    width: 270px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin: 5px 0;
}

.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.recaptcha-left input {
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.recaptcha-left label {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #222;
    cursor: pointer;
    user-select: none;
}

.recaptcha-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555555;
}
.captcha-icon { font-size: 18px; color: #4285f4; font-weight: bold; line-height: 1; }
.recaptcha-right span { font-size: 8px; font-family: sans-serif; margin-top: 4px; }

/* --- Deep Navy Submit Button --- */
.dream-submit-btn {
    width: 100%;
    background-color: #0b1a4a; /* Deep navy tone from reference image */
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border-radius: 25px; /* Pill design style */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(11, 26, 74, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.dream-submit-btn:hover {
    background-color: #142866;
}

.dream-submit-btn:active {
    transform: scale(0.99);
}

/* --- Mobile Responsive Rules --- */
@media (max-width: 768px) {
    .dream-modal-image-side {
        display: none; /* Safely drops left layout to prioritize form on mobile screen spaces */
    }
    .dream-modal-form-side {
        padding: 30px 24px;
    }
    .dream-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .dream-modal-close-x {
        right: 12px;
        top: -42px; /* Positions button cleanly on top of modal for mobile screens */
    }
}


/* ==========================================================================
   HOMEPAGE FULLSCREEN HERO SLIDER & KEN BURNS EFFECT
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Complete fullscreen height */
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Image Wrapper & Zoom Engine */
.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease-out; /* Smooth ongoing zoom duration */
}

/* Dark cinematic overlay for typography contrast */
.slide-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Active slide scales up dynamically */
.slide.active .slide-image-wrapper img {
    transform: scale(1.12);
}

/* Typography Container Design */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    padding: 0 24px;
    color: #FFFFFF;
}

/* Content Fade/Slide up staggered entry animations */
.hero-content-wrapper > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide.active .hero-content-wrapper > * {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .hero-tagline { transition-delay: 0.3s; }
.slide.active .main-title   { transition-delay: 0.5s; }
.slide.active .subtitle     { transition-delay: 0.7s; }
.slide.active .hero-actions { transition-delay: 0.9s; }

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.main-title {
    font-size: clamp(32px, 6vw, 64px); /* Fluid typography scales elegantly across mobile/desktop */
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -1px;
}

.subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin: 20px auto 32px;
    line-height: 1.6;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* Minimalist Button Styling matching user frames */
.btn-minimal {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Navigation UI Layout overrides */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: #FFFFFF;
    color: #000000;
}

.prev-arrow { left: 25px; }
.next-arrow { right: 25px; }

.slider-dots-container {
    position: absolute;
    bottom: 120px; /* Positioned safely above filter pills */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.2);
}

/* Bottom Floating Filter Wrapper */
.filter-pills-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 20px;
}

.filter-pills-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px;
    border-radius: 40px;
    max-width: max-content;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.filter-pills-container .pill {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-pills-container .pill.active, 
.filter-pills-container .pill:hover {
    background: #FFFFFF;
    color: #000000;
}



/* ==========================================================================
   HOMEPAGE HERO LAYOUT & KEN BURNS SLIDER EFFECT
   ========================================================================== */
.hero-slider-section {
    position: relative;
    
    /* CRITICAL FIX: Breaks cleanly out of '.main-wrapper' constraints */
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* Full Screen Viewport Height Configuration */
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Image Wrapper & Ken Burns Zoom Engine */
.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out; /* Premium, slow, cinematic zoom speed */
}

/* Vignette overlay shading for clean text readability */
.slide-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 2;
}

/* Active Zoom State */
.slide.active .slide-image-wrapper img {
    transform: scale(1.15);
}

/* Typography Container Design */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    padding: 0 24px;
    color: #FFFFFF;
}

/* Staggered Content Entry Animations */
.hero-content-wrapper > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide.active .hero-content-wrapper > * {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .hero-tagline { transition-delay: 0.3s; }
.slide.active .main-title   { transition-delay: 0.5s; }
.slide.active .subtitle     { transition-delay: 0.7s; }
.slide.active .hero-actions { transition-delay: 0.9s; }

.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold, #e45d16);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.main-title {
    font-size: clamp(34px, 6vw, 64px); /* Scales cleanly across phones and desktops */
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -1px;
}

.subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    margin: 16px auto 32px;
    line-height: 1.6;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.btn-minimal {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Interactive Navigation Elements */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: #FFFFFF;
    color: #000000;
}

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

.slider-dots-container {
    position: absolute;
    bottom: 115px; /* Sits nicely above the floating category pills block */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.2);
}

/* Bottom Glassmorphic Category Pills Wrapper */
.filter-pills-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 20px;
}

.filter-pills-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    background: rgba(15, 23, 42, 0.45); /* Sleek frosted layout matching the live references */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 40px;
    max-width: max-content;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-pills-container .pill {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-pills-container .pill.active,
.filter-pills-container .pill:hover {
    background: #FFFFFF;
    color: #000000;
}



/* --- Loading & Scroll Reveal Animation Layout States --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.215, 0.610, 0.355, 1), 
                transform 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
    will-change: opacity, transform;
}

/* This class activates automatically via JS once scrolled or reloaded */
.scroll-reveal.mh-reveal-active {
    opacity: 1;
    transform: translateY(0);
}


/* Arrow for slide display none code  */

.prev-arrow,.next-arrow {
  display: none;
}


.hero-slider-section {q
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; /* <--- This creates horizontal overflow */
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}


html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safely clips off any micro-overflow gaps */
}


/* ## 1. Global Core Architecture & Shared Reset
**File Path:** `css/global.css`  
*Contains your variables, typographic standards, shared UI states, and your body overflow bug fix ensuring no horizontal landscape shifting happens.* */

/* ```css */
/* ==========================================================================
   GLOBAL STYLE VARIABLE ARCHITECTURE & RESET (css/global.css)
   ========================================================================== */
:root {
    --bg-primary: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-infobar: #1A2E40;
    --border-color: #E2E8F0;
    --input-bg: #FAFAFA;
    --text-main: #2D3748;
    --text-muted: #4A5568;
    --text-heading: #1A365D;
    --text-light: #718096;
    --text-accent: #E53E3E;
    --accent-gold: #e45d16;
    --accent-red: #E53E3E;
    --accent-red-hover: #C53030;
}

[data-theme="dark"] {
    --bg-primary: #0F172A;
    --bg-card: #1E293B;
    --bg-infobar: #020617;
    --border-color: #334155;
    --input-bg: #111827;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-heading: #38BDF8;
    --text-light: #64748B;
    --text-accent: #F87171;
    --accent-gold: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CRITICAL FIX: Global layout bounding protection clips unexpected horizontal layout tracking completely */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Transition Rules for Interactive Blocks */
.main-header, .package-card, .info-card, .info-card-block, 
.form-card-wrapper, .form-container-panel, .accordion-item, .social-card {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Shared Component Utility Rules */
.force-hide-element {
    display: none !important;
}

.smooth-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.smooth-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   TOP INFOBAR & HEADER NAVIGATION
   ========================================================================== */
.top-infobar {
    background-color: var(--bg-infobar);
    color: #FFFFFF;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.infobar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.infobar-link {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.infobar-link:hover {
    color: var(--accent-gold);
}

.main-header {
    background-color: var(--bg-card);
    border-bottom: 3px solid var(--bg-infobar);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

[data-theme="dark"] .brand-logo-img {
    filter: brightness(0) invert(1);
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.arrow-indicator {
    font-size: 8px;
    color: var(--text-light);
    transition: transform 0.2s ease;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 220px;
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background-color: var(--bg-primary);
    color: var(--accent-gold);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.open .arrow-indicator {
    transform: rotate(180deg);
}

.contact-button {
    border: 1px solid var(--text-main);
    border-radius: 4px;
    padding: 8px 16px;
}

.contact-button:hover, .contact-button.active {
    background-color: var(--text-main);
    color: var(--bg-card) !important;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.theme-toggle:hover {
    background-color: var(--border-color);
    transform: scale(1.05);
}

/* Shared Immersive Visual Footer */
.immersive-footer {
    background-color: #0B1A30;
    background-image: linear-gradient(to bottom, rgba(11, 26, 48, 0.9), #060F1D), 
                      url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 60px 40px 30px;
    margin-top: 60px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.footer-hero-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-hero-cta h2 { font-size: 32px; margin-bottom: 10px; color: #FFFFFF !important;}
.footer-hero-cta p { color: #A0AEC0; font-size: 14px; }

.contact-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.contact-pill-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
}

.contact-pill-item h5 { color: #e45d16; font-size: 13px; margin-bottom: 6px; }
.contact-pill-item p { font-size: 12.5px; color: #E2E8F0; line-height: 1.4; }

.footer-links-container {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.brand-column .footer-logo { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #e45d16; }
.brand-column p { font-size: 13px; color: #A0AEC0; line-height: 1.5; }
.links-column h4 { font-size: 12px; color: #718096; margin-bottom: 14px; text-transform: uppercase; }

.links-column a {
    display: block;
    color: #E2E8F0;
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.links-column a:hover { color: #e45d16; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #718096;
}

.footer-social-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-link:hover {
    color: #FFFFFF;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

.legal-links-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links-column a {
    color: #718096;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s ease;
}

.legal-links-column a:hover { color: var(--accent-gold); }

@media (max-width: 1024px) {
    .contact-box-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navigation-menu { display: none; }
    .footer-links-container { grid-template-columns: 1fr; gap: 20px; }
    .immersive-footer { padding: 40px 20px 20px; }
    .brand-logo-img { height: 44px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
}


/* Change this line from [data-theme="dark"] to turn it off */
[data-theme="disabled-dark"] {
    --bg-primary: #0F172A;
    --bg-card: #1E293B;
    --bg-infobar: #020617;
    --border-color: #334155;
    --input-bg: #111827;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-heading: #38BDF8;
    --text-light: #64748B;
    --text-accent: #F87171;
    --accent-gold: #e45d16;
}





/* ==========================================================================
   HOMEPAGE SPECIFIC SHEET (css/home.css)
   ========================================================================== */

/* --- Full Screen Breakout Ken Burns Slider Structure --- */
.hero-slider-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease-in-out,
    visibility 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.slide-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /* Increased opacity: 0.6 at the top, 0.45 in the middle, 0.85 at the bottom */
    background: linear-gradient(
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.45) 80%, 
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
}

.slide.active .slide-image-wrapper img {
  transform: scale(1.15);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 850px;
  padding: 0 24px;
  color: #ffffff;
}

.hero-content-wrapper > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide.active .hero-content-wrapper > * {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .hero-tagline {
  transition-delay: 0.3s;
}
.slide.active .main-title {
  transition-delay: 0.5s;
}
.slide.active .subtitle {
  transition-delay: 0.7s;
}
.slide.active .hero-actions {
  transition-delay: 0.9s;
}

.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.main-title {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  margin: 16px auto 32px;
  line-height: 1.6;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-minimal {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-minimal:hover {
  background: #ffffff;
  color: #000000;
}

/* Force hide slide layout control buttons natively */
.prev-arrow,
.next-arrow {
  display: none !important;
}

.slider-dots-container {
  position: absolute;
  bottom: 115px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.filter-pills-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 0 20px;
}

.filter-pills-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px;
  border-radius: 40px;
  max-width: max-content;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-pills-container .pill {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pills-container .pill.active,
.filter-pills-container .pill:hover {
  background: #ffffff;
  color: #000000;
}

/* --- Content Modules Grids --- */
.about-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-img-holder img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.about-content h2,
.center-title,
.section-header h2 {
  font-size: 26px;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.about-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.why-section,
.section-container {
  padding: 40px 0;
}
.center-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin: 6px 0 35px;
}

.why-grid,
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card,
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}

.why-icon {
  font-size: 26px;
  margin-bottom: 14px;
}
.why-card h3,
.package-card h3 {
  font-size: 16px;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.why-card p,
.itinerary-snippet {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.btn-view-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-gold);
}

.package-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.package-card.hidden {
  display: none !important;
}
.card-img-holder {
  width: 100%;
  height: 200px;
}
.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.badge-category {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
}

.badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: auto;
}

.green-badge {
  background-color: #e6fffa;
  color: #234e52;
}

/* Split Special Promotions Container Layout */
.offers-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer-row-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.offer-banner {
  width: 140px;
  height: 130px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.green-banner .banner-tag {
  background: #2f855a;
}
.cyan-banner .banner-tag {
  background: #0bc5ea;
}
.blue-banner .banner-tag {
  background: #3182ce;
}
.purple-banner .banner-tag {
  background: #805ad5;
}

.offer-details h3 {
  font-size: 16px;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.offer-details p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.btn-book-link {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.btn-book-link:hover {
  background-color: var(--text-muted);
  color: var(--bg-card);
}

/* --- Social Proof & Accordions --- */
.social-section {
  padding: 40px 0;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.social-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.social-card p {
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
  color: var(--text-heading);
}

.faq-accordion-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.accordion-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  cursor: pointer;
}
.accordion-icon {
  font-size: 10px;
  color: var(--text-light);
  transition: transform 0.3s ease;
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-primary);
}
.accordion-panel p {
  padding: 0 20px 20px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* --- Staggered Delay Chains --- */
.packages-grid .package-card:nth-child(2),
.why-grid .why-card:nth-child(2) {
  transition-delay: 0.1s;
}
.packages-grid .package-card:nth-child(3),
.why-grid .why-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 1024px) {
  .packages-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .offers-split-grid,
  .faq-accordion-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   INDEPENDENT LEAD POPUP COMPONENT (css/popup.css)
   ========================================================================== */
:root {
  --popup-brand-orange: #e45d16;
  --popup-dark: #222222;
  --popup-gray: #666666;
  --popup-border: #cccccc;
}

/* Base Modal Screen Shield Mask Layer */
.travel-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.travel-popup-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.travel-popup-card {
  background: #ffffff;
  width: 92%;
  max-width: 850px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.travel-popup-overlay.is-visible .travel-popup-card {
  transform: translateY(0) scale(1);
}

.travel-popup-close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #ffffff;
  border: 1px solid #dddddd;
  font-size: 24px;
  font-weight: bold;
  color: #444444;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.travel-popup-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background-color: #f7f7f7;
}

.travel-popup-container {
  display: flex;
  flex-direction: row;
}
.travel-popup-banner {
  flex: 1.1;
  max-width: 46%;
  background-color: #fcfcfc;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  overflow: hidden;
}
.travel-popup-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.travel-popup-form-side {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.travel-popup-header h2 {
  margin: 6px 0 10px 0;
  font-size: 24px;
  font-weight: bold;
  color: var(--popup-brand-orange);
  font-family: Arial, sans-serif;
}
.travel-popup-header p {
  margin: 0 0 25px 0;
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.travel-popup-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.floating-input-group {
  position: relative;
  flex: 1;
}
.floating-input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--popup-border);
  border-radius: 8px;
  font-size: 14px;
  color: #111111;
  outline: none;
  box-sizing: border-box;
  background: transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.floating-input-group input:focus {
  border-color: var(--popup-brand-orange);
  box-shadow: 0 0 0 1px var(--popup-brand-orange);
}

.floating-input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 6px;
  color: #888888;
  font-size: 14px;
  font-family: Arial, sans-serif;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    font-size 0.2s ease;
}
.floating-input-group input:focus ~ label,
.floating-input-group input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 12px;
  color: var(--popup-brand-orange);
  font-weight: 600;
}

.travel-popup-submit-btn {
  width: 100%;
  background-color: var(--popup-brand-orange);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(228, 93, 22, 0.25);
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}
.travel-popup-submit-btn:hover {
  background-color: #c94f10;
}

@media (max-width: 720px) {
  .travel-popup-container {
    flex-direction: column;
  }
  .travel-popup-banner {
    display: none;
  }
  .travel-popup-form-side {
    padding: 35px 25px 25px 25px;
  }
}


/* ==========================================================================
   PACKAGES FLYER LAYOUT SHEET (css/packages.css)
   ========================================================================== */
.packages-hero-banner {
  position: relative;
  width: 100%;
  padding: 5rem 2rem 4rem 2rem;
  background: #111827;
  text-align: center;
  color: #ffffff;
}

.banner-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.banner-subtitle {
  font-size: 1rem;
  color: #9ca3af;
}

.packages-page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.destination-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.destination-tabs-container {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.06);
  padding: 6px 12px;
  border-radius: 50px;
}

.dest-tab {
  background: transparent;
  color: #4b5563;
  border: none;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-tab:hover {
  color: #111111;
}
.dest-tab.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.destination-panel {
  display: none !important;
}
.destination-panel.active {
  display: block !important;
}

/* STRICT RULE: Fixed explicit 3-column system alignment configuration */
.flyers-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.5rem;
}

.flyer-card-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #f3f4f6;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flyer-card-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.b2b-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: filter 0.3s ease;
}

.flyer-card-container:hover .b2b-flyer-img {
  filter: brightness(0.35) blur(1px);
}

.flyer-action-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.flyer-card-container:hover .flyer-action-overlay {
  opacity: 1;
  pointer-events: auto;
}

.flyer-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
}

.text-thailand {
  background: #fffaf0;
  color: #dd6b20;
}
.text-singapore {
  background: #ebf8ff;
  color: #2b6cb0;
}
.text-combo {
  background: #e6fffa;
  color: #234e52;
}

.flyer-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-flyer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.8rem 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
}

.preview-btn {
  background: #ffffff;
  color: #111827;
}
.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}
.whatsapp-btn:hover {
  background: #1cbd55;
}

@media (max-width: 1024px) {
  .flyers-display-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 680px) {
  .flyers-display-grid {
    grid-template-columns: 1fr !important;
  }
  .destination-tabs-container {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
  }
}


/* ==========================================================================
   MARKETING LANDING MODULES (css/marketing-modules.css)
   ========================================================================== */
:root {
  --mh-brand-orange: #e45d16;
  --star-gold: #ffb400;
}

.mh-main-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* --- Main Adventure Banner Compound Box --- */
.mh-adventure-banner {
  background: linear-gradient(135deg, var(--mh-brand-orange) 0%, #b8430a 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(228, 93, 22, 0.15);
}

.mh-banner-left {
  flex: 0.9;
  color: #ffffff;
}
.mh-banner-left h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
}
.mh-banner-left p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  font-family: Arial, sans-serif;
}
.mh-banner-right-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mh-tour-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.mh-tour-card:hover {
  transform: translateY(-6px);
}
.mh-card-img {
  height: 130px;
  width: 100%;
  overflow: hidden;
}
.mh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mh-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.mh-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

/* --- Right Side Header Controls Grouping --- */
.mh-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}
.mh-header-controls-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mh-arrow-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mh-slider-viewport {
  position: relative;
  overflow: hidden;
  padding: 10px 5px;
}
.mh-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mh-review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  min-width: calc(33.333% - 16px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Repositioned Transparent Header Slider Buttons */
.mh-slider-arrow {
  position: relative;
  background: transparent;
  color: #444444;
  border: 1px solid #dddddd;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  transition: all 0.2s ease;
}

.mh-slider-arrow:hover {
  border-color: var(--mh-brand-orange);
  color: var(--mh-brand-orange);
  background-color: #fffaf7;
}

@media (max-width: 992px) {
  .mh-adventure-banner {
    flex-direction: column;
  }
  .mh-banner-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mh-review-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .mh-banner-right-grid,
  .mh-review-card {
    grid-template-columns: 1fr;
    min-width: 100%;
  }
  .mh-reviews-header,
  .mh-header-controls-wrapper {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   PHOTO & GALLERY PAGE SHEET (css/gallery.css)
   ========================================================================== */
.gallery-page-wrapper {
  background-color: var(--bg-primary);
  padding-bottom: 60px;
}

.gallery-hero-banner {
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1542435503-956c469947f6?auto=format&fit=crop&w=1600&q=80");
  padding: 130px 20px;
  margin-bottom: 40px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 250px;
  background-color: var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.item-overlay span {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item:hover .item-overlay {
  opacity: 1;
}
.gallery-item:hover .item-overlay span {
  transform: translateY(0);
}

/* --- Lightbox Modal Engine Overlay Layers --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 26, 48, 0.95);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content-frame {
  max-width: 85vw;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content-frame img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  color: #ffffff;
  font-size: 15px;
  margin-top: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item {
    height: 180px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
}



/* ==========================================================================
   CONTACT PAGE SHEET (css/contact.css)
   ========================================================================== */
.contact-page-wrapper {
  background-color: var(--bg-primary);
  padding-bottom: 40px;
}

.contact-hero-banner {
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center 35%;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}

.banner-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}
.banner-heading {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #ffffff !important;
}
.banner-subheading {
  font-size: 16px;
  color: #e2e8f0;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -90px;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}

.info-card-block {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
}

.split-form-map-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
}

.form-container-panel {
  padding: 45px;
}
.form-container-panel h2 {
  font-size: 28px;
  color: var(--text-heading);
  margin-bottom: 10px;
  font-weight: 700;
}
.form-container-panel .accent-text {
  color: var(--text-accent);
}
.form-row-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.input-block label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.input-block input,
.input-block select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--input-bg);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}
.input-block input:focus,
.input-block select:focus {
  border-color: var(--text-light);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--border-color);
}

.btn-submit-enquiry {
  width: 100%;
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}
.btn-submit-enquiry:hover {
  background-color: var(--accent-red-hover);
}
.map-embed-panel {
  background: var(--border-color);
  position: relative;
}

@media (max-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }
  .split-form-map-container {
    grid-template-columns: 1fr;
  }
  .map-embed-panel {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  .form-row-block {
    grid-template-columns: 1fr;
  }
  .banner-heading {
    font-size: 32px;
  }
  .form-container-panel {
    padding: 24px;
  }
}



/* ==========================================================================
   ABOUT US PAGE STYLESHEET (css/about.css)
   ========================================================================== */
.about-hero-banner {
  position: relative;
  background-image:
    linear-gradient(rgba(11, 26, 48, 0.7), rgba(11, 26, 48, 0.85)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center 60%;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  border-radius: 0 0 24px 24px;
}

.about-hero-banner .banner-heading {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #ffffff !important;
}

.section-kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.center-align {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

/* --- Vision & Mission Cards Grid --- */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}
.vm-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.vm-card h3 {
  font-size: 22px;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.vm-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Core Values 4 Column Row Layout --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.value-box:hover {
  border-color: var(--accent-gold);
}
.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.value-box h4 {
  font-size: 17px;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.value-box p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* --- Founder / Leadership Message Section --- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 50px;
}

.founder-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.founder-quote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 500;
  font-style: italic;
  margin: 24px 0;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--accent-gold);
}
.founder-signature h5 {
  font-size: 16px;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.founder-signature p {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Live Animated Counter Bar Block --- */
.stats-banner-section {
  background-color: #0b1a30;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 16px;
}

.stats-banner-section h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 50px;
  color: #ffffff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 12px;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- Team Component System Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-img {
  height: 280px;
  width: 100%;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.team-card:hover .team-img img {
  filter: grayscale(0%);
}
.team-info {
  padding: 20px;
}
.team-info h4 {
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.team-info p {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
}

.team-card:nth-child(2),
.stat-item:nth-child(2) {
  transition-delay: 0.1s;
}
.team-card:nth-child(3),
.stat-item:nth-child(3) {
  transition-delay: 0.2s;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .founder-img {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vision-mission-grid,
  .values-grid,
  .stats-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



.main-header {
    background-color: var(--bg-card, #ffffff); /* Fallback to solid white if var is transparent */
    border-bottom: 3px solid var(--bg-infobar);
    
    /* Force it to stick to the top */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
    /* Bring it to the absolute front layer */
    z-index: 99999 !important; 
    
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


