:root {
    --teal: #03506f;
    --teal-dark: #023449;
    --teal-deep: #046c95;
    --gold: #dd9933;
    --navy: #0a043c;
    --sky: #07b0f5;
    --blue-band: #e8f8fe;
    --blue-border: #d7e6ed;
    --peach: #ffe3d8;
    --peach-border: #edd3c9;
    --cream: #ffe3d8;
    --muted: #52525b;
    --line: #ececec;
    --shadow-sm: 0 2px 10px rgba(10, 4, 60, 0.07);
    --shadow-md: 0 12px 28px rgba(10, 4, 60, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Josefin Sans', 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--navy);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.5em; }

a { color: var(--sky); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--teal); }

.container { width: 100%; max-width: 1230px; margin: 0 auto; padding: 0 15px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--teal); color: #fff; padding: 10px 18px; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.btn {
    display: inline-block;
    background: var(--teal);
    color: var(--gold);
    border: 2px solid var(--teal);
    border-radius: 25px;
    padding: 11px 30px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--teal); transform: translateY(-2px); }
.btn-sm { padding: 8px 22px; font-size: 13px; }

.img-fallback {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--sky) 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 46px; font-weight: 700;
}

.top-bar { background: var(--teal); color: #fff; font-size: 14px; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap; }
.top-bar-info { display: flex; align-items: center; flex-wrap: wrap; row-gap: 4px; }
.top-bar-item { display: inline-flex; align-items: center; margin-right: 26px; }
.top-bar-item i { color: var(--gold); margin-right: 9px; font-size: 13px; }
.top-bar-item a { color: var(--gold); }
.top-bar-item a:hover { color: #fff; }
.top-bar-social { display: flex; align-items: center; gap: 6px; }
.soc {
    display: inline-flex; align-items: center; justify-content: center;
    width: 27px; height: 27px; border-radius: 4px;
    color: #fff; font-size: 13px; transition: opacity 0.2s ease, transform 0.2s ease;
}
.soc:hover { color: #fff; opacity: 0.85; transform: translateY(-2px); }
.soc-twitter { background: #1da1f2; }
.soc-facebook { background: #3b5998; }
.soc-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.soc-youtube { background: #ff0000; }

.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: #fff;
    transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 3px 14px rgba(10, 4, 60, 0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 10px; padding-bottom: 10px; position: relative; }

.site-logo { display: inline-flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-size: 31px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); }
.logo-sub { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 4.5px; color: var(--gold); }
.site-logo:hover .logo-name { color: var(--navy); }
.logo-light .logo-name { color: #fff; }
.logo-light:hover .logo-name { color: var(--gold); }
.site-logo-img { height: 64px; width: auto; max-width: 280px; object-fit: contain; display: block; }

.main-nav { position: relative; }
.main-nav.pos-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.main-nav.pos-left { margin-right: auto; }
.main-nav.pos-right { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a,
.search-toggle {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 22px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover,
.search-toggle:hover { background: var(--teal); color: #fff; }
.main-nav a.is-active { background: var(--teal); color: var(--gold); }
.search-toggle i { font-size: 13px; }

.menu-toggle {
    display: none;
    width: 44px; height: 40px;
    background: transparent; border: 0; cursor: pointer;
    position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    content: ""; position: absolute; left: 8px; right: 8px; height: 3px;
    background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle span { top: 50%; margin-top: -1.5px; }
.menu-toggle span::before { top: -9px; left: 0; right: 0; }
.menu-toggle span::after { top: 9px; left: 0; right: 0; }

.search-dropdown {
    display: none;
    background: #fff;
    border-top: 3px solid var(--teal);
    box-shadow: 0 14px 24px rgba(10, 4, 60, 0.12);
}
.search-dropdown.open { display: block; }
.search-form { display: flex; gap: 12px; padding-top: 16px; padding-bottom: 16px; }
.search-form input {
    flex: 1;
    border: 1px solid #ddd; border-radius: 25px;
    padding: 10px 20px;
    font-family: inherit; font-size: 16px; color: var(--navy);
}
.search-form input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(7, 176, 245, 0.15); }

.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1500;
    width: min(320px, 85vw);
    background: var(--teal);
    color: var(--cream);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-bottom: 30px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu-title { font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }
.mobile-menu-close { background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; }
.mobile-menu ul li a {
    display: block; padding: 13px 22px;
    color: var(--cream); font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu ul li a:hover, .mobile-menu ul li a.is-active { color: var(--gold); }
.mobile-menu-contact { padding: 20px 22px 0; font-size: 15px; }
.mobile-menu-contact a { display: block; color: var(--cream); padding: 5px 0; }
.mobile-menu-contact a:hover { color: var(--gold); }
.mobile-menu-contact i { color: var(--gold); margin-right: 10px; }

.site-overlay {
    position: fixed; inset: 0; z-index: 1400;
    background: rgba(5, 15, 25, 0.55);
    opacity: 0; transition: opacity 0.3s ease;
}
.site-overlay.show { opacity: 1; }

.hero-slider { position: relative; height: min(74vh, 640px); min-height: 430px; overflow: hidden; background: var(--teal-dark); }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s ease; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: slideZoom 7s ease-out forwards; }
@keyframes slideZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(2, 22, 32, 0.72) 0%, rgba(2, 22, 32, 0.38) 55%, rgba(2, 22, 32, 0.12) 100%);
}
.slide .container { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.slide-caption { max-width: 660px; padding: 20px 0; transform: translateY(26px); opacity: 0; transition: transform 0.7s ease 0.35s, opacity 0.7s ease 0.35s; }
.slide.is-active .slide-caption { transform: translateY(0); opacity: 1; }
.slide-kicker { display: block; color: var(--gold); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; }
.slide-title { color: #fff; font-size: clamp(34px, 5vw, 56px); font-weight: 700; line-height: 1.12; margin: 0 0 14px; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35); }
.slide-text { color: rgba(255, 255, 255, 0.88); font-size: 19px; max-width: 520px; margin-bottom: 24px; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 47px; height: 47px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff; font-size: 17px; cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--teal); }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }

.slider-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 9px; }
.slider-dot {
    width: 11px; height: 11px; border-radius: 20px;
    border: 0; padding: 0; cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}
.slider-dot.is-active { width: 28px; background: var(--gold); }

.section { padding: 72px 0; }
.section-tight { padding: 52px 0; }
.band { background: var(--blue-band); border-top: 1px solid var(--blue-border); border-bottom: 1px solid var(--blue-border); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-kicker { display: block; color: var(--gold); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.section-title { color: var(--teal); font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; margin-bottom: 10px; }
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.tour-card, .blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex; flex-direction: column;
}
.tour-card:hover, .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { display: block; aspect-ratio: 500 / 320; overflow: hidden; }
.card-media img, .card-media .img-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .card-media img, .blog-card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.card-title { font-size: 18px; font-weight: 700; line-height: 1.35; margin: 0 0 10px; }
.card-title a { color: var(--teal); }
.card-title a:hover { color: var(--sky); }
.card-body p { font-size: 15px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.blog-date { color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.blog-meta { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 16px; }
.blog-meta time { font-weight: 600; }
.blog-meta-sep { margin: 0 8px; }
.blog-author { font-weight: 400; }
.blog-lead { font-weight: 400; }
.read-more { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); }
.read-more i { margin-left: 7px; font-size: 12px; transition: transform 0.2s ease; }
.read-more:hover { color: var(--sky); }
.read-more:hover i { transform: translateX(4px); }

.welcome { text-align: center; max-width: 900px; margin: 0 auto; }
.welcome h2 { color: var(--teal); font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; }
.welcome p { color: var(--muted); font-size: 18px; }
.welcome strong { color: var(--navy); }

.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.about-text h2 { color: var(--teal); font-size: clamp(26px, 3vw, 32px); font-weight: 700; }
.about-text p { color: var(--muted); }
.about-media { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.about-media img, .about-media .img-fallback { width: 100%; height: 100%; object-fit: cover; }
.about-media.video-mode { aspect-ratio: auto; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

.feature-banner {
    position: relative; border-radius: 8px; overflow: hidden;
    min-height: 330px; display: flex; align-items: center;
    background-size: cover; background-position: center;
}
.feature-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 40, 56, 0.82) 0%, rgba(2, 40, 56, 0.35) 70%, rgba(2, 40, 56, 0.15) 100%); }
.feature-content { position: relative; z-index: 1; padding: 56px; max-width: 640px; }
.feature-content .section-kicker { margin-bottom: 6px; }
.feature-content h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; }
.feature-content p { color: rgba(255, 255, 255, 0.88); margin-bottom: 22px; }

.parks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.park-tile { position: relative; display: block; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; }
.park-tile img, .park-tile .img-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.park-tile-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 18px;
    background: rgba(3, 62, 86, 0.45);
    transition: background 0.3s ease;
}
.park-tile-overlay span { color: #fff; font-size: 21px; font-weight: 700; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); }
.park-tile:hover img { transform: scale(1.07); }
.park-tile:hover .park-tile-overlay { background: rgba(3, 62, 86, 0.66); }
.park-tile:hover .park-tile-overlay span { color: var(--gold); }

.park-row {
    display: block; background: #fff;
    border: 1px solid var(--blue-border); border-radius: 8px; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.park-row:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.park-row-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.park-row-media img, .park-row-media .img-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.park-row:hover .park-row-media img { transform: scale(1.07); }
.park-row-name {
    display: block; padding: 13px 12px; text-align: center;
    color: var(--teal); font-size: 15px; font-weight: 700; line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}
.park-row:hover .park-row-name { background: var(--teal); color: var(--gold); }

.partners-strip { padding: 34px 0; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.partner-badge {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 12px 26px;
    text-align: center;
    min-width: 150px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.partner-badge .partner-logo {
    display: block;
    max-width: 160px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}
.partner-badge strong { display: block; color: var(--teal); font-size: 17px; letter-spacing: 1px; }
.partner-badge small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

.page-header { background: var(--peach); border-top: 1px solid var(--peach-border); border-bottom: 1px solid var(--peach-border); padding: 46px 0; }
.page-header h1 { color: var(--teal); font-size: clamp(28px, 3.6vw, 38px); font-weight: 700; margin: 0 0 6px; }
.page-header p { margin: 0; color: var(--muted); font-size: 17px; }
.page-header .crumbs { font-size: 14px; color: var(--muted); margin-top: 8px; }
.page-header .crumbs a { color: var(--teal); font-weight: 600; }
.page-header .crumbs i { color: var(--gold); font-size: 11px; margin: 0 8px; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.contact-info-card {
    background: var(--blue-band); border: 1px solid var(--blue-border);
    border-radius: 8px; padding: 28px 22px; text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-info-card i { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: var(--teal); color: var(--gold); font-size: 21px; margin-bottom: 14px; }
.contact-info-card h3 { color: var(--teal); font-size: 18px; margin-bottom: 6px; }
.contact-info-card p { color: var(--muted); font-size: 15px; margin: 0; word-break: break-word; }
.contact-info-card a { color: var(--muted); } 
.contact-info-card a:hover { color: var(--sky); }

.contact-main { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: stretch; }
.contact-panel { background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-sm); padding: 34px; }
.contact-panel h2 { color: var(--teal); font-size: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 7px; }
.form-group input, .form-group textarea {
    width: 100%; border: 1px solid #ddd; border-radius: 6px;
    padding: 12px 15px; font-family: inherit; font-size: 16px; color: var(--navy);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(7, 176, 245, 0.15); }
.form-group textarea { min-height: 140px; resize: vertical; }
.alert-success { background: #e6f7ec; border: 1px solid #b7e4c7; color: #1b6e3c; border-radius: 6px; padding: 14px 18px; margin-bottom: 22px; font-size: 16px; }
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.intro-block { max-width: 860px; margin: 0 auto 50px; text-align: center; color: var(--muted); }

.site-footer { background: var(--teal); color: var(--cream); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 42px; padding-top: 62px; padding-bottom: 46px; }
.footer-col h4 {
    color: var(--gold); font-size: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin: 0 0 18px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-col p { color: rgba(255, 227, 216, 0.85); font-size: 15px; }
.footer-col ul li { padding: 7px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 15px; }
.footer-col ul li:last-child { border-bottom: 0; }
.footer-col a { color: var(--cream); }
.footer-col a:hover { color: var(--gold); }
.footer-about .site-logo { margin-bottom: 16px; }
.footer-social { display: flex; gap: 9px; margin-top: 18px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--teal); transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 6px; }
.footer-bottom { background: var(--teal-dark); padding: 17px 0; }
.footer-bottom p { margin: 0; text-align: center; font-size: 14px; color: var(--cream); }

.whatsapp-float {
    position: fixed; left: 20px; bottom: 20px; z-index: 1200;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 29px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.back-to-top {
    position: fixed; right: 20px; bottom: 20px; z-index: 1200;
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--teal); color: var(--gold);
    border: 0; cursor: pointer; font-size: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--teal); }

@media (max-width: 1150px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-5 { grid-template-columns: repeat(4, 1fr); }
    .main-nav,
    .main-nav.pos-center,
    .main-nav.pos-left,
    .main-nav.pos-right { position: static; transform: none; margin-left: auto; margin-right: 0; }
    .main-nav a, .search-toggle { padding: 9px 11px; font-size: 15px; }
}

@media (max-width: 991px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 34px; }
    .contact-main { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .top-bar-item { margin-right: 16px; }
    .top-bar-item span { display: none; }
    .top-bar-item a { display: inline; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .section { padding: 52px 0; }
    .grid-4, .grid-5, .parks-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-slider { min-height: 480px; height: 78vh; }
    .slider-arrow { display: none; }
    .feature-content { padding: 34px 26px; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-panel { padding: 26px 20px; }
    .logo-name { font-size: 26px; }
    .logo-sub { font-size: 11px; letter-spacing: 3px; }
}

/* ==========================================================================
   Activity detail page (activity.php)
   ========================================================================== */

.activity-hero {
    position: relative;
    min-height: 380px;
    background: var(--teal-dark) center 35% / cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.activity-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,52,73,0.15) 0%, rgba(2,52,73,0.82) 100%); }
.activity-hero-inner { position: relative; padding: 70px 15px 46px; }
.activity-hero-inner h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }
.activity-hero-excerpt { max-width: 760px; font-size: 18px; opacity: 0.92; margin: 0 0 10px; }
.activity-hero .section-kicker { color: var(--gold); }
.crumbs-light, .crumbs-light a { color: rgba(255,255,255,0.85); font-size: 14px; }
.crumbs-light i { color: var(--gold); font-size: 11px; margin: 0 8px; }

.activity-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 46px; align-items: start; }

.fact-strip {
    display: flex; flex-wrap: wrap; gap: 10px 26px;
    background: var(--blue-band); border: 1px solid var(--blue-border);
    border-radius: 12px; padding: 16px 22px; margin-bottom: 30px;
}
.fact-strip li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--teal-dark); }
.fact-strip li i { color: var(--gold); }
.fact-strip small { font-weight: 400; color: var(--muted); }

.activity-description { font-size: 17.5px; color: var(--navy); }
.activity-description p { line-height: 1.85; }
.activity-description strong { color: var(--teal); }

.gallery-title { margin-top: 38px; color: var(--teal); font-size: 24px; }
.gallery-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}
.gallery-grid img, .gallery-grid .img-fallback {
    width: 100%; height: 190px; object-fit: cover;
    border-radius: 10px; box-shadow: var(--shadow-sm);
    transition: transform .25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
@media (max-width: 991px) {
    .activity-layout { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.booking-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-sm); padding: 26px 24px;
    position: sticky; top: 90px;
}
.booking-card h3 { color: var(--teal); margin-bottom: 6px; }
.price-tag { margin: 4px 0 14px; }
.price-tag strong { font-size: 32px; color: var(--teal); font-weight: 700; }
.price-tag span { display: block; color: var(--muted); font-size: 14px; }

.fact-list { border-top: 1px solid var(--line); margin: 0 0 18px; }
.fact-list li {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15.5px;
}
.fact-list li span { color: var(--muted); display: flex; align-items: center; gap: 8px; }
.fact-list li span i { color: var(--gold); width: 18px; text-align: center; }
.fact-list li strong { font-size: 15px; text-align: right; }

.btn-wa {
    display: block; text-align: center; margin-bottom: 10px;
    background: #25d366; border-color: #25d366; color: #fff;
}
.btn-wa:hover { background: #1fb959; border-color: #1fb959; color: #fff; transform: translateY(-2px); }

.btn-outline {
    display: block; text-align: center;
    background: transparent; color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--gold); }

.side-help { margin-top: 20px; text-align: center; color: var(--muted); font-size: 15px; }

/* Photos embedded inside an activity story ([[img:file.jpg | caption]]) */
.story-photo { margin: 26px 0; }
.story-photo img {
    width: 100%; max-height: 460px; object-fit: cover;
    border-radius: 14px; box-shadow: var(--shadow-sm);
}
.story-photo figcaption {
    text-align: center; color: var(--muted); font-size: 14px; margin-top: 8px;
}
