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

body {
    font-family: Arial, sans-serif;
    background: #fffaf0;
    color: #222;
}

/* HEADER */
.site-header {
    background: #fff;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.logo a {
    color: #1f3d2b;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 18px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.book-btn,
.primary-btn,
.small-btn {
    background: #c58b22;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.small-btn.dark {
    background: #1f3d2b;
}

/* HOME HERO */
.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 25px;
}

/* GENERAL SECTIONS */
.section {
    padding: 60px 50px;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1f3d2b;
}

/* PAGE HERO */
.page-hero {
    background: #1f3d2b;
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
}

/* OLD CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card h3 {
    color: #1f3d2b;
    margin-bottom: 12px;
}

.card p {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* SAFARI PACKAGE SLIDER */
.slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.package-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
}

.package-slider::-webkit-scrollbar {
    height: 8px;
}

.package-slider::-webkit-scrollbar-thumb {
    background: #c58b22;
    border-radius: 20px;
}

/* PACKAGE CARD */
.package-card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.package-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.package-card-body {
    padding: 22px;
}

.package-card-body h3 {
    color: #1f3d2b;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.3;
}

.package-card-body p {
    line-height: 1.5;
    margin-bottom: 12px;
}

.package-meta {
    background: #fff3d8;
    color: #1f3d2b;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 12px;
}

.package-price {
    color: #c58b22;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.package-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* SLIDER BUTTONS */
.slide-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #c58b22;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.2);
}

.slide-btn.left {
    left: -22px;
}

.slide-btn.right {
    right: -22px;
}

/* SAFARI DETAILS */
.details-hero {
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    padding: 70px 50px;
    color: white;
}

.details-hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.details-hero p {
    font-size: 22px;
    font-weight: bold;
}

.details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.details-main,
.booking-card,
.booking-form,
.success-box,
.error-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.details-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    margin-bottom: 25px;
}

.details-main h2 {
    color: #1f3d2b;
    margin: 25px 0 12px;
}

.details-main h2:first-child {
    margin-top: 0;
}

.itinerary-box {
    border-left: 5px solid #c58b22;
    padding: 15px;
    margin-bottom: 15px;
    background: #fffaf0;
    border-radius: 10px;
}

.tag-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-list span {
    background: #1f3d2b;
    color: white;
    padding: 8px 14px;
    border-radius: 30px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #c58b22;
}

.booking-card {
    position: sticky;
    top: 100px;
}

.whatsapp-btn {
    display: block;
    background: #25D366;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 12px;
    text-align: center;
    font-weight: bold;
}

/* BOOKING FORM */
.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.booking-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 7px;
    color: #1f3d2b;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.form-full {
    grid-column: 1 / -1;
}

.success-box {
    background: #e9f9ee;
    color: #116b2f;
    margin-bottom: 20px;
}

.error-box {
    background: #ffecec;
    color: #9b1c1c;
    margin-bottom: 20px;
}

