:root {
    --accent:#f26b1d;
    --accent-dark:#a12a20;
    --light-gray:#f8f8f8;
    --radius:12px;
    --hero-height:88vh;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin: 0;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

/* Site header */
.site-header{
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.site-header .logo{
    height: 100px;
}
.site-header .logo img{
    display: block;
    height: 100px;
    width: auto;
}
/* Desktop Nav links */
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.nav-links ul li{
    list-style: none;
}
.nav-links ul li a{
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.nav-links ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    display: block;
    margin: auto;
    transition: 0.5s ease-in-out;
}
.nav-links ul li:hover::after{
    width: 100%;
}
/* Hide Hambuger on Desktop */
nav .fa-solid {
    display: none;
}
.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}
/* Mobile Navigation */
@media (max-width:600px){
    .nav-links{
        position: absolute;
        background: var(--accent);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        padding-top: 60px;
        transition: 0.5s ease;

    }
    .nav-links ul{
        flex-direction: column;
        gap: 0;
        padding: 30px;
    }
    .nav-links ul li{
        margin: 15px 0;
    }
    .nav-links ul li a{
        color: #fff;
        font-size: 18px;
    }
  nav .fa-solid{
    display: block;
    color: #000;
    font-size: 22px;
    cursor: pointer;
  }
}

.hero{
    height: var(--hero-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url('/image/mount-kilimanjaro-huts.webp') center/cover no-repeat;
}
.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.hero .cta-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero .cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* ROUTE OVERVIEW*/
.overview {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.overview h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    text-align: center;
}

.fact {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.fact strong {
    display: block;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* DAY-BY-DAY ITINERARY */

.itinerary {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.itinerary h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.accordion {
    display: block;
}

.accordion-item {
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
}

.accordion-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.accordion-toggle:hover {
    background: #f5f5f5;
}

.accordion-panel {
    display: none;
    padding: 18px;
    border-top: 1px solid #eee;
}

.accordion-panel.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-6px);}
    to {opacity: 1; transform: translateY(0);}
}
 /* Highlights Section */
.highlights {
    background: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.highlights h2 {
    font-size: 26px;
    color: #222;
    margin-bottom: 20px;
}

.highlights p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Price & Inclusions */
.pricing {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.pricing h2 {
    text-align: center;
    color: #222;
    font-size: 26px;
    margin-bottom: 10px;
}

.price-box {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 24px;
}

.inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.inclusions h3 {
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.inclusions ul {
    padding-left: 18px;
    color: #555;
}

.inclusions li {
    margin-bottom: 6px;
}

@media (max-width: 700px) {
    .inclusions {
      grid-template-columns: 1fr;
    }
}

 /* Booking CTA */
.cta {
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
                url('/image/mountain-kilimanjaro-clouds.webp') center/cover no-repeat;
    text-align: center;
    color: #fff;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta button:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* Form for Booking */
.booking-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content{
    background: #fff;
    color: #222;
    border-radius: var(--radius);
    padding: 2rem;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.4s ease;
    position: relative;
}
.close-modal{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* form layout */
.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.form-group{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group label{
    font-weight: 600;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea{
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color: var(--accent);
}
.error-message{
    color: #d33;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}
/* Button */
.submit-btn{
    margin-top: 10px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-btn:hover{
    background-color: var(--accent-dark);
}

/* Fade animation */
@keyframes fadeIn{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* respond */
@media (max-width:700px){
    .form-row{
        flex-direction: column;
    }
}
/* Footer */
.site-footer{
    background: #b9b5b5;
    color: #000;
    font-family: 'Arial', sans-serif;
    padding: 4rem 2rem 2rem;

}
.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand{
    max-width: 300px;
}
.footer-logo{
    max-width: 160px;
    margin-bottom: 1rem;
}
.footer-brand p{
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}
/* link section */
.footer-links h3{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
}
.footer-links ul{
    list-style: none;
    padding: 0;
    margin: o;
}
.footer-links li{
    margin-bottom: 0.5rem;
}
.footer-links a{
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}
.footer-links a:hover{
    color: #F26B1D;
}

/* contact */
.footer-contact h3{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
}
.footer-contact p{
    margin: 0.3rem 0;
    color: #333;
}
.footer-contact .email{
    display: block;
    margin: 0.5rem 0 1rem;
    color: #f26b1d;
    text-decoration: none;
    font-weight: bold;
}
.footer-contact .email:hover{
    text-decoration: none;
}
/* Social Icons */
.social-icons{
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.social-icons a img{
    width: 26px;
    height: 26px;
    filter: grayscale(100%);
    transition: 0.3s;
}
.social-icons a img:hover{
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}
/* Bottom */

.footer-bottom{
    text-align: center;
    border-top: 1px solid #000;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #000;
}
.footer-bottom p{
    margin: 0.3rem 0;
}
.plann-btn{
    display: inline-block;
    background: var(--accent);
    text-decoration: none;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.plann-btn:hover{
    background: var(--accent-dark);
    transform: translateY(-3px);
}