/* Variables */
:root{
    --accent:#f26b1d;
    --accent-dark:#a12a20;
    --light-gray:#f8f8f8;
    --radius:12px;
    --hero-height:88vh;
    --container:1200px;
    --text:#222;
    --muted:#666;
    --max-width:1100px;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset / base */
  *{ 
    box-sizing: border-box;
}
  html,body{
    height:100%;
}
  body{
    margin:0;
    color:var(--text);
    background:#fff;
    line-height:1.5;
    font-family: var(--font-family);
}
  
/* Utility container */
.container{
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
}
  
/* Header */
.site-header{
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 20px;
}
.site-header .logo img{
    height:100px;
    display:block;
}
  
/* Nav */
.nav-links{
    flex:1;
    text-align:right;
}
.nav-links ul{
    display:flex;
    justify-content:flex-end;
    gap:20px;
    margin:0;
    padding:0;
}
.nav-links li{
    list-style:none;
}
.nav-links a{
    color:#000;
    text-decoration:none;
    font-weight:500;
    font-size:16px;
}
.nav-links li::after{
    content:'';
    width:0;
    height:2px;
    background:var(--accent);
    display:block;
    margin:auto;
    transition:0.4s ease;
}
.nav-links li:hover::after{
    width:100%;
}
nav .fa-solid{
    display:none;
}
  
/* Mobile nav */
@media (max-width:600px){
    .nav-links{
        position:absolute;
        right:-200px;
        top:0;
        width:200px;
        height:100vh;
        background:var(--accent);
        padding-top:60px;
        transition:0.4s;
        text-align:left;
    }
    .nav-links ul{
        flex-direction:column;
        padding:30px;
        gap:0;
    }
    .nav-links a{
        color:#fff;
        font-size:18px;
    }
    nav .fa-solid{
        display:block;
        font-size:22px;
        color:#000;
        cursor:pointer;
    }
  
}
.overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:1000;
}
  
/* HERO */
.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.48), rgba(0,0,0,0.48)), url('/image/zanzibar-pazuri.webp') center/cover no-repeat;
}
.hero-content{
    max-width:900px;
    padding:24px;
}
.hero-content h1{
    margin:0 0 12px;
    font-size:clamp(1.6rem,4vw,2.6rem);
    font-weight:700;
    text-shadow:0 8px 24px rgba(0,0,0,0.45);
}
.hero .lead{
    margin:0 0 18px;
    color:rgba(255,255,255,0.92);
    font-size:1.05rem;
}
  
/* Hero CTA */
.hero-cta{
    display:flex;
    gap:14px;
    justify-content:center;
    align-items:center;
}
.book-btn{
    background:var(--accent);
    color:#fff;
    border:0;
    padding:12px 22px;
    border-radius:28px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 10px 28px rgba(242,107,29,0.12);
    transition: transform .12s ease, background .18s ease;
}
.book-btn:hover{
    transform: translateY(-3px);
    background:var(--accent-dark);
}
.cta-btn{
    display:inline-block;
    background:transparent;
    border:2px solid rgba(255,255,255,0.14);
    color:#fff;
    padding:10px 18px;
    border-radius:24px;
    font-weight:600;
    text-decoration:none;
}
.cta-btn:hover{
    background:rgba(255,255,255,0.06);
}
  
/* Overview */
.overview{
    padding:56px 0;
    background:transparent;
}
.section-title{
    text-align:center;
    font-size:26px;
    margin:0 0 10px;
    font-weight:700;
}
.section-sub{
    text-align:center;
    color:var(--muted);
    max-width:760px;
    margin:0 auto 28px;
}
.facts-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:16px;
    max-width:980px;
    margin:20px auto;
}
.fact{
    background:var(--light-gray);
    padding:18px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.04);
}
.fact strong{
    display:block;
    color:var(--accent);
    margin-bottom:6px;
}
  