/* FOOTER */
.site-footer {
    background: #1f3d2b;
    color: white;
    text-align: center;
    padding: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 30px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .cards,
    .details-layout,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .slide-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 35px 20px;
    }

    .page-hero {
        padding: 55px 20px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .package-card {
        min-width: 85%;
        max-width: 85%;
    }

    .package-card img {
        height: 170px;
    }

    .details-hero {
        padding: 40px 25px;
        min-height: 45vh;
    }

    .details-hero h1 {
        font-size: 34px;
    }

    .details-image {
        max-height: 300px;
    }
}
.hero-badge {
    background: rgba(197,139,34,0.95);
    padding: 9px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 18px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.outline-btn {
    color: white;
    border: 2px solid white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.search-strip {
    background: white;
    padding: 25px 50px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.search-strip form {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 15px;
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.search-strip input,
.search-strip select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.search-strip button {
    background: #c58b22;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 22px;
    font-weight: bold;
    cursor: pointer;
}

.section-title {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 35px;
}

.section-title span,
.why-content span {
    color: #c58b22;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2,
.why-content h2 {
    color: #1f3d2b;
    font-size: 40px;
    margin: 10px 0;
}

.section-title p,
.why-content p {
    font-size: 18px;
    line-height: 1.7;
}

.home-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-package-grid .package-card {
    min-width: 100%;
    max-width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 35px;
}

.services-section,
.testimonials-section {
    padding: 70px 50px;
    background: white;
}

.service-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card,
.testimonial-card {
    background: #fffaf0;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.service-card h3 {
    color: #1f3d2b;
    margin-bottom: 12px;
    font-size: 24px;
}

.service-card p,
.testimonial-card p {
    line-height: 1.7;
}

.parks-section {
    padding: 70px 50px;
    background: #f5f1e8;
}

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

.park-card {
    background: #1f3d2b;
    color: white;
    padding: 25px;
    border-radius: 16px;
    font-weight: bold;
    text-align: center;
}

.why-section {
    min-height: 520px;
    background: linear-gradient(rgba(31,61,43,.85), rgba(31,61,43,.85)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 50px;
    color: white;
    display: flex;
    align-items: center;
}

.why-content {
    max-width: 760px;
}

.why-content h2,
.why-content p {
    color: white;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.why-list div {
    background: rgba(255,255,255,0.12);
    padding: 15px;
    border-radius: 12px;
}

.cta-section {
    background: #c58b22;
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-section .primary-btn {
    background: #1f3d2b;
}

@media (max-width: 900px) {
    .search-strip form,
    .home-package-grid,
    .service-grid,
    .testimonial-grid,
    .park-grid,
    .why-list {
        grid-template-columns: 1fr;
    }

    .search-strip {
        margin-top: 0;
        padding: 25px 20px;
    }

    .section-title h2,
    .why-content h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .services-section,
    .parks-section,
    .testimonials-section,
    .why-section,
    .cta-section {
        padding: 50px 20px;
    }
}
.combo-section {
    padding: 70px 50px;
    background: white;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.combo-card {
    background: linear-gradient(135deg, #1f3d2b, #2f6848);
    color: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.combo-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.combo-card p {
    line-height: 1.7;
    margin-bottom: 18px;
}

.combo-card a {
    color: white;
    background: #c58b22;
    padding: 11px 16px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 900px) {
    .combo-grid {
        grid-template-columns: 1fr;
    }

    .combo-section {
        padding: 50px 20px;
    }
}
.gallery-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}

.gallery-filter button {
    background: #1f3d2b;
    color: white;
    border: none;
    padding: 11px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

.gallery-filter button:hover {
    background: #c58b22;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    color: #1f3d2b;
    margin-bottom: 8px;
}

.gallery-caption p {
    line-height: 1.6;
}

.video-box {
    height: 260px;
    background: #1f3d2b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-box a {
    color: white;
    background: #c58b22;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.public-testimonial {
    text-align: center;
}

.testimonial-photo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.stars {
    color: #c58b22;
    font-size: 22px;
    margin-bottom: 12px;
}

.public-testimonial small {
    display: block;
    color: #777;
    margin-top: 6px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.blog-body {
    padding: 22px;
}

.blog-body h3 {
    color: #1f3d2b;
    margin-bottom: 12px;
    font-size: 23px;
}

.blog-body p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-box {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: auto;
}

.article-intro {
    font-size: 20px;
    font-weight: bold;
    color: #1f3d2b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-content {
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.custom-form {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.custom-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 7px;
    color: #1f3d2b;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #fffaf0;
    padding: 15px;
    border-radius: 12px;
}

.interest-grid label {
    font-weight: normal;
    margin: 0;
}

.interest-grid input {
    width: auto;
    margin-right: 6px;
}

@media (max-width: 900px) {
    .custom-form,
    .interest-grid {
        grid-template-columns: 1fr;
    }
}
.logo img {
    max-height: 58px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.footer-socials {
    margin-top: 18px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-socials a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 28px;
}

.contact-info-box,
.contact-form {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-info-box h2 {
    color: #1f3d2b;
    margin-bottom: 15px;
}

.contact-info-box p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-line {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 7px;
    color: #1f3d2b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

@media (max-width: 900px) {
    .contact-layout,
    .contact-form {
        grid-template-columns: 1fr;
    }
}
.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-content,
.about-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.about-content h2 {
    color: #1f3d2b;
    font-size: 38px;
    margin: 18px 0;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 17px;
}

.about-card h3 {
    color: #1f3d2b;
    font-size: 26px;
    margin-bottom: 15px;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    background: #fffaf0;
    margin-bottom: 10px;
    padding: 13px 15px;
    border-radius: 10px;
    border-left: 4px solid #c58b22;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 30px;
    }
}
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.destination-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.destination-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.destination-body {
    padding: 22px;
}

.destination-body span {
    background: #fff3d8;
    color: #1f3d2b;
    padding: 7px 12px;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 12px;
}

.destination-body h3 {
    color: #1f3d2b;
    font-size: 24px;
    margin-bottom: 12px;
}

.destination-body p {
    line-height: 1.6;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
}
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #1f3d2b;
}

.language-box span {
    text-align: center;
}

#google_translate_element {
    background: #fffaf0;
    border: 1px solid #e1d5b8;
    border-radius: 8px;
    padding: 5px 8px;
    min-width: 145px;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget-simple {
    border: none !important;
    background: transparent !important;
    font-size: 13px !important;
    padding: 0 !important;
}

.goog-te-gadget-simple span {
    color: #1f3d2b !important;
    font-weight: bold;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate iframe {
    display: none !important;
}

@media (max-width: 900px) {
    .header-right {
        flex-direction: column;
        width: 100%;
    }

    .language-box {
        align-items: center;
    }
}
.video-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.video-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 70px;
    color: white;
}

.video-hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.video-hero p {
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .video-hero {
        height: 80vh;
    }

    .video-hero .hero-content {
        padding: 30px;
    }

    .video-hero h1 {
        font-size: 40px;
    }

    .video-hero p {
        font-size: 18px;
    }
}
/* MOBILE MENU */

.mobile-menu-btn{
    display:none;
    background:#1f3d2b;
    color:#fff;
    border:none;
    padding:10px 14px;
    border-radius:8px;
    font-size:24px;
    cursor:pointer;
}

@media(max-width:1000px){

    .mobile-menu-btn{
        display:block;
    }

    nav{
        display:none;
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 8px 20px rgba(0,0,0,.15);
        flex-direction:column;
        padding:20px;
        z-index:9999;
    }

    nav a{
        padding:12px 0;
        border-bottom:1px solid #eee;
    }

    .show-mobile-nav{
        display:flex !important;
    }

    .site-header{
        position:relative;
    }

    .header-right{
        gap:10px;
    }
}
.admin-secret-dot {
    position: fixed;
    top: 18px;
    left: 14px;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid #d61f1f;
    border-radius: 50%;
    z-index: 99999;
    display: block;
}

.admin-secret-dot:hover {
    background: #d61f1f;
}
.admin-secret-dot {
    position: fixed;
    top: 18px;
    left: 14px;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid #d61f1f;
    border-radius: 50%;
    z-index: 99999;
    display: block;
}

.admin-secret-dot:hover {
    background: #d61f1f;
}

/* PREMIUM FOOTER */
.site-footer {
    background: #163323;
    color: #ffffff;
    padding: 65px 50px 25px;
    text-align: left;
}

.footer-main {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 38px;
    align-items: start;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 28px;
}

.footer-brand p,
.footer-contact p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 18px;
}

.footer-brand .small-btn {
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.84);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #d6a23d;
    transform: translateX(3px);
}

.footer-contact .whatsapp-btn {
    color: #ffffff;
    margin-top: 16px;
}

.footer-socials {
    max-width: 1250px;
    margin: 35px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.13);
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-socials a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-socials a:hover {
    color: #d6a23d;
}

.footer-bottom {
    max-width: 1250px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.13);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .site-footer {
        padding: 50px 20px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ACCESSIBILITY AND SMALL UI IMPROVEMENTS */
.mobile-menu-btn:focus,
nav a:focus,
.book-btn:focus,
.primary-btn:focus,
.small-btn:focus,
.outline-btn:focus,
.footer-links a:focus,
.footer-contact a:focus {
    outline: 3px solid rgba(197,139,34,0.45);
    outline-offset: 3px;
}

img {
    max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/*==========================
Breadcrumbs
==========================*/

.breadcrumbs{
margin:20px auto;
max-width:1200px;
padding:0 20px;
font-size:14px;
}

.breadcrumbs ol{
display:flex;
flex-wrap:wrap;
gap:8px;
list-style:none;
padding:0;
margin:0;
}

.breadcrumbs li{
color:#666;
}

.breadcrumbs li::after{
content:"/";
margin-left:8px;
color:#999;
}

.breadcrumbs li:last-child::after{
display:none;
}

.breadcrumbs a{
color:#0b6b3a;
text-decoration:none;
font-weight:600;
}

.breadcrumbs a:hover{
text-decoration:underline;
}
/* BREADCRUMBS */
.breadcrumbs {
    max-width: 1250px;
    margin: 18px auto;
    padding: 0 50px;
    font-size: 14px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #666;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #aaa;
}

.breadcrumbs a {
    color: #1f3d2b;
    text-decoration: none;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: #c58b22;
    text-decoration: underline;
}

.breadcrumbs span[aria-current="page"] {
    color: #777;
}

@media (max-width: 700px) {
    .breadcrumbs {
        padding: 0 20px;
        margin: 14px auto;
    }
}

/* =========================================================
   360 AFRICAN SAFARIS — PREMIUM HOMEPAGE V2
   ========================================================= */

:root {
    --safari-green: #163829;
    --safari-green-dark: #0d261b;
    --safari-green-soft: #244c39;
    --safari-gold: #c9942f;
    --safari-gold-light: #e0b65d;
    --safari-cream: #f7f1e5;
    --safari-sand: #e9dcc5;
    --safari-white: #ffffff;
    --safari-ink: #17201b;
    --safari-muted: #69746d;
    --premium-shadow: 0 18px 50px rgba(16, 39, 28, 0.12);
    --premium-shadow-strong: 0 26px 70px rgba(16, 39, 28, 0.2);
    --premium-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.home-page {
    background: var(--safari-white);
}

.premium-section {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 105px 0;
}

.section-kicker {
    display: inline-block;
    color: var(--safari-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-kicker-light {
    color: #f1c976;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.story-content h2,
.final-cta h2 {
    color: var(--safari-green);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin: 0 0 20px;
}

.section-heading p,
.story-content p,
.heading-side-copy {
    color: var(--safari-muted);
    font-size: 18px;
    line-height: 1.8;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 48px;
}

.centered-heading {
    text-align: center;
    margin: 0 auto 48px;
}

.text-link {
    color: var(--safari-green);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
    color: var(--safari-gold);
    transform: translateX(4px);
}

.text-link-light {
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(
        135deg,
        var(--safari-gold),
        var(--safari-gold-light)
    );
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(201, 148, 47, 0.28);
}

.btn-gold:hover {
    box-shadow: 0 16px 36px rgba(201, 148, 47, 0.4);
}

.btn-dark {
    background: var(--safari-green);
    color: #ffffff;
}

.btn-outline-dark {
    border-color: var(--safari-green);
    color: var(--safari-green);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--safari-green);
    color: #ffffff;
}

.btn-glass {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
}

.btn-full {
    width: 100%;
}

/* HERO */

.premium-hero {
    position: relative;
    min-height: 880px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            110deg,
            rgba(7, 23, 16, 0.88),
            rgba(7, 23, 16, 0.45)
        ),
        var(--hero-fallback);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.premium-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(6, 24, 16, 0.9) 0%,
            rgba(6, 24, 16, 0.63) 46%,
            rgba(6, 24, 16, 0.26) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 18, 12, 0.42),
            transparent 45%
        );
}

.premium-hero-shell {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0 125px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 420px;
    gap: 70px;
    align-items: center;
}

.premium-hero-content {
    color: #ffffff;
    max-width: 750px;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: #f4d288;
    border: 1px solid rgba(244, 210, 136, 0.38);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.premium-hero h1 {
    color: #ffffff;
    font-size: clamp(50px, 6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 0 0 26px;
}

.premium-hero h1 span {
    color: #f0c66e;
    display: block;
}

.premium-hero-content > p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.7;
    margin-bottom: 32px;
}

.premium-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 34px;
}

.hero-trust-row span {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 700;
}

.hero-trust-row span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f0c66e;
}

.hero-planner-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--premium-shadow-strong);
    backdrop-filter: blur(16px);
}

.planner-kicker {
    color: var(--safari-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-planner-card h2 {
    color: var(--safari-green);
    font-size: 29px;
    line-height: 1.15;
    margin: 10px 0 24px;
}

.hero-search-form {
    display: grid;
    gap: 10px;
}

.hero-search-form label {
    color: var(--safari-green);
    font-size: 13px;
    font-weight: 800;
    margin-top: 4px;
}

.hero-search-form input,
.hero-search-form select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #dfe5df;
    border-radius: 14px;
    padding: 0 15px;
    background: #ffffff;
    color: var(--safari-ink);
    font-size: 15px;
    outline: none;
}

.hero-search-form input:focus,
.hero-search-form select:focus {
    border-color: var(--safari-gold);
    box-shadow: 0 0 0 4px rgba(201, 148, 47, 0.12);
}

.hero-search-form .btn {
    margin-top: 9px;
}

.planner-custom-link {
    display: block;
    margin-top: 17px;
    color: var(--safari-green);
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.hero-scroll-hint {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-scroll-hint span {
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

/* RIBBON */

.experience-ribbon {
    background: var(--safari-green);
}

.experience-ribbon-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.experience-ribbon-inner > div {
    min-height: 104px;
    padding: 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-ribbon-inner > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-ribbon strong {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.experience-ribbon span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

/* PACKAGES */

.premium-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.premium-package-card {
    background: #ffffff;
    border-radius: var(--premium-radius);
    overflow: hidden;
    border: 1px solid #edf0ed;
    box-shadow: var(--premium-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-package-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--premium-shadow-strong);
}

.premium-package-media {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
}

.premium-package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.premium-package-card:hover .premium-package-media img {
    transform: scale(1.06);
}

.package-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.58)
    );
}

.package-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--safari-gold);
    color: #ffffff;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-media-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.package-media-meta span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.premium-package-body {
    padding: 24px;
}

.package-category {
    color: var(--safari-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.premium-package-body h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.premium-package-body h3 a {
    color: var(--safari-green);
    text-decoration: none;
}

.premium-package-body > p {
    color: var(--safari-muted);
    line-height: 1.7;
    min-height: 82px;
}

.premium-package-footer {
    border-top: 1px solid #edf0ed;
    margin-top: 20px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-package-price {
    display: flex;
    flex-direction: column;
}

.premium-package-price small {
    color: var(--safari-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.premium-package-price strong {
    color: var(--safari-green);
    font-size: 21px;
}

.circle-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--safari-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.circle-link:hover {
    background: var(--safari-gold);
    transform: translateX(3px);
}

/* STORY */

.story-section {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 105px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 85px;
    align-items: center;
}

.story-image-wrap {
    position: relative;
}

.story-image-wrap > img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--premium-shadow-strong);
}

.story-floating-card {
    position: absolute;
    right: -32px;
    bottom: 44px;
    width: 190px;
    min-height: 160px;
    background: var(--safari-gold);
    border-radius: 24px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--premium-shadow);
}

.story-floating-card strong {
    color: #ffffff;
    font-size: 46px;
    line-height: 1;
}

.story-floating-card span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
    margin-top: 8px;
    font-weight: 700;
}

.story-lead {
    font-size: 20px !important;
    color: var(--safari-ink) !important;
}

.story-points {
    display: grid;
    gap: 24px;
    margin: 32px 0 34px;
}

.story-points > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
}

.story-points > div > span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--safari-cream);
    color: var(--safari-gold);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-points h3 {
    color: var(--safari-green);
    margin: 0 0 6px;
    font-size: 20px;
}

.story-points p {
    font-size: 15px;
    margin: 0;
}

/* DESTINATIONS */

.destinations-showcase {
    background: var(--safari-cream);
}

.destination-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.destination-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: block;
}

.destination-tile-large {
    grid-row: span 2;
}

.destination-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.destination-tile:hover img {
    transform: scale(1.06);
}

.destination-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04),
        rgba(0, 0, 0, 0.72)
    );
}

.destination-tile-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #ffffff;
}

.destination-tile-content span {
    color: #f1cb79;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.destination-tile-content h3 {
    color: #ffffff;
    font-size: 25px;
    margin: 7px 0;
}

.destination-tile-content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    font-size: 14px;
}

.section-center-action {
    text-align: center;
    margin-top: 40px;
}

/* JOURNEY TYPES */

.journey-types-section {
    background: #ffffff;
}

.heading-side-copy {
    max-width: 430px;
}

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

.journey-type-card {
    min-height: 330px;
    padding: 30px;
    border-radius: 24px;
    text-decoration: none;
    background:
        linear-gradient(
            155deg,
            var(--safari-green),
            var(--safari-green-soft)
        );
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-type-card:nth-child(even) {
    background:
        linear-gradient(
            155deg,
            #9f6e1d,
            var(--safari-gold)
        );
}

.journey-type-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--premium-shadow-strong);
}

.journey-type-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journey-type-card h3 {
    color: #ffffff;
    font-size: 27px;
    line-height: 1.15;
    margin: 28px 0 14px;
}

.journey-type-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.journey-type-card strong {
    color: #ffffff;
    margin-top: auto;
}

/* GALLERY */

.gallery-showcase {
    background: var(--safari-green-dark);
}

.gallery-showcase .section-heading h2 {
    color: #ffffff;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(2, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 18px;
}

.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    display: block;
}

.home-gallery-feature {
    grid-row: span 2;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.06);
}

.home-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(0, 0, 0, 0.74)
    );
}

