/* Core Styling */
:root {
    --primary-font: 'Montserrat', sans-serif !important; /* For Headings */
    --secondary-font: 'Open Sans', sans-serif !important; /* For Body Text */
}

h1, h2, h3, .btn {
    font-family: var(--primary-font) !important;
}

body {
    font-family: var(--secondary-font) !important;
}




:root {
    --primary: #4C5E5D; /* Dark Slate Green */
    --accent: #bfa04a;  /* Gold Theme */
    --text: #333;
    --light: #f4f4f4;
    --primary-font: 'Montserrat', sans-serif !important; /* For Headings */
    --secondary-font: 'Open Sans', sans-serif !important; /* For Body Text */

}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header */
header { background: white; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.top-info { background: var(--primary); color: white; font-size: 12px; padding: 5px 0; }
.top-info .container { display: flex; justify-content: space-between; color: white;}
.top-info.

nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo img { 
    height: 100px; 
    width: 100px;

}
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu a { text-decoration: none; color: var(--primary-green);;font-weight: 600; font-size: 14px; }
.btn-enquire { background: var(--primary); color: white; padding: 10px 20px; text-decoration: none; border-radius: 1px; font-weight: bold; font-size: 13px; }

/* Hero Video Section */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.custom-link{
    text-decoration: none;
    text-decoration: inherit;
    /*color: #37452B;*/
    text-decoration: bold;
    color: #002148;
    border-radius: 0px; 

    box-shadow: 0px 1.5px 0px 0px #37452B; /*#321910*/;
}

.intro container{
color: var(--primary-green);
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 0; }
.hero-content { z-index: 1; max-width: 800px; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.5rem; }

/* Feature Grid */
.intro { padding: 80px 0; text-align: center; }
.intro h2 { font-size: 2.5rem; margin-bottom: 20px; text-align: center; font-family: 'Montserrat', sans-serif; margin-bottom: 10px;  color: var(--primary); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.feature {padding:30px; color: whitesmoke !important; background: #4c5e5e !important; border: 1px solid #eee; border-radius: 8px !important; transition: 0.3s;box-shadow: 0 10px 30px #4c5e5e; }
.feature:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* Ways To Travel (Grid) */
.ways-to-travel { padding-bottom: 80px; }
.ways-to-travel h3 { font-size: 2rem; margin-bottom: 30px; text-align: center; }
.travel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.travel-card { position: relative; height: 300px; border-radius: 8px; overflow: hidden; }
.travel-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.travel-card:hover img { transform: scale(1.1); }
.travel-card .label { position: absolute; bottom: 0; left: 0; width: 100%;height: 20%; background: rgba(76, 94, 93, 0.9); color: white; padding: 10px; text-align: center; font-weight: bold; }

/* Pricing Grid */
/* Container Heading */
.our-trips h3 { 
    font-size: 2.5rem; 
    text-align: center; 
    margin-bottom: 40px;
    color: #2d3e50;
    font-family: 'Arial', sans-serif;
}

/* Grid Layout - Responsive */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    padding: 20px;
}

/* Trip Card - The "Wild View" look */
.trip-item { 
    border: none; 
    border-radius: 15px; 
    overflow: hidden; 
    background: #ffffff !important; /* Changed from dark to clean white */
    height: auto !important; 
    position: relative;
     box-shadow: 0 10px 30px #4c5e5e;
    
    transition: all 0.3s ease-in-out;
}

.trip-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image Styling */
.trip-item img { 
    width: 100%; 
    height: 240px !important; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.trip-item:hover img {
    transform: scale(1.05);
}

/* Content Area */
.trip-info { 
    padding: 25px 20px;
    text-align: left; /* Wild View uses left alignment */
    background-color: #4c5e5e !important;


}

/* The "Days" Badge */
.trip-info .days { 
    font-size: 11px; 
    color: #ffffff !important;
    font-weight: 800;
    border-radius: 4px; 
    background: #f8941e; /* Signature Safari Orange */
    text-transform: uppercase;
    padding: 5px 10px;
    letter-spacing: 1px;
    display: inline-block;
}

/* Title Styling */
.trip-info h4 { 
    margin: 15px 0 10px 0;
    padding: 0 !important; /* Removed the 70px left padding */
    font-size: 20px; 
    color: whitesmoke; 
    font-weight: bold; 
    line-height: 1.3;
}

/* Price Styling */
.trip-info .price { 
    color: whitesmoke; /* Matches the badge */
    font-weight: 800; 
    font-size: 1.3rem;
    padding: 0 !important; /* Removed the 90px left padding */
    border-radius: 100px !important;
    display: block;
    margin-top: 10px;
    padding-left: 1% !important;
}



/* Footer */
footer { background: #222; color: white; padding: 60px 0; margin-top: 80px; text-align: center; }
.footer-cta { margin-bottom: 40px; }
.footer-cta h3 { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #444; padding-top: 20px; font-size: 13px; color: #888; }

/* Responsive */
@media (max-width: 900px) {
    .travel-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .nav-menu { display: none; } /* Simplified for mobile */
}





/* Layout Variables */
:root {
  --bg-light-grey: #cfd4db;
  --bg-dark-slate: #4c5e5d;
  --gold: #bfa04a;
}

/* Mega Menu Position */
.has-dropdown { position: relative; }

/* ==========================================
   MEGA MENU - PRECISE ANCHORING
   ========================================== */

/* Ensure the parent nav item is the reference point */
.nav-item.has-dropdown {
    position: relative !important;
}

/* Base Mega Menu Style */
.mega-menu {
    position: absolute !important;
    top: 100%; /* Directly below the link */
    width: 950px !important;
    max-width: 95vw; 
    background: #cfd4db !important; 
    display: none; 
    padding: 30px;
    z-index: 99999 !important; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-radius: 0 0 8px 8px;
    transform: none !important; /* No horizontal shifting */
}

/* 1. ALL TRIPS: Align starting from the LEFT of the link */
.nav-item:first-child .mega-menu {
    left: 0 !important;
    right: auto !important;
}

/* 2. DISCOVER TANZANIA: Align finishing at the RIGHT of the link */
/* This makes it drop down exactly from under the link without shifting off-screen */
.nav-item.has-dropdown:nth-last-child(2) .mega-menu {
    right: 0 !important; 
    left: auto !important;
}

/* Ensure visibility on hover */
.has-dropdown:hover > .mega-menu {
    display: block !important;
}

/* Content Layout */
.mega-menu-content {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
}

/* Fix for inner card text and links */
.mega-menu .menu-card span, 
.mega-menu .side-text {
    color: #1a3015 !important;
    font-size: 13px;
    font-weight: 700;
}

/* ==========================================
   TABLET FIX (Prevent clipping on 1024px screens)
   ========================================== */
@media screen and (max-width: 1200px) {
    .mega-menu {
        width: 850px !important; /* Shrink slightly for smaller desktops */
    }
}

/* ==========================================
   MOBILE RESET (Keep Accordion Logic)
   ========================================== */
@media screen and (max-width: 1024px) {
    .mega-menu {
        position: static !important;
        width: 100% !important;
        display: none !important; 
        padding: 0 !important;
        box-shadow: none !important;
    }
}

/* Left Grid Styling */
.main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  flex: 3;
}

.menu-card {
  background: white;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: bold;
}

.menu-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.menu-card span {
  display: block;
  padding: 8px;
}

/* Special Request Card */
.request-card {
  background: var(--bg-dark-slate);
  color: var(--gold);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-inner em {
  display: block;
  font-family: serif;
  font-style: italic;
  font-size: 18px;
}

.p {
    color: #4c5e5e;
}
/* Sidebar Styling */
.sidebar {
  flex: 1;
  background: var(--bg-dark-slate);
  padding: 20px;
  color: white;
}

.sidebar h3 {
  font-size: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
  padding-bottom: 10px;
}

.side-item {
  display: flex;
  align-items: center;
  background: white;
  margin-bottom: 10px;
 color: var(--primary-green) !important;
  height: 60px;
}

.side-item img {
  width: 60px;
  height: 100%;
  object-fit: cover;
}

.side-text {
  padding-left: 15px;
  color: var(--primary-green) !important;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive: Collapse to 1 column on mobile */
@media (max-width: 900px) {
  .mega-menu { width: 95vw; }
  .mega-menu-content { flex-direction: column; }
  .main-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Color Variables based on your brand */
:root {
    --brand-green: #4c5e5d;
    --brand-gold: #fbb034;
}

.site-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* Icons Styling */
.mobile-contacts {
    display: flex;
    gap: 20px;
}

.icon-link {
    font-size: 20px;
    color: var(--brand-green);
    text-decoration: none;
}

/* Centered Logo */

/* Circular Hamburger Menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    gap: 4px;
}

.bar {
    width: 18px;
    height: 2px;
    background-color: var(--brand-green);
    display: block;
}

/* Mobile Nav Slide-down (Initially hidden) */
.mobile-nav {
    display: none; /* Toggle this with JS */
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

/* Mobile Menu Container */
.mobile-nav-content {
    display: none; /* Hidden by default */
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100%; /* Sits right under the header */
    left: 0;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Show menu when JS adds the 'active' class */
.mobile-nav-content.active {
    display: flex;
}

.mobile-nav-content a {
    padding: 15px 25px;
    text-decoration: none;
    color: #4c5e5d; /* Brand Green */
    font-weight: bold;
    border-bottom: 1px solid #f5f5f5;
}

/* Nested Menu Styling */
.nested-toggle {
   padding: 10px 7px;
  align-content: margin-right;
  
  cursor: pointer;
  display: none;
  animation-name: inherit;
  border-radius: 5px;
  color: #FDC57E;
}







/* Container for the mobile dropdown */
.mobile-nav-content {
    display: none; /* Controlled by 'active' class in JS */
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-content.active {
    display: flex;
}

/* Base style for links and buttons */
.mobile-nav-content a, 
.nested-toggle {
    padding: 15px 25px;
    text-decoration: none;
    color: #4c5e5d; /* Brand Slate Green */
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

/* Accordion Styling */
.mobile-nested-wrapper {
    width: 100%;
    overflow: hidden;
}

.nested-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* The Smooth Animation Layer */
.nested-items {
    max-height: 0; /* Initially collapsed */
    overflow: hidden;
    background: #f9f9f9;
    flex-direction: column;
    display: flex; /* Kept as flex for vertical alignment */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing */
}

/* Active state triggered by JavaScript */
.nested-items.open {
    max-height: 500px; /* High enough to contain all links */
}

.mobile-nav-content {
    display: none; 
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000;
    /* Add this for a fade-out effect when scrolling closes it */
    transition: all 0.3s ease-in-out; 
}

/* Container for the mobile dropdown */
.mobile-nav-content {
    display: none; /* Controlled by 'active' class in JS */
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* Centers all direct link items */
    text-align: center;
}

.mobile-nav-content.active {
    display: flex;
}

/* Base style for links and buttons - UPDATED TO CENTER */
.mobile-nav-content a, 
.nested-toggle {
    padding: 15px 25px;
    text-decoration: none;
    color: #4c5e5d; /* Brand Slate Green */
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
    display: block; /* Ensures links take full width for centering */
}

/* Accordion Styling */
.mobile-nested-wrapper {
    width: 100%;
}

.nested-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: center; /* Centers text and arrow together */
    align-items: center;
    cursor: pointer;
    gap: 10px; /* Space between text and arrow */
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* For Desktop/Large Screens (wider than 1024px) */
@media screen and (min-width: 1025px) {
    /* 1. Hide the mobile-specific dropdown entirely */
    #mobile-menu-dropdown {
        display: none !important;
    }

    /* 2. Hide the mobile hamburger button */
    .menu-toggle-btn {
        display: none !important;
    }

    /* 3. Ensure the desktop navigation menu is visible and horizontal */
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        color: var(--primary-green) !important;
        align-items: center;
        gap: 20px;
    }

    /* 4. Ensure the Enquire Now button is visible again */
    .btn-enquire {
        display: inline-block !important;
    }
}

/* Updated Mobile View (Screens 1024px and smaller) */
@media screen and (max-width: 1024px) {
    /* Hide desktop nav elements */
    .nav-menu, .btn-enquire {
        display: none !important;
    }

    /* Show mobile hamburger */
    .menu-toggle-btn {
        display: block !important;
    }

    /* Keep all mobile menu links centered */
    .mobile-nav-content {
        text-align: center;
        display: none; /* Controlled by .active class */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10000;
        background: #ffffff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .mobile-nav-content.active {
        display: flex;
    }

    .nested-toggle {
        justify-content: center; /* Ensures centered alignment on mobile */
    }
}

/* The Smooth Animation Layer */
.nested-items {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    flex-direction: column;
    display: flex;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center; /* Centers nested links */
}

.nested-items.open {
    max-height: 500px;
}

/* Indent sub-items and keep them centered */
.nested-items a {
    padding: 12px 250px !important;
    font-size: 18px;
    font-weight: normal;
    color: #4c5e5e;
    border-radius: 1px;
background: whitesmoke;
box-shadow: 0px 0px 3px 0px #4c5e5e;
    font-weight: 600;
    padding-bottom: 500px !important;
   
    border-bottom: 1px solid #4c5e5e;
}

.mobile-nav-content.active {
    display: flex;
    /* Optional: prevent the background from being too distracting */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Indent sub-items for visual hierarchy */
.nested-items a {
    padding: 12px 45px !important;
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid #eeeeee;
}


.nested-items {
    display: none; /* Hidden until toggled */
    flex-direction: column;
    background: #f9f9f9;
}

.nested-items a {
    padding-left: 45px !important; /* Indent sub-links */
    font-size: 14px;
    font-weight: normal;
}

.enquire-now-mobile {
    background: #ffb400; /* Gold */
    color: white !important;
    text-align: center;
}

/* Responsive: Hide Desktop Menu on Mobile */
@media (max-width: 1024px) {
    .nav-menu, .btn-enquire {
        display: none !important;
        color: var(--primary-green);
    }
    .menu-toggle {
        display: block !important;
    }
}

.mobile-nav li a {
    display: block;
    padding: 15px 0;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

/* Hide these on Desktop */
@media (min-width: 1025px) {
    .mobile-contacts, .menu-toggle {
        display: none;
    }
}

.section-title h2 {
  margin-bottom: 13px;
  color: var(--primary-green);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  } /*
}


/* Ensure the main dropdown is hidden and can scroll if long */
.mobile-nav-content {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 100vh; /* Prevents menu from going off screen */
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-content.active {
    display: flex;
}

/* Styling for the Discover Tanzania accordion in mobile */
.mobile-nested-wrapper {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
}

.nested-toggle {
    
}

.nested-items {
    display: none; /* Hidden until toggled */
    background: #f9f9f9;
    flex-direction: column;
}

.nested-items.open {
    display: flex;
}

.nested-items a {
    padding: 12px 40px !important; /* Indent nested items */
    font-size: 14px;
    font-weight: normal;
}


/* Brand Styles and Reset */
:root {
    --brand-green: #4c5e5d;
    --brand-gold: #bfa04a;
    --text-dark: #333;
    --bg-light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container { width: 92%; max-width: 1200px; margin: auto; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50%; font-size: 2.2rem; color: var(--brand-green); font-family: 'Montserrat', sans-serif; }

/* Sticky Header */
.site-header { background: #fff; border-bottom: 1px solid #eee; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--brand-green); font-weight: 600; font-size: 14px; text-transform: uppercase; transition: 0.3s; }
.nav-links a.active, .nav-links a:hover { color: var(--brand-gold); }

/* Buttons */
.btn-gold { background: var(--brand-gold); color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; display: inline-block; text-transform: uppercase; font-size: 13px; }
.btn-gold:hover { background: var(--brand-green); }

/* Hero Section */
.safari-hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://septsafaris.com/wp-content/uploads/2025/03/Safari.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-overlay h1 { font-size: 3.5rem; font-family: 'Montserrat', sans-serif; text-transform: uppercase; margin-bottom: 10px; }
.hero-overlay p { font-size: 1.3rem; font-weight: 300; max-width: 700px; margin: auto; }

/* Card Grid Layout */
.safari-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.safari-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.3s; }
.safari-card:hover { transform: translateY(-5px); }

.img-container { height: 230px; overflow: hidden; }
.safari-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.safari-card:hover img { transform: scale(1.1); }

.card-text { padding: 25px; }
.card-text h3 { color: var(--brand-green); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; font-size: 1.3rem; }
.card-text p { font-size: 0.95rem; color: #666; margin-bottom: 15px; }
.read-more { color: var(--brand-gold); text-decoration: none; font-weight: bold; font-size: 14px; text-transform: uppercase; }

/* CTA Section */
.cta-banner { background: var(--brand-green); color: white; padding: 70px 0; text-align: center; }
.cta-banner h2 { margin-bottom: 15px; font-family: 'Montserrat', sans-serif; }
.cta-banner p { margin-bottom: 30px; opacity: 0.9; max-width: 600px; margin: 0 auto 30px auto; }

/* Footer */
.site-footer { background: #222; color: #888; padding: 40px 0; text-align: center; font-size: 13px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Hide desktop nav on mobile */
    .hero-overlay h1 { font-size: 2.2rem; }
    .hero-overlay p { font-size: 1rem; padding: 0 20px; }
    .section { padding: 50px 0; }
}


/* KILIMANJARO PAGE */

/* Variables & Reset */
:root {
    --brand-green: #4c5e5d;
    --brand-gold: #bfa04a;
    --bg-light: #f4f5f7;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: white;
}

.container { width: 92%; max-width: 1200px; margin: auto; }

/* Sticky Header */
.site-header { background: #fff; padding: 18px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
nav { display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--brand-green); font-weight: 700; font-size: 14px; text-transform: uppercase; }
.nav-links a.active { color: var(--brand-gold); }

/* Buttons */
.btn-gold { background: var(--brand-gold); color: white; padding: 12px 28px; text-decoration: none; border-radius: 4px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; font-size: 13px; text-transform: uppercase; }
.btn-gold:hover { background: var(--brand-green); }

/* Hero Section (Match Original Page Header) */
.climb-hero { 
    background-color: var(--bg-light); 
    padding: 60px 0; border-bottom: 1px solid #ddd;
     height: 100vh;
     background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://septsafaris.com/wp-content/uploads/2025/03/Safari.jpg') center/cover;
 }

.climb-hero h1 { color: var(--brand-green); font-family: 'Montserrat', sans-serif; font-size: 3.2rem; font-weight: 700; }

/* Intro */
.intro { padding: 50px 0; font-size: 1.1rem; line-height: 1.8; color: #555; max-width: 1000px; text-align: left; }

/* Route Cards Grid */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 80px; }
.route-card { background: white; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: transform 0.3s; }
.route-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.img-box { height: 230px; overflow: hidden; }
.route-card img { width: 100%; height: 100%; object-fit: cover; }

.route-details { padding: 25px; }
.tag { font-size: 12px; color: #888; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 10px; }
.route-details h3 { color: var(--brand-green); font-family: 'Montserrat', sans-serif; font-size: 1.2rem; margin-bottom: 15px; }
.price { color: var(--brand-gold); font-weight: bold; font-size: 1.2rem; }

/* CTA Banner */
.climb-cta { background: var(--brand-green); color: white; padding: 80px 0; text-align: center; }
.climb-cta h2 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; margin-bottom: 15px; }
.climb-cta p { margin-bottom: 35px; opacity: 0.9; }

/* Footer */
.site-footer { background: #1a1a1a; color: #888; padding: 40px 0; text-align: center; font-size: 13px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .climb-hero h1 { font-size: 2.4rem; }
    .intro { padding: 30px 15px; }
}

/* Core Styling & Variables */
:root {
    --brand-green: #4c5e5d;
    --brand-gold: #bfa04a;
    --text-dark: #333;
    --bg-grey: #f7f8f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: white;
}

.container { width: 92%; max-width: 1200px; margin: auto; }

/* Sticky Header */
.site-header { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--brand-green); font-weight: 700; font-size: 14px; text-transform: uppercase; }
.nav-links a.active { color: var(--brand-gold); }

/* Buttons */
.btn-gold { background: var(--brand-gold); color: white; padding: 12px 25px; border-radius: 4px; font-weight: bold; text-decoration: none; display: inline-block; transition: 0.3s; font-size: 13px; }
.btn-gold:hover { background: var(--brand-green); }

/* Hero Section */
.zanzibar-hero {
    height: 55vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://septsafaris.com/wp-content/uploads/2025/03/Beach.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.zanzibar-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; text-transform: uppercase; margin-bottom: 10px; }
.zanzibar-hero p { font-size: 1.3rem; font-weight: 300; }

/* Intro Section */
.intro { padding: 60px 0 20px; font-size: 1.15rem; max-width: 900px; color: #555; text-align: left; }

/* Activity Grid */
.zanzibar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 40px 0 80px; }
.z-card { border: 1px solid #eee; border-radius: 10px; overflow: hidden; background: white; transition: 0.3s; }
.z-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }

.img-box { height: 240px; overflow: hidden; }
.z-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease-in-out; }
.z-card:hover img { transform: scale(1.1); }

.z-info { padding: 25px; }
.z-info h3 { color: var(--brand-green); font-family: 'Montserrat', sans-serif; margin-bottom: 12px; font-size: 1.3rem; }
.z-info p { font-size: 0.95rem; color: #666; margin-bottom: 20px; }
.btn-text { color: var(--brand-gold); text-decoration: none; font-weight: bold; font-size: 14px; text-transform: uppercase; }

/* CTA Area */
.z-cta { background: var(--brand-green); color: white; padding: 80px 0; text-align: center; }
.z-cta h2 { font-family: 'Montserrat', sans-serif; margin-bottom: 15px; font-size: 2.2rem; }
.z-cta p { margin-bottom: 35px; opacity: 0.9; }

/* Footer */
.site-footer { background: #222; color: #777; padding: 40px 0; text-align: center; font-size: 13px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .zanzibar-hero h1 { font-size: 2.5rem; }
    .zanzibar-hero p { font-size: 1.1rem; padding: 0 15px; }
}


/* Core Styling & Colors */
:root {
    --brand-green: #4c5e5d;
    --brand-gold: #bfa04a;
    --text-dark: #333;
    --bg-grey: #f4f5f7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container { width: 92%; max-width: 1200px; margin: auto; }
.section { padding: 80px 0; }

/* Sticky Header */
.site-header { background: #fff; padding: 18px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--brand-green); font-weight: 700; font-size: 14px; text-transform: uppercase; }
.nav-links a.active { color: var(--brand-gold); }

/* Buttons */
.btn-gold { background: var(--brand-gold); color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; transition: 0.3s; font-size: 13px; text-transform: uppercase; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--brand-green); }
.btn-outline { border: 2px solid white; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; font-weight: bold; font-size: 13px; }
.full-width { width: 100%; }

/* Hero Section */
.contact-hero { background-color: var(--bg-grey); padding: 80px 0; border-bottom: 1px solid #ddd; }
.header-text h1 { color: var(--brand-green); font-family: 'Montserrat', sans-serif; font-size: 3.2rem; font-weight: 700; margin-bottom: 15px; }
.header-text p { font-size: 1.2rem; max-width: 700px; color: #555; margin-bottom: 30px; }
.phone-num { font-size: 1.5rem; font-weight: bold; color: var(--brand-green); margin-right: 20px; }

/* Form and Benefits Layout */
.flex-main { display: flex; gap: 60px; align-items: flex-start; }
.form-area { flex: 1.5; }
.benefits-area { flex: 1; background: var(--bg-grey); padding: 40px; border-radius: 8px; }

.form-area h2, .benefits-area h2 { font-family: 'Montserrat', sans-serif; color: var(--brand-green); font-size: 1.8rem; margin-bottom: 15px; }
.form-area p { margin-bottom: 25px; }

/* Form Elements */
.trip-form input, .trip-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
.contact-prefs { margin-bottom: 20px; }
.contact-prefs label { font-weight: bold; display: block; margin-bottom: 10px; }
.radio-group label { font-weight: normal; margin-right: 15px; display: inline-block; cursor: pointer; }
.form-disclaimer { font-size: 0.85rem; color: #888; margin-bottom: 15px; }

/* Benefit Items */
.benefit-item { margin-bottom: 30px; }
.benefit-item strong { display: block; font-family: 'Montserrat', sans-serif; color: var(--brand-green); font-size: 1.1rem; margin-bottom: 8px; }
.benefit-item p { font-size: 0.95rem; color: #555; }

/* Footer */
.site-footer { background: #1a1a1a; color: white; padding: 60px 0; text-align: center; margin-top: 60px; }
.footer-top h3 { font-family: 'Montserrat', sans-serif; margin-bottom: 10px; }
.footer-top p { margin-bottom: 25px; opacity: 0.8; }
.footer-bottom { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; font-size: 12px; color: #777; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .flex-main { flex-direction: column; }
    .nav-links { display: none; }
    .header-text h1 { font-size: 2.2rem; }
}


/* --- LAZY SCROLL ANIMATION --- */

/* Initial state: Hidden and moved down slightly */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state: Visible and in original position */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Add a slight delay for grid items to appear one by one */
.theme-grid .theme-card:nth-child(2),
.safari-grid .safari-card:nth-child(2),
.pricing-grid .trip-item:nth-child(2) {
    transition-delay: 0.2s;
}

.theme-grid .theme-card:nth-child(3),
.safari-grid .safari-card:nth-child(3),
.pricing-grid .trip-item:nth-child(3) {
    transition-delay: 0.4s;
}



/* --- MOBILE VIEW CUSTOM COLORS (1024px and below) --- */
@media screen and (max-width: 1024px) {
    
    /* 1. Header Background Color */
    header, .site-header, .mobile-header {
        background-color: #4c5e5e !important;
        border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    }

    /* 2. Hamburger Toggler (Circle and Bars) to White Smoke */
    .menu-toggle-btn .circle-border, 
    .hamburger-circle {
        border-color: whitesmoke !important;
    }

    .menu-toggle-btn .line, 
    .hamburger-circle .bar {
        background-color: whitesmoke !important;
    }

    /* 3. Phone and Email Icons to White Smoke */
    .header-icons svg path, 
    .mobile-contacts svg path {
        fill: whitesmoke !important;
    }

    /* 4. Mobile Menu Links to White Smoke */
    .mobile-nav-content, 
    #mobile-menu-dropdown {
        background-color: #4c5e5e !important; /* Matches Header */
    }

    .mobile-nav-content a, 
    .nested-toggle {
        color: whitesmoke !important;
        border-bottom: 1px solid rgba(245, 245, 245, 0.1) !important;
    }

    /* 5. Nested Sub-menu Links to White Smoke */
    .nested-items {
        background-color: rgba(0, 0, 0, 0.1) !important; /* Slightly darker for depth */
    }

    .nested-items a {
        color: #4c5e5e !important;
        border-bottom: 1px solid rgba(245, 245, 245, 0.05) !important;
    }

    /* Arrow icon for nested menu */
    #arrow, .nested-toggle span {
        color: whitesmoke !important;
    }
}



/* Ensure the nested items are prepared for the transition */
.nested-items {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1); /* Matches your requested dark mobile theme */
    display: flex;
    flex-direction: column;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

/* When the JavaScript adds the 'open' class */
.nested-items.open {
    max-height: 500px; /* High enough to show all links */
}

/* Stylize the sub-links to be white smoke as requested */
.nested-items a {
    padding: 12px 25px !important;
    border-bottom: 1px solid rgba(245, 245, 245, 0.05);
   
    font-size: 16px !important;
}

/* --- FOOTER STYLING --- */
.site-footer {
    background-color: #4c5e5e; /* Your Requested Color */
    color: whitesmoke; /* Your Requested Color */
    padding: 60px 0 20px;
    font-family: 'Open Sans', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

/* Gold underline for footer headers */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #bfa04a; /* Your Gold Accent */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a, 
.footer-column .contact-details li {
    color: whitesmoke;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #bfa04a; /* Hovers to Gold */
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
/* --- CRITICAL MOBILE BUTTON FIX --- */
@media screen and (max-width: 1024px) {
    /* 1. Force the section and containers to show */
    .exceptional-cta, 
    .hero-section, 
    .footer-cta {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }




    /* 2. Target the button specifically */
    .footer-cta a.btn-enquire,
    .btn-enquire {
        display: block !important; /* Forces it to override 'none' */
        visibility: visible !important;
        opacity: 1 !important;
        
        /* Layout Fixes */
        margin: 20px auto !important;
        width: 60% !important;
        max-width: 300px;
        text-align: center;
        position: relative;
        z-index: 999;
        
        /* Style Fixes */
        background-color: #bfa04a !important; 
        color: whitesmoke !important;
        padding: 10px 15px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
    }

    /* 3. Fix if it's trapped inside a hidden span */
    .footer-cta span {
        display: block !important;
        width: 100%;
    }
}


.hero-section {
  position: relative;

  width: 100%;
  height: 10%; /* Full viewport height */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column; /* Aligns text in a vertical stack */
  align-items: center;
  justify-content: flex-end; /* Aligns content towards the bottom */
  text-align: center;
  color: white;
  padding-top: 20px;
  padding: 20px;
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 100px;
  font-family: Gravatica; /* Adds space from the bottom */
  background-color: #37452B;
}

.social-links a {
    color: whitesmoke;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #bfa04a;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
}
/* Kulazimisha Section ionekane yote */
.hero-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 80vh !important; /* Inahakikisha urefu unatosha */
    width: 100% !important;
    overflow: visible !important; /* Inaruhusu button isifichwe */
    position: relative !important;
}

/* Kurekebisha maandishi yasizibe button */
.footer-cta h3 {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    margin-bottom: 30px !important;
    padding: 0 15px !important;
    line-height: 1.2 !important;
}

/* LALIZIMISHA BUTTON IONEKANE (CRITICAL) */
.footer-cta .btn {
    display: block !important; /* Inalazimisha iwe block */
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #bfa04a !important; /* Gold */
    color: #ffffff !important;
    padding: 1px 5px !important;
    border-radius: 5px !important;
    font-size: 20px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4) !important;
    z-index: 9999 !important; /* Inakaa mbele ya picha */
    width: fit-content !important;
    height: fit-content !important;
    margin: 0 auto !important;
}

/* Kwenye Simu (Mobile View Fix) */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh !important; /* Inapunguza urefu kidogo kwenye simu */
    }
    
    .footer-cta h3 {
        font-size: 30px !important; /* Maandishi yanapungua kidogo */
    }
    
    .footer-cta .btn {
        width: 50% !important; /* Button inakuwa pana kidogo ili iwe rahisi kugusa */
        padding: 15px 45px !important;
    }
}






/* --- BASE STYLING --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background-color: #25d366;
    color: #FFF !important;
    z-index: 10000;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Tooltip (Inafichwa Desktop) */
.whatsapp-tooltip {
    display: none;
}

/* Desktop View */
@media (min-width: 769px) {
    .whatsapp-float {
        padding: 12px 20px;
        border-radius: 50px;
    }
    .whatsapp-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .whatsapp-content i { font-size: 22px; }
    .desktop-text { font-weight: 700; font-size: 14px;  }
}

/* --- MOBILE VIEW (Icon + Floating Text) --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        bottom: 25px;
        left: 20px;
    }

    .desktop-text { display: none; } /* Ficha text ya pembeni */

    .whatsapp-content i {
        font-size: 32px;
    }

    /* Kibao cha "Chat with us" juu ya icon */
    .whatsapp-tooltip {
        display: block;
        position: absolute;
        top: -45px; /* Inakaa juu ya icon */
        left: 50%;
        transform: translateX(-50%);
        background: #4C5E5D; /* Rangi yako ya kijani/slate */
        color: white;
        padding: 5px 12px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    /* --- HubSpot Form Container --- */
.hs-form-frame {
    background: #ffffff;
    padding: 20px;
}

/* Target the HubSpot wrapper injected by the script */
.hs-form, .hs-form-frame iframe {
    width: 100% !important;
}

/* Style the Inputs and Textareas */
.form-card .hs-input {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #4c5e5e !important;
    border-radius: 5px !important;
    font-family: var(--body-font) !important;
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    background-color: #fdfbf7 !important;
}

/* Focus state for inputs */
.form-card .hs-input:focus {
    outline: none !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 5px rgba(179, 142, 68, 0.3) !important;
}

/* Style the Labels */
.form-card label {
    font-family: var(--heading-font) !important;
    font-weight: 600 !important;
    color: #1a3015 !important;
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
    display: block;
}

/* Style the Submit Button */
.form-card .hs-button {
    background-color: var(--accent-gold) !important;
    color: white !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 5px !important;
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    width: 100% !important; /* Makes it full width */
}

.form-card .hs-button:hover {
    background-color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Error Messages Styling */
.hs-error-msgs label {
    color: #c0392b !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
}

/* Responsive Fix for HubSpot Grid */
@media (max-width: 900px) {
    .hs-form-field {
        width: 100% !important;
    }
}

    /* Ka-mshale kachini ya tooltip */
    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #4C5E5D transparent transparent transparent;
    }
}

/* Animation ya Pulse */
.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); }
}


/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 180px;
    left: 20px;
    background-color: #25d366;
    color: #FFF !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative; /* Muhimu kwa ajili ya label ya simu */
}

.whatsapp-content i { font-size: 22px; }

.desktop-text {
    font-weight: 700;
    font-size: 14px;
    
}

/* Ficha maandishi ya simu ukiwa kwenye desktop */
.mobile-label { display: none; }

/* --- MOBILE VIEW (Icon + Let's Talk Label) --- */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 95px;
        left: 20px;
        padding: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    .desktop-text { display: none; } /* Ficha maandishi ya pembeni */

    .whatsapp-content i {
        font-size: 32px;
        margin: 0;
    }

    /* TENA: Maandishi ya Let's Talk juu ya icon */
    .mobile-label {
        display: block;
        position: absolute;
        top: -45px; /* Inakaa juu ya duara */
        left: 50%;
        transform: translateX(-50%);
        background: #4c5e5e; /* Rangi ya slate ya brand yako */

        color: white;
        padding: 5px 12px;
        border-radius: 5px;
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
        
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    /* Ka-mshale kachini ya maandishi */
    .mobile-label::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #4C5E5D transparent transparent transparent;
    }
}

/* --- ANIMATION (PULSE) --- */
.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.1);
}/* 1. Apply font to the whole site */




.top-info .flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-item i {
    margin-right: 6px;
    color: #d4a017; /* Safari gold color */
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4a017;
}



.contact-item i {
    font-size: 18px;
    margin-right: 8px;
    color: #d4a017;   /* Change to your brand color */
}
.contact-item i {
    color: #ffffff;
}

