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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #222;
    line-height: 1.55;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================== NAVBAR ======================== */
/* YELLOW navbar, logo in black box left, dark menu text */
.navbar {
    background: #FFCE00;
    padding: 0;
    position: relative;
    z-index: 1000;
    min-height: 54px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 26px;
    min-height: 54px;
    position: relative;
}

.logo-box {
    background: #000;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 26px;
    top: 14px;
    z-index: 10;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
}

.nav-logo {
    height: 74px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0 0 0 170px;
    flex: 1;
    min-height: 54px;
}

.nav-links li a {
    display: block;
    padding: 0 17px;
    color: #111;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #000;
    text-decoration: underline;
}

/* ======================== HERO ======================== */
/* Full-width Blue Mountains photo, CENTER-aligned text */
.hero {
    min-height: 430px;
    background: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.25)),
                url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0 34px;
}

.hero-text {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    color: #fff;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
    max-width: 900px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-sub {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.45;
    max-width: 760px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* The yellow CTA line in the hero */
.hero-cta-line {
    font-size: 14px;
    font-style: normal;
    color: #FFCE00;
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn-green {
    display: inline-block;
    background: #2ea840;
    color: #fff;
    padding: 8px 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}

.btn-green:hover {
    background: #269035;
}

.btn-yellow-btn {
    display: inline-block;
    background: #FFCE00;
    color: #000;
    padding: 8px 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #000;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}

.btn-yellow-btn:hover {
    background: #e6be00;
}

.btn-hero-dark {
    display: inline-block;
    background: #221837;
    color: #fff;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-hero-dark:hover {
    background: #1a1228;
}

.btn-hero-yellow {
    display: inline-block;
    background: #FFCE00;
    color: #000;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-hero-yellow:hover {
    background: #e6be00;
}

/* ======================== REVIEWS BAR ======================== */
/* On YELLOW background */
.reviews-bar {
    background: #FFCE00;
    padding: 14px 0 10px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.reviews-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.stars {
    color: #1565c0;
    font-size: 20px;
    letter-spacing: 2px;
}

/* ======================== BADGES ======================== */
/* On YELLOW background */
.badges-bar {
    background: #FFCE00;
    padding: 14px 0 24px;
}

.badges-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-circle {
    width: 50px;
    height: 50px;
    background: #221837;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-circle svg {
    stroke: #FFCE00;
}

.badge-item span {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* ======================== YELLOW MAIN ======================== */
.yellow-main {
    background: #FFCE00;
}

/* ======================== BOLD HEADING ======================== */
.bold-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    text-align: center;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.2;
}

.section-sub {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

/* ======================== DIFFERENCE ======================== */
.difference {
    padding: 40px 0 10px;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 26px 16px 22px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}

.card-icon {
    margin-bottom: 14px;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.card p {
    font-size: 12px;
    color: #555;
    line-height: 1.55;
}

/* ======================== PACKAGES ======================== */
.packages {
    padding: 34px 0 50px;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: stretch;
}

.pkg {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pkg-image {
    height: 182px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.pkg-badge {
    position: absolute;
    top: 108px;
    left: 12px;
    padding: 7px 14px 6px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    border-radius: 999px;
    line-height: 1;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}

.pkg-badge-best {
    background: #fff3f0;
    color: #d63f34;
    border: 1px solid rgba(214, 63, 52, 0.18);
}

.pkg-badge-best {
    background: #fff;
    color: #d63f34;
    border: 3px solid #d63f34;
    padding: 8px 16px 7px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    animation: best-price-shake 1.8s ease-in-out infinite;
}

@keyframes best-price-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-4deg);
    }
    20% {
        transform: rotate(4deg);
    }
    30% {
        transform: rotate(-4deg);
    }
    40% {
        transform: rotate(3deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.pkg-badge-popular {
    background: #63d337;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 16px 7px;
}

.pkg-badge-premium {
    background: #4d73ff;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 16px 7px;
}

.pkg-yellow-label {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    position: relative;
    z-index: 2;
}

.pkg-label-orange {
    background: #ea4335;
    color: #fff;
}

.pkg-label-green {
    background: #63d337;
    color: #fff;
}

.pkg-label-blue {
    background: #3f66f2;
    color: #fff;
}

.pkg-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-prices {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    min-height: 78px;
    align-items: flex-start;
    text-align: center;
}

.pkg-prices.single {
    justify-content: center;
    min-height: auto;
    margin-bottom: 10px;
}

.pkg-amt {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 900;
    color: #000;
    display: block;
    line-height: 1.1;
}

.pkg-type {
    font-size: 12px;
    font-weight: 700;
    color: #111;
}

.pkg-meta-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pkg-meta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: #4f67a9;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 2px;
    line-height: 1;
}

.pkg-desc {
    font-size: 12px;
    color: #333;
    line-height: 1.45;
    margin-bottom: 16px;
}

.pkg-btns {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.pkg-btns a {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
}

.pkg-btns .btn-green {
    background: #ffd22e;
    color: #111;
}

.pkg-btns .btn-green:hover {
    background: #f1c300;
}

.pkg-btns .btn-yellow-btn {
    background: #63d337;
    color: #fff;
    border: none;
}

.pkg-btns .btn-yellow-btn:hover {
    background: #4fbb28;
}

/* ======================== BROCHURE BANNER ======================== */
.brochure-banner {
    background: #2a1756;
    padding: 12px 0;
}

.brochure-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.brochure-inner span {
    color: #FFCE00;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.btn-outline-white {
    color: #fff;
    border: 2px solid #fff;
    padding: 7px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 2px;
}

/* ======================== PROMO HERO ======================== */
.promo-hero {
    min-height: 320px;
    background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&h=450&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.promo-content {
    display: flex;
    gap: 16px;
    max-width: 720px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-card {
    background: rgba(255,255,255,0.96);
    border-radius: 6px;
    padding: 20px;
    width: 330px;
}

.promo-logo {
    height: 36px;
    margin-bottom: 8px;
}

.promo-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-card ul {
    list-style: none;
    margin-bottom: 12px;
}

.promo-card li {
    font-size: 12px;
    padding: 2px 0;
}

.small-text {
    font-size: 11px;
    color: #555;
    margin-bottom: 6px;
}

.small-text.center {
    text-align: center;
}

.promo-book {
    display: block;
    text-align: center;
    margin-bottom: 6px;
}

.right-card {
    text-align: center;
}

.promo-tagline {
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}

.promo-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #2ea840;
    margin-top: 8px;
}

/* ======================== DARK BANNER ======================== */
.dark-banner {
    background: #221837;
    padding: 18px 0;
    text-align: center;
}

.dark-banner h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ======================== YELLOW CTA ======================== */
.yellow-cta {
    background: #FFCE00;
    padding: 16px 0;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-heading {
    font-size: 26px;
    text-align: left;
    margin-bottom: 0;
}

.cta-info p {
    font-size: 12px;
    text-align: right;
    line-height: 1.6;
}

/* ======================== DARK TITLE BAR ======================== */
.dark-title-bar {
    background: #221837;
    padding: 16px 0;
}

.title-bar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bar-logo {
    height: 44px;
}

.dark-title-bar h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.dark-title-bar p {
    color: #ccc;
    font-size: 13px;
}

/* ======================== CONTACT ======================== */
.contact-section {
    background: #fff;
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-logo {
    height: 65px;
    margin-bottom: 18px;
}

.contact-text {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details {
    margin-top: 18px;
    border-top: 1px solid #ddd;
    padding-top: 14px;
}

.contact-details p {
    font-size: 12.5px;
    margin-bottom: 6px;
    color: #333;
}

.contact-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-right form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin: 12px 0 4px;
}

.contact-right form input,
.contact-right form textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.contact-right form textarea {
    resize: vertical;
}

.btn-submit {
    margin-top: 14px;
    background: #FFCE00;
    color: #000;
    border: 2px solid #000;
    padding: 9px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border-radius: 2px;
}

/* ======================== FOOTER TITLE BAR ======================== */
.footer-title-bar {
    background: #2a1756;
    padding: 14px 0;
}

.ftb-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ftb-logo {
    height: 40px;
}

.footer-title-bar h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* ======================== FOOTER ======================== */
.site-footer {
    background: #221837;
    padding: 35px 0 25px;
    color: #fff;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 1.5fr;
    gap: 24px;
}

.fcol h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 17px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 14px;
    color: #FFCE00;
    text-decoration: underline;
}

.fcol ul {
    list-style: none;
}

.fcol li {
    font-size: 12px;
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.5;
    font-weight: 700;
}

.fcol a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.fcol a:hover {
    color: #FFCE00;
}

.fcol li::before {
    content: "";
}

.keep-touch li::before {
    content: "";
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFCE00;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
    background: #fff;
    color: #000;
}

/* ======================== COPYRIGHT ======================== */
.copyright-bar {
    background: #FFCE00;
    padding: 8px 20px;
    text-align: center;
}

.copyright-bar p {
    font-size: 12px;
    color: #000;
}

/* ======================== SIGHTSEEING ======================== */
.sightseeing-section {
    background: #d9ecff;
    padding: 0;
    border-top: 6px solid #FFCE00;
    border-bottom: 6px solid #FFCE00;
}

.sightseeing-img-wrap {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.sightseeing-img {
    width: 100%;
    display: block;
}

.sightseeing-book-link {
    position: absolute;
    left: 17%;
    bottom: 12%;
    width: 18%;
    height: 8%;
    display: block;
    cursor: pointer;
    z-index: 10;
}

/* ======================== BEST TOURS ======================== */
.best-tours-section {
    background: #FFCE00;
    padding: 40px 0;
}

.yellow-outline-heading {
    background: transparent;
    color: #000;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.best-tours-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.best-tours-content p {
    font-size: 15px;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.7;
}

/* ======================== ATTRACTIONS ======================== */
.attractions-section {
    background: #FFCE00;
    padding: 40px 0;
}

.blue-heading {
    background: #221837 !important;
    color: #fff !important;
    padding: 18px !important;
    border-radius: 6px;
    margin-bottom: 25px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.attraction-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

.attraction-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.attr-label {
    background: #FFCE00;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    color: #000;
}

/* ======================== PICKUP ======================== */
.pickup-section {
    background: #FFCE00;
    padding: 0;
    overflow: hidden;
}

.pickup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    max-width: 1140px;
    margin: 0 auto;
}

.pickup-left {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.pickup-logo {
    height: 70px;
    width: auto;
    align-self: flex-start;
}

.pickup-tagline {
    font-size: 13px;
    font-style: italic;
    color: #333;
    margin: 0;
}

.pickup-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #000;
    line-height: 1.25;
    margin: 4px 0;
}

.pickup-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    align-items: flex-start;
}

.btn-pickup-dark {
    display: inline-block;
    background: #221837;
    color: #fff;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    min-width: 200px;
    text-align: center;
}

.btn-pickup-dark:hover { background: #0d0a26; }

.btn-pickup-green {
    display: inline-block;
    background: #2ea840;
    color: #fff;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    min-width: 200px;
    text-align: center;
}

.btn-pickup-green:hover { background: #269035; }

.pickup-right {
    position: relative;
    overflow: hidden;
}

.pickup-photos {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.pickup-photo {
    position: absolute;
    border: 4px solid #221837;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 4px 4px 14px rgba(0,0,0,0.25);
}

.pickup-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pickup-photo.top-left {
    width: 48%;
    height: 170px;
    top: 20px;
    left: 0;
    transform: rotate(-3deg);
}

.pickup-photo.top-right {
    width: 48%;
    height: 170px;
    top: 10px;
    right: 20px;
    transform: rotate(3deg);
}

.pickup-photo.bottom-center {
    width: 65%;
    height: 160px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

/* ======================== INSTAGRAM GALLERY ======================== */
.insta-gallery-section {
    background: #FFCE00;
    padding: 40px 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.insta-img {
    overflow: hidden;
    border-radius: 6px;
}

.insta-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.insta-img img:hover {
    transform: scale(1.05);
}

/* ======================== TOWNS ======================== */
.towns-section {
    background: transparent;
    padding: 0;
}

.towns-heading-bar {
    background: #FFCE00;
    padding: 28px 0;
}

.towns-h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #000;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.towns-sub-bar {
    background: #221837;
    padding: 20px 0;
}

.towns-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin: 0;
}


/* ======================== MAP ======================== */
.map-section {
    background: #FFCE00;
    padding: 40px 0;
}

.map-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.map-img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .cards-row { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .attractions-grid { grid-template-columns: repeat(3, 1fr); }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-text h1 { font-size: 28px; }
    .cards-row { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .reviews-inner, .badges-inner { flex-direction: column; align-items: center; gap: 12px; }
    .cta-row { flex-direction: column; text-align: center; }
    .cta-heading { text-align: center; }
    .cta-info p { text-align: center; }
    .promo-content { flex-direction: column; align-items: center; }
    .title-bar-inner, .ftb-inner { flex-direction: column; text-align: center; }
    .footer-cols { grid-template-columns: 1fr; }
}
