body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #FBF7EF;
    overflow-x: hidden;
}

/* BUTTONS */
.paw-btn {
    background: #3A2417;
    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: #C89B3C;
    color: white;
    transform: translateY(-3px);
}

.paw-mark {
    animation: summitBounce 1.6s infinite;
}

@keyframes summitBounce {
    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: #3A2417;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero/kilimanjaro-hero.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: #E8D27A;
    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: #C89B3C;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
}

.section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #3A2417;
    margin: 18px 0;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    margin-bottom: 60px;
}

/* TOURS */
.featured-tours {
    padding: 120px 0;
    background: #FBF7EF;
}

.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: #120B07;
}

.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: #FBF7EF;
}

.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: #3A2417;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

/* PRE FOOTER CTA */
.pre-footer-cta {
    position: relative;
    padding: 180px 0;
    background: url('../images/hero/kilimanjaro-footer.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: #E8D27A;
    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: #3A2417;
    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: #E8D27A;
    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: #E8D27A;
    padding-left: 6px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    color: #E8D27A;
    text-decoration: none;
}

.footer-socials a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    background: #050505;
    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: #E8D27A;
    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: #FBF7EF;
}

.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: #C89B3C;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.fact-card p {
    color: #3A2417;
    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: #3A2417;
    margin-bottom: 30px;
}

/* ITINERARY */
.itinerary-card {
    background: #FFF8EA;
    border-left: 5px solid #E8D27A;
    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: #FFF8EA;
    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: #C89B3C;
    font-weight: bold;
}

/* BOOKING SIDEBAR */
.booking-box {
    background: #3A2417;
    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: #FBF7EF;
}

/* 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;
    }
}

/* =========================================================
   KILIMANJARO TRAVEL PREMIUM THEME OVERRIDES
   Gold mountain theme • Premium cards • Mobile improvements
========================================================= */
:root{
    --kt-brown:#3A2417;
    --kt-black:#050505;
    --kt-gold:#C89B3C;
    --kt-light-gold:#E8D27A;
    --kt-cream:#FBF7EF;
    --kt-soft:#FFF8EA;
    --kt-text:#2B211A;
}

html{
    scroll-behavior:smooth;
}

body{
    color:var(--kt-text);
    background:var(--kt-cream);
    font-family:'Inter', sans-serif;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
        radial-gradient(circle at 15% 12%, rgba(232,210,122,.18), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(200,155,60,.12), transparent 30%),
        linear-gradient(180deg,#fff,var(--kt-cream));
}

/* PREMIUM BUTTONS */
.paw-btn,
.tour-btn,
.destination-btn{
    background:linear-gradient(135deg,var(--kt-light-gold),var(--kt-gold)) !important;
    color:var(--kt-black) !important;
    font-weight:800 !important;
    border:1px solid rgba(200,155,60,.5) !important;
    box-shadow:0 10px 26px rgba(200,155,60,.25);
}

.paw-btn:hover,
.tour-btn:hover,
.destination-btn:hover{
    background:linear-gradient(135deg,var(--kt-gold),var(--kt-light-gold)) !important;
    color:var(--kt-black) !important;
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(200,155,60,.36);
}

.paw-mark::before{
    content:"▲";
    font-size:.9rem;
}

.paw-mark{
    font-size:0;
    display:inline-flex;
    align-items:center;
    color:var(--kt-brown);
}

.hero-secondary-btn{
    border:1px solid rgba(232,210,122,.75);
    color:#fff;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
}

.hero-secondary-btn:hover{
    background:#fff;
    color:var(--kt-brown);
    border-color:#fff;
}

/* KILIMANJARO HERO */
.hero-section{
    background-image:url('../images/hero/kilimanjaro-hero.jpg');
    background-position:center top;
    isolation:isolate;
}

.hero-section::after{
    content:"";
    position:absolute;
    right:5%;
    bottom:10%;
    width:280px;
    height:150px;
    opacity:.22;
    background:linear-gradient(135deg,transparent 45%,rgba(232,210,122,.7) 46%,rgba(232,210,122,.7) 49%,transparent 50%);
    clip-path:polygon(0 100%,38% 25%,52% 58%,68% 12%,100% 100%);
    z-index:2;
    animation:mountainGlow 4s ease-in-out infinite;
}

.hero-overlay{
    background:
        linear-gradient(to right, rgba(5,5,5,.82), rgba(58,36,23,.42), rgba(5,5,5,.18)),
        linear-gradient(to top, rgba(5,5,5,.58), transparent 55%);
}

.hero-tag,
.section-heading span,
.pre-footer-content span,
.tour-hero-content span{
    color:var(--kt-light-gold);
    text-shadow:0 0 18px rgba(232,210,122,.28);
}

.hero-text h1,
.section-heading h2,
.pre-footer-content h2,
.tour-hero-content h1,
.tour-section h2,
.booking-box h3{
    letter-spacing:-.035em;
}

.hero-text h1{
    text-shadow:0 18px 45px rgba(0,0,0,.42);
}

.hero-text p{
    max-width:620px;
}

@keyframes mountainGlow{
    0%,100%{opacity:.14; transform:translateY(0)}
    50%{opacity:.34; transform:translateY(-8px)}
}

/* SECTION POLISH */
.featured-tours,
.why-us-section,
.related-tours,
.tour-facts{
    background:
        linear-gradient(180deg,#fff 0%, var(--kt-cream) 100%);
}

.section-heading{
    margin-bottom:10px;
}

.section-heading h2{
    color:var(--kt-brown);
}

.section-heading p{
    color:#6A5E55;
    line-height:1.8;
}

/* TOUR + DESTINATION CARDS */
.tour-card,
.destination-card,
.why-card,
.fact-card{
    border:1px solid rgba(200,155,60,.16);
}

.tour-card,
.destination-card{
    box-shadow:0 22px 55px rgba(58,36,23,.16);
}

.tour-card::before,
.destination-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1px;
    background:linear-gradient(135deg,rgba(232,210,122,.7),transparent 35%,rgba(200,155,60,.4));
    -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    z-index:3;
    pointer-events:none;
    opacity:.8;
}

.tour-overlay,
.destination-overlay{
    background:linear-gradient(to top, rgba(5,5,5,.94) 0%, rgba(58,36,23,.55) 46%, rgba(5,5,5,.08) 100%);
}

.tour-type{
    background:rgba(232,210,122,.16);
    color:#fff;
    border:1px solid rgba(232,210,122,.28);
    backdrop-filter:blur(10px);
}

.tour-meta{
    color:var(--kt-light-gold);
}

.tour-overlay h3,
.destination-overlay h3{
    text-shadow:0 10px 25px rgba(0,0,0,.45);
}

/* WHY / FACT CARDS */
.why-card,
.fact-card{
    background:#fff;
    box-shadow:0 18px 45px rgba(58,36,23,.08);
}

.why-card:hover,
.fact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 60px rgba(58,36,23,.13);
    border-color:rgba(200,155,60,.36);
}