/* Itinerary / Accordion */
.itinerary{
    padding:36px 0;
}
.accordion{
    max-width:var(--max-width);
    margin:0 auto;
}
.accordion-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:12px;
    overflow:hidden;
    box-shadow:0 8px 26px rgba(0,0,0,0.04);
}
.accordion-toggle{
    width:100%;
    text-align:left;
    background:transparent;
    border:0;
    padding:18px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size: medium;
    font-weight:600;
}
.accordion-toggle:hover{
    background:#fafafa;
}
.accordion-panel{
    display:none;
    padding:18px;
    border-top:1px solid #eee;
}
.accordion-panel.open{
    display:block;
    animation: fadeIn .28s ease;
}
  
/* Highlights */
.highlights{
    background:var(--light-gray);
    padding:36px 0;
}
.highlights-list{
    max-width:900px;
    margin:0 auto;
    color:#444;
    line-height:1.6;
}
  
/* Lodging levels */
.lodging-levels{
    padding:64px 0;
    background:#fff;
}
.lodging-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:24px;
    margin-top:32px;
}
.lodging-card{
    background:var(--light-gray);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
    text-align:center;
    padding-bottom:20px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.lodging-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 32px rgba(0,0,0,0.08);
}
.lodging-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}
.lodging-card h3{
    margin:16px 0 6px;
    color:var(--accent-dark);
    font-weight:700;
}
.price-tag{
    color:var(--accent);
    font-weight:600;
    margin-bottom:10px;
}
.lodging-card ul{
    text-align:left;
    list-style:none;
    padding:0 24px;
    margin:0 0 20px;
    color:#444;
}
.lodging-card ul li{
    padding-left:20px;
    position:relative;
    margin-bottom:8px;
}
.lodging-card ul li::before{
    content:"•";
    color:var(--accent);
    position:absolute;
    left:0;
}
.lodging-card .book-btn{
    padding:10px 20px; font-size:.95rem; }
  
/* Pricing & inclusions */
.pricing{
    padding:48px 0;
}
.price-row{
    max-width:var(--max-width);
    margin:0 auto;
    display:grid;
    gap:20px;
}
.price-box{
    font-size:1.25rem;
    color:var(--accent);
    font-weight:700;
    text-align:center;
    margin-bottom:8px;
}
.inclusions-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.inclusions-grid h3{
    color:var(--accent-dark);
}
.inclusions-grid ul{
    color:#444;
    padding-left:18px;
}
  
@media (max-width:700px){
    .inclusions-grid{
        grid-template-columns:1fr;
        padding:18px;
    }
}
  
/* CTA section */
.cta{
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/image/zanzibar-sunset.webp') center/cover fixed no-repeat;
    color:#fff;
    text-align:center;
    padding:120px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.cta h2{
    font-size:clamp(2rem,5vw,2.6rem);
    margin-bottom:24px;
    font-weight:700;
    text-shadow:0 3px 10px rgba(0,0,0,0.4);
}
.cta button{
    background:var(--accent);
    color:#fff;
    border:0;
    padding:16px 36px;
    border-radius:30px;
    font-size:1.1rem;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 5px 14px rgba(0,0,0,0.3);
    transition: all .3s ease;}
.cta button:hover{
    background:var(--accent-dark);
    transform:translateY(-4px);
}
  
/* Booking modal/form */
.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:10000;
}
.booking-modal .modal-content{
    background:#fff;
    padding:24px;
    border-radius:12px;
    width:92%;
    max-width:720px;
    position:relative;
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}
.close-modal{
    position:absolute;
    top:14px;
    right:18px;
    font-size:22px;
    color:#333;
    cursor:pointer;
}
.form-row{
    display:flex;
    gap:16px;
    margin-bottom:12px;
}
.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}
.form-group label{
    font-weight:700;
    margin-bottom:6px;
}
.form-group input, .form-group textarea{
    padding:10px;
    border-radius:8px;
    border:1px solid #dcdcdc;
    font-size:15px;
}
.error-message{
    color:#d33;
    font-size:13px;
    margin-top:6px;
    display:none;
}
.submit-btn{
    background:var(--accent);
    color:#fff;
    border:0;
    margin:10px;
    padding:12px 18px;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
}
.submit-btn:hover{
    background:var(--accent-dark);
}
  
/* 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);
}
  