:root {
    --logo-blue-dark: #003679;
    --logo-blue-light: #0072ce;
    --logo-orange: #e03a11;
    --logo-yellow: #f1ab00;
    --text-navy: #1e293b;
    --text-muted: #64748b;
    --border-grey: #e2e8f0;
    --bg-light: #f8fafc;
    --neon-shadow: rgba(0, 114, 206, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--text-navy);
    overflow-x: hidden;
}

.hidden { display: none !important; }

/* --- WHATSAPP FLOATING BUBBLE COMPONENT --- */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-bubble:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a;
}

/* Pulse Glow Effect around the Bubble */
.whatsapp-bubble::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: bubblePulse 2s infinite;
}

@keyframes bubblePulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Tooltip on Hover */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #1e293b;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1e293b;
}

.whatsapp-bubble:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* --- HERO SECTION BACKGROUND VIDEO --- */
.hero-search-wrapper {
    position: relative;
    padding: 7rem 2rem;
    min-height: 100vh;
    min-height: 100dvh; /* fixes mobile browsers where 100vh leaves a gap under the address bar */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--logo-blue-dark); /* fallback color while video/poster loads */
}

.hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
}

/* Layout Keyframe Transitions */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

/*
  FIX: Sections are visible by default (opacity: 1) so content
  never disappears if JavaScript fails to load or run.
  The scroll-reveal animation is only applied once script.js
  adds the .js-ready class, right before it starts observing.
*/
.scroll-animate {
    opacity: 1;
    transform: none;
}

.scroll-animate.js-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-animate.reveal {
    opacity: 1;
    transform: translateY(0);
}

