/* ==========================================================================
   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: #D69E2E;
    --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;
}

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: #D69E2E; 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: #D69E2E; }
.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: #D69E2E; }
.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: #D69E2E; }

.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: #f7fafc;
  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;a
  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; }
}





Analyse the Code there is code which duplicate remove only the duplicate code 