
:root {
    --primary-color: #5b3a16;
    --secondary-color: #c9971c;
    --accent-color: #ecb53c;
    --dark-color: #171717;
    --text-color: #343434;
    --text-muted: #6f6f6f;
    --white: #ffffff;
    --light-bg: #faf7f1;
    --section-bg: #f5efe4;
    --border-color: #eadfcb;
    --shadow-sm: 0 8px 24px rgba(22, 18, 13, 0.06);
    --shadow-md: 0 14px 36px rgba(22, 18, 13, 0.10);
    --shadow-lg: 0 28px 70px rgba(22, 18, 13, 0.18);
    --radius-lg: 28px;
    --transition: all 0.3s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background: var(--white);
    line-height: 1.7;
    padding-top: 132px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 90px 0; }
.section-soft { background: var(--light-bg); }
.section-title { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 12px; font-weight: 700; }
.section-subtitle { color: var(--text-muted); max-width: 720px; margin: 0 auto 42px; }
.text-brand { color: var(--primary-color); }
.text-gold { color: var(--secondary-color); }
.text-muted-custom { color: var(--text-muted); }

.custom-navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,151,28,0.14);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    padding: 12px 0;
}
.custom-navbar.scrolled { box-shadow: var(--shadow-md); padding: 8px 0; }
.logo-img { height: 66px; width: auto; display: block; }
.navbar .nav-link { color: var(--dark-color) !important; font-weight: 600; padding: 10px 12px !important; white-space: nowrap; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary-color) !important; }
.navbar .dropdown-menu { border: none; border-radius: 18px; padding: 10px 0; min-width: 220px; box-shadow: var(--shadow-md); }
.navbar .dropdown-item { padding: 10px 18px; font-weight: 600; }
.navbar .dropdown-item:hover { background: var(--light-bg); color: var(--primary-color); }
.btn-brand-nav, .btn-brand, .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #7a4f1f);
    color: var(--white); border: none; border-radius: 999px; padding: 12px 24px; font-weight: 700; box-shadow: var(--shadow-sm);
}
.btn-brand-nav:hover, .btn-brand:hover, .btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-brand {
    border: 2px solid rgba(255,255,255,0.75); color: var(--white); border-radius: 999px; padding: 12px 24px; font-weight: 700;
}
.btn-outline-brand:hover { background: var(--white); color: var(--primary-color); }

.home-hero {
    position: relative;
    padding: 110px 0 92px;
    background: url('../images/hero-safari.jpg') center center / cover no-repeat;

    overflow: hidden;
}
.home-hero::after {
    content: ""; position: absolute; inset: auto 0 0 0; height: 120px;
    background: linear-gradient(to bottom, rgba(250,247,241,0), rgba(250,247,241,1));
}
.home-hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.14); color: #fff3d4; border: 1px solid rgba(255,255,255,0.16);
    padding: 10px 16px; border-radius: 999px; font-weight: 700; margin-bottom: 20px;
}
.home-hero-title { font-size: clamp(2.6rem, 5vw, 5.5rem); line-height: 0.98; color: var(--white); margin-bottom: 18px; max-width: 760px; }
.home-hero-text { font-size: 1.12rem; color: rgba(255,255,255,0.92); max-width: 690px; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-search-card {
    background: rgba(255,255,255,0.97); border-radius: 30px; padding: 32px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.65);
}
.hero-search-card h3 { font-size: 2.1rem; margin-bottom: 8px; }
.hero-search-card p { color: var(--text-muted); }
.hero-search-card .form-control, .hero-search-card .form-select {
    min-height: 56px; border-radius: 16px; border: 1px solid #ddd7cc; padding-inline: 16px;
}
.hero-stats { padding: 22px 0 0; position: relative; margin-top: -10px; }
.stat-box { background: var(--white); border-radius: 24px; padding: 22px 16px; box-shadow: var(--shadow-sm); height: 100%; }
.stat-box h3 { font-size: 2.4rem; margin-bottom: 6px; }
.stat-box p { margin: 0; font-weight: 600; color: var(--text-muted); }