.home-gallery-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
}

.home-gallery-caption h3 {
    color: #ffffff;
    font-size: 21px;
    margin-bottom: 6px;
}

.home-gallery-caption p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

/* TESTIMONIALS */

.testimonial-showcase {
    background: #ffffff;
}

.premium-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.premium-testimonial-card {
    position: relative;
    background: var(--safari-cream);
    border-radius: 24px;
    padding: 34px;
    border: 1px solid #ede4d6;
}

.testimonial-quote-mark {
    color: rgba(201, 148, 47, 0.18);
    font-family: Georgia, serif;
    font-size: 92px;
    line-height: 0.7;
    position: absolute;
    top: 24px;
    right: 25px;
}

.testimonial-stars {
    color: var(--safari-gold);
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.premium-testimonial-card blockquote {
    position: relative;
    z-index: 1;
    color: var(--safari-ink);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 28px;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-person img,
.testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    background: var(--safari-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

.testimonial-person strong {
    display: block;
    color: var(--safari-green);
    margin-bottom: 4px;
}

.testimonial-person span {
    color: var(--safari-muted);
    font-size: 13px;
}

/* BLOG */

.journal-section {
    background: var(--safari-cream);
}

.premium-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.premium-blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
}

.premium-blog-image {
    display: block;
    height: 255px;
    overflow: hidden;
}

.premium-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.premium-blog-card:hover .premium-blog-image img {
    transform: scale(1.05);
}

.premium-blog-body {
    padding: 26px;
}

.blog-date {
    color: var(--safari-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.premium-blog-body h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.premium-blog-body h3 a {
    color: var(--safari-green);
    text-decoration: none;
}

.premium-blog-body p {
    color: var(--safari-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* FINAL CTA */

.final-cta {
    position: relative;
    min-height: 590px;
    background:
        url("../images/hero.jpg")
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 28, 19, 0.82);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    width: min(850px, calc(100% - 40px));
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.empty-home-state {
    background: var(--safari-cream);
    border: 1px dashed #d9c9ae;
    border-radius: 24px;
    padding: 48px 30px;
    text-align: center;
}

.empty-home-state h3 {
    color: var(--safari-green);
    margin-bottom: 10px;
}

.empty-home-state p {
    color: var(--safari-muted);
}

/* HEADER POLISH FOR PREMIUM HOMEPAGE */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
}

.logo img {
    width: auto;
    height: 58px;
}

.site-header nav a,
.site-header .book-btn {
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.site-header nav a:hover {
    color: var(--safari-gold);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .premium-hero {
        min-height: auto;
    }

    .premium-hero-shell {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-top: 90px;
    }

    .hero-planner-card {
        width: min(100%, 580px);
    }

    .premium-package-grid,
    .premium-testimonial-grid,
    .premium-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section {
        gap: 50px;
    }
}

@media (max-width: 800px) {
    .premium-section,
    .premium-hero-shell,
    .experience-ribbon-inner,
    .story-section {
        width: min(100% - 32px, 1240px);
    }

    .premium-section,
    .story-section {
        padding: 72px 0;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 34px;
    }

    .premium-hero h1 {
        font-size: clamp(46px, 13vw, 68px);
    }

    .experience-ribbon-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-ribbon-inner > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .premium-package-grid,
    .premium-testimonial-grid,
    .premium-blog-grid {
        grid-template-columns: 1fr;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .story-image-wrap > img {
        height: 560px;
    }

    .story-floating-card {
        right: 18px;
    }

    .destination-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-tile-large {
        grid-row: span 1;
        grid-column: span 2;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .home-gallery-feature {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 560px) {
    .premium-hero-shell {
        padding: 72px 0 100px;
    }

    .premium-hero-actions,
    .final-cta-actions {
        flex-direction: column;
    }

    .premium-hero-actions .btn,
    .final-cta-actions .btn {
        width: 100%;
    }

    .hero-planner-card {
        padding: 24px;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 10px;
    }

    .experience-ribbon-inner {
        grid-template-columns: 1fr;
    }

    .experience-ribbon-inner > div {
        min-height: 84px;
    }

    .premium-package-media {
        height: 240px;
    }

    .story-image-wrap > img {
        height: 430px;
    }

    .story-floating-card {
        position: static;
        width: auto;
        min-height: 0;
        margin: -44px 18px 0;
    }

    .destination-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .destination-tile-large {
        grid-column: auto;
    }

    .journey-type-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 290px);
    }

    .home-gallery-feature {
        grid-column: auto;
    }

    .final-cta {
        min-height: 520px;
    }
}

/* =========================================================
   360° CONVERSION AND BOOKING EXPERIENCE
   ========================================================= */

.header-brand-copy {
    display: flex;
    min-width: 165px;
    flex-direction: column;
    margin-left: -10px;
    line-height: 1.2;
}

.header-brand-copy strong {
    color: #173f2d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    letter-spacing: .01em;
}

.header-brand-copy span {
    margin-top: 3px;
    color: #7a6b4c;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mobile-conversion-bar {
    display: none;
}

.booking-steps-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(214, 164, 58, .11), transparent 28%),
        #f7f4ec;
}

.booking-steps-heading {
    max-width: 730px;
    margin-bottom: 30px;
}

.booking-steps-heading h2 {
    margin: 6px 0 12px;
    color: #173f2d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 49px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.booking-steps-heading p {
    margin: 0;
    color: #5f6d65;
    font-size: 16px;
    line-height: 1.7;
}

.booking-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.booking-step-card {
    min-height: 220px;
    padding: 26px;
    border: 1px solid rgba(23, 63, 45, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 44px rgba(23, 63, 45, .06);
}

.booking-step-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: #173f2d;
    color: #f1cf84;
    font-size: 12px;
    font-weight: 900;
}

.booking-step-card h3 {
    margin: 0 0 9px;
    color: #173f2d;
    font-size: 20px;
}

.booking-step-card p {
    margin: 0;
    color: #5f6d65;
    line-height: 1.65;
}

.booking-steps-action {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.booking-steps-action small {
    color: #67756d;
    font-size: 12px;
}

.package-card-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    background: #173f2d;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform .2s ease,
        background .2s ease;
}

.package-card-cta:hover {
    transform: translateY(-2px);
    background: #286348;
}

@media (max-width: 1180px) {
    .header-brand-copy {
        display: none;
    }
}

@media (max-width: 800px) {
    body {
        padding-bottom: 72px;
    }

    .booking-step-grid {
        grid-template-columns: 1fr;
    }

    .booking-step-card {
        min-height: 0;
    }

    .booking-steps-action {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-steps-action .btn {
        width: 100%;
    }

    .mobile-conversion-bar {
        position: fixed;
        z-index: 1000;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
        gap: 8px;
        padding:
            10px
            max(10px, env(safe-area-inset-right))
            max(10px, env(safe-area-inset-bottom))
            max(10px, env(safe-area-inset-left));
        border-top: 1px solid rgba(23, 63, 45, .12);
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -10px 30px rgba(10, 38, 25, .14);
        backdrop-filter: blur(14px);
    }

    .mobile-conversion-bar a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-conversion-primary {
        background: #d7a43a;
        color: #17231d;
    }

    .mobile-conversion-whatsapp {
        background: #16864d;
        color: #fff;
    }
}

@media (max-width: 480px) {
    .premium-package-footer {
        align-items: flex-end;
        flex-direction: column;
    }

    .package-card-cta {
        width: 100%;
    }
}
