body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #F7F1E8;
    overflow-x: hidden;
}

/* BUTTONS */
.paw-btn {
    background: #2E2217;
    color: white;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s ease;
    border: none;
}

.paw-btn:hover {
    background: #A47C48;
    color: white;
    transform: translateY(-3px);
}

.paw-mark {
    animation: pawBounce 1.5s infinite;
}

@keyframes pawBounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-secondary-btn {
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    color: white;
    text-decoration: none;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
}

.hero-secondary-btn:hover {
    background: white;
    color: #2E2217;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero/hero-safari.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10,10,10,0.78), rgba(10,10,10,0.25)),
        linear-gradient(to top, rgba(0,0,0,0.45), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 760px;
}

.hero-tag {
    color: #D9B27A;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    line-height: 0.95;
    color: white;
    margin-bottom: 25px;
}

.hero-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    width: 28px;
    height: 48px;
    border: 2px solid white;
    border-radius: 999px;
    display: block;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 999px;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 28px; }
}

/* SECTION HEADINGS */
.section-heading span {
    color: #A47C48;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
}

.section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #2E2217;
    margin: 18px 0;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    margin-bottom: 60px;
}

/* TOURS */
.featured-tours {
    padding: 120px 0;
    background: #F7F1E8;
}

.tour-card {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-12px);
}

.tour-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.tour-card:hover img {
    transform: scale(1.08);
}

.tour-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.15));
    z-index: 2;
}

.tour-type {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.tour-overlay h3 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

.tour-overlay p {
    color: rgba(255,255,255,0.88);
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    color: white;
    margin: 20px 0;
    font-weight: 600;
}

/* DESTINATIONS */
.destinations-section {
    padding: 120px 0;
    background: #1E160F;
}

.destinations-section .section-heading h2,
.destinations-section .section-heading p {
    color: white;
}

.destination-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.1));
    z-index: 2;
}

.destination-overlay h3 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
}

.destination-overlay p {
    color: rgba(255,255,255,0.85);
}

/* WHY US */
.why-us-section {
    padding: 120px 0;
    background: #F7F1E8;
}

.why-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #2E2217;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

/* PRE FOOTER CTA */
.pre-footer-cta {
    position: relative;
    padding: 180px 0;
    background: url('../images/hero/footer-safari.jpg') center center / cover no-repeat;
}

.pre-footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.35));
}

.pre-footer-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.pre-footer-content span {
    color: #D9B27A;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 600;
}

.pre-footer-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 5rem;
    line-height: 1;
    margin: 20px 0;
}

.pre-footer-content p {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 35px;
}

/* FOOTER */
.editorial-footer {
    background: #1A120B;
    padding: 100px 0 0;
}

.footer-brand-block h2 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 4rem;
    letter-spacing: 4px;
}

.footer-brand-block p {
    color: rgba(255,255,255,0.68);
    line-height: 1.9;
    max-width: 380px;
}

.footer-links h5,
.footer-contact h5 {
    color: #D9B27A;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-contact p {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #D9B27A;
    padding-left: 6px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    color: #D9B27A;
    text-decoration: none;
}

.footer-socials a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    background: #120C08;
    text-align: center;
    border-top: 1px solid rgba(217,178,122,0.12);
}

.footer-bottom p {
    color: rgba(255,255,255,0.48);
    margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-text h1,
    .pre-footer-content h2 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-card,
    .destination-card {
        height: 420px;
    }

    .section-heading h2 {
        font-size: 2.7rem;
    }

    .footer-brand-block h2 {
        font-size: 2.8rem;
    }
}
/* FLYING BIRDS */
.flying-birds {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.flying-birds span {
    position: absolute;
    font-size: 26px;
    opacity: 0.35;
    color: white;
    animation: flyBirds linear infinite;
}

/* individual paths */
.flying-birds span:nth-child(1) {
    top: 15%;
    left: -10%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.flying-birds span:nth-child(2) {
    top: 25%;
    left: -15%;
    animation-duration: 22s;
    animation-delay: 4s;
    font-size: 20px;
}

.flying-birds span:nth-child(3) {
    top: 12%;
    left: -12%;
    animation-duration: 16s;
    animation-delay: 7s;
    font-size: 30px;
}

.flying-birds span:nth-child(4) {
    top: 35%;
    left: -8%;
    animation-duration: 20s;
    animation-delay: 2s;
    font-size: 18px;
}

.flying-birds span:nth-child(5) {
    top: 18%;
    left: -20%;
    animation-duration: 24s;
    animation-delay: 9s;
}

/* animation path */
@keyframes flyBirds {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.35;
    }

    50% {
        transform: translateX(60vw) translateY(-30px) scale(1.15);
    }

    100% {
        transform: translateX(120vw) translateY(-80px) scale(0.9);
        opacity: 0;
    }
}
/* TOUR DETAILS PAGE */
.tour-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.25)),
        linear-gradient(to top, rgba(0,0,0,0.45), transparent);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.tour-hero-content span {
    color: #D9B27A;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.tour-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.2rem;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
}

.tour-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 720px;
}

/* QUICK FACTS */
.tour-facts {
    padding: 70px 0;
    background: #F7F1E8;
}

.fact-card {
    background: white;
    padding: 35px 25px;
    border-radius: 22px;
    box-shadow: 0 14px 45px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.fact-card:hover {
    transform: translateY(-8px);
}

.fact-card h5 {
    font-family: 'Cormorant Garamond', serif;
    color: #A47C48;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.fact-card p {
    color: #2E2217;
    font-weight: 500;
    margin: 0;
}

/* CONTENT */
.tour-content {
    padding: 100px 0;
    background: white;
}

.tour-section {
    margin-bottom: 60px;
}

.tour-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #2E2217;
    margin-bottom: 30px;
}

/* ITINERARY */
.itinerary-card {
    background: #F9F5EF;
    border-left: 5px solid #D9B27A;
    padding: 24px 28px;
    margin-bottom: 20px;
    border-radius: 18px;
    line-height: 1.8;
    color: #444;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* LISTS */
.tour-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-list li {
    background: #F9F5EF;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 48px;
    color: #444;
}

.tour-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #A47C48;
    font-weight: bold;
}

/* BOOKING SIDEBAR */
.booking-box {
    background: #1A120B;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    position: sticky;
    top: 120px;
}

.booking-box h3 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.booking-box input,
.booking-box textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 15px 18px;
    border: none;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: white;
    outline: none;
}

.booking-box input::placeholder,
.booking-box textarea::placeholder {
    color: rgba(255,255,255,0.65);
}

/* RELATED */
.related-tours {
    padding: 120px 0;
    background: #F7F1E8;
}

/* MOBILE */
@media (max-width: 991px) {
    .tour-hero {
        min-height: 60vh;
        padding-top: 100px;
    }

    .tour-hero-content h1 {
        font-size: 3rem;
    }

    .tour-hero-content p {
        font-size: 1rem;
    }

    .tour-section h2 {
        font-size: 2.2rem;
    }

    .booking-box {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
}