.card, .feature-card, .testimonial-card, .contact-card, .info-card, .booking-card {
    border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: var(--white); overflow: hidden; transition: var(--transition);
}
.card:hover, .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-img-top { height: 250px; object-fit: cover; }
.card-body { padding: 24px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.card-meta i { color: var(--secondary-color); }
.price-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
    background: var(--light-bg); color: var(--primary-color); font-weight: 800; font-size: 14px;
}
.feature-icon {
    width: 68px; height: 68px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary-color); background: rgba(201,151,28,0.12); margin-bottom: 18px;
}
.testimonial-card, .contact-card, .info-card, .booking-card { padding: 30px; }
.testimonial-user { display: flex; gap: 14px; align-items: center; }
.testimonial-user img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }
.quote { margin-bottom: 18px; }

.page-hero {
    position: relative; min-height: 340px; display: flex; align-items: flex-end; padding: 126px 0 46px;
    background: linear-gradient(135deg, rgba(91,58,22,.92), rgba(42,62,38,.82)); overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-custom { display: flex; flex-wrap: wrap; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.86); margin-bottom: 16px; }
.breadcrumb-custom a { color: #fff; }
.page-hero .hero-kicker { color: #f5e0b0; font-weight: 700; margin-bottom: 8px; }
.page-hero .hero-title { color: var(--white); font-size: clamp(2.2rem, 4vw, 4.4rem); margin-bottom: 14px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; color: #fff; font-weight: 600; }
.hero-meta i { color: var(--secondary-color); }

.form-control, .form-select, textarea { min-height: 50px; border-radius: 14px; border: 1px solid #ddd8cb; box-shadow: none !important; }
.form-control:focus, .form-select:focus, textarea:focus { border-color: var(--secondary-color); }
.form-label { font-weight: 700; margin-bottom: 8px; }

.footer { background: #1f150b; color: rgba(255,255,255,0.82); }
.footer-brand-text { max-width: 360px; }
.footer h5 { color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.82); }
.footer-links a:hover { color: var(--accent-color); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
}
.social-links a:hover { background: var(--secondary-color); color: var(--dark-color); }

.cta-box {
    background: linear-gradient(135deg, #4e3214, #765021);
    color: var(--white);
    border-radius: 28px;
    padding: 42px 34px;
    box-shadow: var(--shadow-md);
}
.cta-box h2, .cta-box p { color: var(--white); }

.whatsapp-float, .scroll-top-btn {
    position: fixed; right: 18px; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 999;
}
.whatsapp-float { bottom: 18px; background: #25d366; color: #fff; font-size: 28px; }
.scroll-top-btn {
    bottom: 84px; border: none; background: var(--primary-color); color: #fff; opacity: 0; visibility: hidden; transition: var(--transition);
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }


.site-topbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1035;
    background:linear-gradient(90deg,#4e3214,#7a4f1f);
    color:#fff5df;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,0.12);
}
.site-topbar .container{min-height:40px; padding-top:8px; padding-bottom:8px;}
.site-topbar .topbar-info,.site-topbar .topbar-cta{display:flex; align-items:center;}
.site-topbar a{color:#fff5df;}
.site-topbar a:hover{color:#ffffff;}
.topbar-info i,.topbar-link i{color:#ecb53c; margin-right:6px;}
.topbar-pill{
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.16);
    padding:5px 12px;
    border-radius:999px;
    font-weight:700;
}
.topbar-link{font-weight:700;}
.navbar.fixed-top.custom-navbar{top:40px !important;}
.page-hero.has-image{
    background-size:cover;
    background-position:center;
}
.home-hero{
    background: linear-gradient(100deg, rgba(26,18,10,0.78), rgba(26,18,10,0.40)), url('../images/hero-safari.jpg.jpg') center/cover no-repeat;
}
@media (max-width: 991.98px){
    body{padding-top:150px;}
    .site-topbar .container{padding-top:6px; padding-bottom:6px;}
}
@media (max-width: 767.98px){
    body{padding-top:174px;}
    .site-topbar{font-size:12px;}
    .navbar.fixed-top.custom-navbar{top:52px !important;}
    .logo-img{height:54px;}
}