.top-utility-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-grey);
    padding: 10px 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.top-bar-container {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quick-contact-links a {
    color: var(--logo-blue-dark);
    text-decoration: none;
    font-weight: 700;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo-box { display: flex; align-items: center; gap: 10px; }
.main-logo-img { height: 46px; width: auto; object-fit: contain; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--logo-blue-dark); text-decoration: none; }
.logo-text span { color: var(--logo-orange); font-style: italic; }

/* Hamburger menu toggle button - hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--logo-blue-dark);
    cursor: pointer;
    padding: 6px 10px;
}

.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: var(--text-navy);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--logo-orange);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-mega-item {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-trigger {
    color: var(--text-navy);
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 1rem;
    padding: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
}

.mega-trigger::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--logo-orange);
    transition: width 0.3s ease;
}

.nav-mega-item:hover .mega-trigger::after,
.nav-mega-item:focus-within .mega-trigger::after {
    width: 100%;
}

.mega-trigger i {
    color: var(--logo-orange);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-mega-item:hover .mega-trigger i,
.nav-mega-item:focus-within .mega-trigger i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    width: min(1040px, calc(100vw - 42px));
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr 1.2fr;
    gap: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--border-grey);
    border-top: 4px solid var(--logo-orange);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
}

.nav-mega-item:hover .mega-menu,
.nav-mega-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-feature-card {
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    background: var(--logo-blue-dark);
}

.mega-feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 54, 121, 0.08), rgba(0, 25, 58, 0.84));
}

.mega-feature-card div {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.mega-feature-card span,
.mega-links-panel h4 {
    color: var(--logo-yellow);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mega-feature-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.mega-feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.45;
}

.mega-links-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 4px 0;
}

.mega-links-panel h4 {
    color: var(--logo-blue-dark);
    margin-bottom: 6px;
}

.nav-links .mega-links-panel a {
    width: 100%;
    margin: 0;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--text-navy);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.2;
}

.nav-links .mega-links-panel a::after {
    display: none;
}

.nav-links .mega-links-panel a:hover {
    background: #eff6ff;
    color: var(--logo-blue-dark);
}

.mega-links-panel.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    column-gap: 8px;
}

.mega-links-panel.two-column h4 {
    grid-column: 1 / -1;
}

.btn-enquire-mobile { display: none; }

.btn-enquire-main {
    background: var(--logo-blue-dark);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px var(--neon-shadow);
    transition: all 0.3s ease;
}
.btn-enquire-main:hover {
    background: var(--logo-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(220, 58, 17, 0.3);
}

.dark-screen { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(180deg, rgba(0, 54, 121, 0.78), rgba(15, 23, 42, 0.55)); z-index: 2; }

.mega-search-container { position: relative; z-index: 10; width: 100%; max-width: 900px; text-align: center; color: white; }
.search-heading h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 8px; }
.search-heading p { font-size: 1.1rem; margin-bottom: 2rem; color: #f1f5f9; }

.mega-search-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.6rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.8);
}
.widget-form-grid { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 1.2rem; align-items: flex-end; text-align: left; }
.form-input-cell label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.field-wrap { position: relative; display: flex; align-items: center; }
.field-wrap i { position: absolute; left: 14px; color: var(--logo-blue-light); }
.field-wrap input {
    width: 100%; padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    border: 1px solid var(--border-grey); border-radius: 6px; outline: none;
    font-size: 0.95rem; font-weight: 600; color: var(--text-navy);
    transition: all 0.3s ease;
}
.field-wrap input:focus {
    border-color: var(--logo-blue-light);
    box-shadow: 0 0 0 3px var(--neon-shadow);
}

.mega-search-btn {
    background: var(--logo-orange); color: white; border: none; padding: 0.8rem 2.2rem; border-radius: 4px;
    font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease;
}
.mega-search-btn:hover { background: var(--logo-blue-dark); transform: scale(1.02); }

.trust-signal-bar { background: var(--bg-light); border-bottom: 1px solid var(--border-grey); padding: 1.4rem 2rem; }
.trust-bar-container { max-width: 1340px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.sig-card { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--logo-blue-dark); font-size: 0.95rem; }
.sig-card i { color: var(--logo-orange); font-size: 1.2rem; }

.tours-catalog-section { max-width: 1340px; margin: 0 auto; padding: 5rem 2rem; position: relative; }
.catalog-header { text-align: center; margin-bottom: 3rem; }
.catalog-header h2 { font-size: 2.2rem; color: var(--logo-blue-dark); font-weight: 800; }
.header-line { width: 50px; height: 4px; background: var(--logo-orange); margin: 8px auto 12px auto; }
.catalog-header p { color: var(--text-muted); }

.carousel-outer-wrapper { display: flex; align-items: center; position: relative; gap: 10px; }
.carousel-viewport { overflow: hidden; width: 100%; padding: 10px 0; }
.carousel-track { display: flex; gap: 2rem; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }

.tour-item-card {
    background: white; border: 1px solid var(--border-grey); border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); flex: 0 0 calc(33.333% - 1.34rem); display: flex; flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.tour-item-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 35px rgba(0,54,121,0.08);
}

.img-badge-box { position: relative; height: 210px; width: 100%; overflow: hidden; }
.img-badge-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.tour-item-card:hover .img-badge-box img { transform: scale(1.08); }
.tour-tag { position: absolute; top: 12px; left: 12px; font-size: 0.65rem; font-weight: 700; color: white; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; background: var(--logo-blue-dark); }

.tour-info-box { padding: 1.6rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.tour-info-box h3 { font-size: 1.2rem; color: var(--text-navy); font-weight: 700; line-height: 1.4; }
.duration-days { font-size: 0.85rem; color: var(--logo-blue-light); font-weight: 700; margin: 4px 0; }
.tour-route-line { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.4; }
.actual-price { font-size: 1.4rem; font-weight: 800; color: var(--logo-orange); display: block; margin-bottom: 12px; }
.actual-price small { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.btn-book-tour {
    display: block; text-align: center; border: 1px solid var(--logo-blue-dark); color: var(--logo-blue-dark);
    padding: 0.6rem; border-radius: 6px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.3s ease;
}
.btn-book-tour:hover { background: var(--logo-blue-dark); color: white; box-shadow: 0 4px 12px var(--neon-shadow); }

.carousel-nav-btn {
    background: #ffffff; border: 1px solid var(--border-grey); width: 48px; height: 48px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.06); z-index: 10; transition: all 0.3s ease;
}
.carousel-nav-btn:hover { background: var(--logo-blue-dark); color: white; transform: scale(1.1); }

.enquiry-form-section { background: #ffffff; padding: 6rem 2rem; border-top: 1px solid var(--border-grey); }
.form-section-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.enquiry-intro .form-badge { background: rgba(0, 54, 121, 0.08); color: var(--logo-blue-dark); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.enquiry-intro h2 { font-size: 2.5rem; color: var(--logo-blue-dark); margin: 1rem 0 0.5rem 0; font-weight: 800; }
.enquiry-intro p { color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; }
.form-benefits-list { display: flex; flex-direction: column; gap: 12px; }
.form-benefits-list .b-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text-navy); }
.form-benefits-list .b-item i { color: var(--logo-orange); }

.enquiry-card-wrapper { background: var(--bg-light); border: 1px solid var(--border-grey); padding: 2.5rem; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.02); }
.enquiry-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.enquiry-field-cell { display: flex; flex-direction: column; }
.enquiry-field-cell.full-width { grid-column: span 2; }
.enquiry-field-cell label { font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; color: var(--text-navy); }

.input-icon-box { position: relative; display: flex; align-items: center; }
.input-icon-box i { position: absolute; left: 14px; color: var(--text-muted); transition: color 0.3s; }
.input-icon-box input:focus + i { color: var(--logo-orange); }
.eq-whatsapp-color { color: #25d366 !important; }

.input-icon-box input, .input-icon-box select {
    width: 100%; padding: 0.8rem 0.8rem 0.8rem 2.6rem;
    border: 1px solid var(--border-grey); border-radius: 6px;
    outline: none; font-size: 0.95rem; font-weight: 600; background: #ffffff; transition: all 0.3s ease;
}
.input-icon-box input:focus, .input-icon-box select:focus {
    border-color: var(--logo-blue-light);
    box-shadow: 0 0 0 3px var(--neon-shadow);
}

.btn-submit-enquiry {
    width: 100%; background: linear-gradient(135deg, var(--logo-orange), #ff4f22);
    color: white; padding: 1.1rem; border: none; border-radius: 6px;
    font-weight: 700; font-size: 1.05rem; cursor: pointer; margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(224, 58, 17, 0.25); transition: all 0.3s ease;
}
.btn-submit-enquiry:hover { background: var(--logo-blue-dark); transform: translateY(-2px); }

.enquiry-success-wrapper { text-align: center; padding: 2rem 0; }
.enquiry-success-wrapper i { font-size: 3.5rem; color: #22c55e; margin-bottom: 12px; display: block; }

.insights-section { background: var(--bg-light); border-top: 1px solid var(--border-grey); border-bottom: 1px solid var(--border-grey); padding: 5rem 2rem; }
.insights-tabs-container { max-width: 1000px; margin: 0 auto; background: #ffffff; border-radius: 8px; border: 1px solid var(--border-grey); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.tabs-list { display: flex; background: #f1f5f9; border-bottom: 1px solid var(--border-grey); }
.insight-tab-btn { flex: 1; background: transparent; border: none; padding: 1rem; font-weight: 700; color: var(--text-navy); cursor: pointer; font-size: 0.95rem; transition: all 0.3s; }
.insight-tab-btn.active { background: #ffffff; color: var(--logo-orange); border-top: 3px solid var(--logo-orange); }
.tab-content-wrapper { padding: 2.5rem; }
.insight-content { display: none; }
.insight-content.active { display: block; }
.insight-content h3 { color: var(--logo-blue-dark); margin-bottom: 10px; font-size: 1.4rem; }
.insight-content p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

.why-us-section { max-width: 1340px; margin: 0 auto; padding: 5rem 2rem; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 1rem; }
.why-card {
    background: #ffffff; border: 1px solid var(--border-grey); padding: 2.5rem 1.8rem; border-radius: 12px; text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01); transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.why-card:hover { transform: translateY(-5px); border-color: var(--logo-blue-light); box-shadow: 0 12px 20px rgba(0,0,0,0.04); }
.why-card i { font-size: 2.4rem; color: var(--logo-blue-light); margin-bottom: 1rem; }
.why-card h4 { font-size: 1.25rem; color: var(--text-navy); margin-bottom: 8px; font-weight: 700; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }



footer { 
    background: #0f172a; 
    color: #ffffff; 
    padding: 4rem 2rem 0 2rem; 
    border-top: 4px solid var(--logo-orange, #f97316); 
}

.footer-grid-container { 
    max-width: 1340px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1.2fr 1fr 1fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}


.footer-brand-column h3 { 
    color: #ffffff; 
    font-size: 1.5rem; 
    margin-bottom: 4px; 
    font-weight: 700;
}

.footer-brand-column .tagline { 
    font-size: 0.75rem; 
    color: var(--logo-yellow, #eab308); 
    font-weight: 700; 
    letter-spacing: 1px; 
    margin-bottom: 12px; 
}

.footer-brand-column .desc { 
    font-size: 0.88rem; 
    line-height: 1.6; 
    color: #ffffff; 
    opacity: 0.95; 
    margin-bottom: 18px;
}

.footer-social-icons { 
    display: flex; 
    gap: 12px; 
    align-items: center;
    margin-bottom: 24px; 
}

.footer-social-icons a { 
    width: 38px; 
    height: 38px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important; 
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.footer-social-icons a:hover { 
    background: #2563eb; 
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer-contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--logo-yellow, #facc15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-sub {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 2px;
}

.contact-detail {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail:hover {
    color: var(--logo-blue-light, #38bdf8) !important;
    text-decoration: underline;
}

.footer-links-column h4 { 
    color: #ffffff; 
    margin-bottom: 15px; 
    font-size: 1rem; 
    border-left: 3px solid var(--logo-blue-light, #38bdf8); 
    padding-left: 8px; 
    font-weight: 600;
}

.footer-links-column a { 
    color: #ffffff; 
    text-decoration: none; 
    font-size: 0.88rem; 
    display: block; 
    margin-bottom: 10px; 
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-column a:hover { 
    color: var(--logo-blue-light, #38bdf8); 
    padding-left: 4px; 
}


.footer-copyright-strip { 
    border-top: 1px solid #334155; 
    text-align: center; 
    padding: 1.5rem; 
    font-size: 0.85rem; 
    color: #e2e8f0; 
}

.footer-copyright-strip a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-copyright-strip a:hover {
    color: var(--logo-blue-light, #38bdf8);
}

@media (max-width: 768px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem;
        box-shadow: 0 12px 20px rgba(0,0,0,0.08);
        border-top: 1px solid var(--border-grey);
    }
    .nav-links.open { display: flex; }
    .nav-links a { margin: 0.6rem 0; width: 100%; }

    .nav-mega-item {
        display: block;
        width: 100%;
    }

    .mega-trigger {
        width: 100%;
        justify-content: space-between;
        margin: 0.6rem 0;
        padding: 0 0 4px;
    }

    .mega-trigger::after {
        display: none;
    }

    .mega-trigger i {
        transform: rotate(180deg);
    }

    .mega-menu {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0.4rem 0 0.8rem;
        padding: 12px;
        border: 1px solid var(--border-grey);
        border-left: 4px solid var(--logo-orange);
        border-top: 1px solid var(--border-grey);
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .mega-feature-card {
        min-height: 150px;
    }

    .mega-feature-card div {
        padding: 15px;
    }

    .mega-links-panel.two-column {
        grid-template-columns: 1fr;
    }

    .nav-links .mega-links-panel a {
        margin: 0;
        padding: 9px 10px;
    }

    .btn-enquire-mobile {
        display: inline-block;
        margin-top: 0.8rem;
        background: var(--logo-orange);
        color: white;
        text-decoration: none;
        padding: 0.6rem 1.2rem;
        border-radius: 4px;
        font-weight: 700;
        font-size: 0.9rem;
    }
    .nav-actions { display: none; }

    .widget-form-grid { grid-template-columns: 1fr; }
    .tour-item-card { flex: 0 0 calc(50% - 1rem); }
    .form-section-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .enquiry-form-grid { grid-template-columns: 1fr; }
    .enquiry-field-cell.full-width { grid-column: span 1; }
    .footer-grid-container { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
    .tour-item-card { flex: 0 0 100%; }
    .tabs-list { flex-direction: column; }
    .search-heading h1 { font-size: 2rem; }
}