.why-icon{
    filter:drop-shadow(0 8px 18px rgba(200,155,60,.25));
}

.why-card h4,
.fact-card h5{
    color:var(--kt-brown);
}

/* PRE FOOTER */
.pre-footer-cta{
    background-image:url('../images/hero/kilimanjaro-footer.jpg');
    overflow:hidden;
}

.pre-footer-cta::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:4px;
    background:linear-gradient(90deg,transparent,var(--kt-gold),var(--kt-light-gold),var(--kt-gold),transparent);
    background-size:220% 100%;
    animation:footerGoldRun 6s linear infinite;
    z-index:3;
}

.pre-footer-overlay{
    background:linear-gradient(to right, rgba(5,5,5,.86), rgba(58,36,23,.52), rgba(5,5,5,.26));
}

@keyframes footerGoldRun{
    from{background-position:220% 0;}
    to{background-position:-220% 0;}
}

/* FOOTER */
.editorial-footer{
    background:linear-gradient(135deg,var(--kt-brown),var(--kt-black));
}

.footer-bottom{
    background:rgba(0,0,0,.35);
    border-top:1px solid rgba(232,210,122,.15);
}

.footer-links h5,
.footer-contact h5,
.footer-socials a,
.footer-links a:hover{
    color:var(--kt-light-gold);
}

/* TOUR DETAILS */
.tour-hero-overlay{
    background:linear-gradient(to right,rgba(5,5,5,.84),rgba(58,36,23,.36),rgba(5,5,5,.18));
}

.itinerary-card{
    border-left-color:var(--kt-gold);
    background:var(--kt-soft);
}

.tour-list li{
    background:var(--kt-soft);
}

.tour-list li::before{
    color:var(--kt-gold);
}

.booking-box{
    background:linear-gradient(145deg,var(--kt-brown),var(--kt-black));
    border:1px solid rgba(232,210,122,.18);
}

.booking-box input,
.booking-box textarea{
    border:1px solid rgba(232,210,122,.12);
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
    box-shadow:0 0 0 6px rgba(37,211,102,.12),0 14px 34px rgba(0,0,0,.24);
}

/* MOBILE IMPROVEMENTS */
@media(max-width:991px){
    .hero-section{
        min-height:86vh;
        padding-top:105px;
        background-position:center top;
    }

    .hero-text h1,
    .pre-footer-content h2,
    .tour-hero-content h1{
        font-size:3.25rem;
        line-height:1.02;
    }

    .hero-text p,
    .pre-footer-content p{
        font-size:1rem;
        line-height:1.75;
    }

    .hero-buttons{
        gap:12px;
        width:100%;
    }

    .paw-btn,
    .hero-secondary-btn{
        width:100%;
        justify-content:center;
        text-align:center;
    }

    .featured-tours,
    .why-us-section,
    .related-tours{
        padding:75px 0;
    }

    .pre-footer-cta{
        padding:110px 0;
    }
}

@media(max-width:576px){
    .hero-section{
        min-height:82vh;
    }

    .hero-tag,
    .section-heading span,
    .pre-footer-content span{
        letter-spacing:2px;
        font-size:11px;
    }

    .hero-text h1,
    .pre-footer-content h2,
    .tour-hero-content h1{
        font-size:2.55rem;
    }

    .section-heading h2{
        font-size:2.25rem;
    }

    .tour-card,
    .destination-card{
        height:410px !important;
        border-radius:20px;
    }

    .tour-overlay,
    .destination-overlay{
        padding:18px !important;
    }

    .tour-overlay h3,
    .destination-overlay h3{
        font-size:1.45rem;
    }

    .tour-meta{
        gap:10px;
        flex-wrap:wrap;
    }
}
