/* =============================================
   SAFARI KENYA TRAVEL — Main Stylesheet
   travel.makhety.com
   Stack: Bootstrap 5 + Custom CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green:       #1B3A2D;
  --green-mid:   #2A5240;
  --green-light: #3D6B52;
  --amber:       #C8860A;
  --amber-light: #E09B18;
  --cream:       #FAF7F2;
  --dark:        #111814;
  --text:        #2C2C2C;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;
  --border:      rgba(255,255,255,0.12);
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --radius:      10px;
  --radius-lg:   18px;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { color: var(--text-muted); }

/* ---- NAVBAR ---- */
.navbar-main {
  background: var(--green);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.navbar-brand img { height: 52px; width: auto; }
.navbar-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--amber-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}
.nav-link-main {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem !important;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-link-main:hover,
.nav-link-main.active {
  color: var(--amber-light) !important;
  background: rgba(255,255,255,0.07);
}
.dropdown-menu {
  background: var(--green-mid);
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 230px;
  box-shadow: var(--shadow);
}
.dropdown-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: all 0.18s;
}
.dropdown-item:hover {
  background: var(--green-light);
  color: var(--amber-light);
}
.btn-prenota {
  background: var(--amber);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 1.2rem !important;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  border: none;
}
.btn-prenota:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,134,10,0.35);
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.38);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-content { position: relative; z-index: 2; padding: 6rem 0 4rem; }
.hero-eyebrow {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.btn-hero-primary {
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover {
  background: var(--amber-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,134,10,0.4);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.hero-trust-item i { color: var(--amber-light); font-size: 1.1rem; }
.hero-trust-item strong { color: var(--white); }

/* ---- SECTION GLOBALS ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--green); }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.divider-amber {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* ---- WHY US STRIP ---- */
.why-strip {
  background: var(--green);
  padding: 2.5rem 0;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.why-item i {
  font-size: 1.6rem;
  color: var(--amber-light);
  flex-shrink: 0;
}
.why-item .why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.why-item .why-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

/* ---- SAFARI CARDS ---- */
.safari-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.safari-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}
.safari-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.safari-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.safari-card:hover .safari-card-img img { transform: scale(1.06); }
.safari-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.safari-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.safari-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.safari-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.safari-card-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #F0EDE8;
}
.safari-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.safari-meta-item i { color: var(--amber); font-size: 0.95rem; }
.safari-card-footer {
  padding: 0 1.4rem 1.4rem;
  display: flex;
  gap: 8px;
}
.btn-card-primary {
  flex: 1;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 7px;
  border: none;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-card-primary:hover {
  background: var(--green-light);
  color: var(--white);
}
.btn-card-wa {
  background: #25D366;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 0.85rem;
  border-radius: 7px;
  border: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-card-wa:hover {
  background: #1EBA57;
  color: var(--white);
}

/* ---- DESTINATIONS GRID ---- */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  display: block;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,45,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: all 0.3s;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(27,58,45,0.95) 0%, rgba(27,58,45,0.3) 55%);
}
.dest-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.dest-card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.dest-card-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s;
}
.dest-card:hover .dest-card-arrow {
  opacity: 1;
  transform: scale(1);
}

/* ---- TESTIMONIALS ---- */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-stars { color: #F59E0B; font-size: 0.95rem; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.testi-country {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1400&q=70') center/cover no-repeat;
  opacity: 0.12;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.btn-cta-wa {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.btn-cta-wa:hover {
  background: #1EBA57;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}

/* ---- CITY PACKAGES ---- */
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.city-chip:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.city-chip i { color: var(--amber); font-size: 0.9rem; }
.city-chip:hover i { color: var(--amber-light); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; margin-top: 0.5rem; }
.footer-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
}
.footer-contact-item i { color: var(--amber); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.footer-social-btn:hover {
  background: var(--amber);
  color: var(--white);
}
.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.badge-trust i { color: var(--amber-light); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-bounce 2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.wa-float-btn:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  color: var(--white);
}
.wa-float-label {
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s;
  pointer-events: none;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
  60% { transform: translateY(-3px); }
}
.wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,134,10,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(200,134,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,134,10,0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .navbar-collapse { background: var(--green-mid); padding: 1rem; border-radius: var(--radius); margin-top: 0.5rem; }
  .hero { min-height: 75vh; }
  .hero-trust { gap: 1rem; }
}
@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .why-strip .row > div { margin-bottom: 1.25rem; }
  .dest-card { height: 200px; }
}
