/* =============== GLOBAL STYLES =============== */
:root {
  --primary-green: #388E3C;
  --navbar-green: #2E7D32;
  --accent-red: #d32f2f;
  --accent-orange: #f57c00;
  --dark-brown: #3e2723;
  --light-cream: #f9f5eb;
  --text-white: #ffffff;
  --shadow: 0 4px 12px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* =============== WHATSAPP FLOAT =============== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 1000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: bounce 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

.whatsapp-float img {
  width: 48px;
  height: 48px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =============== NAVBAR =============== */
.navbar {
  background-color: var(--navbar-green);
  padding: 12px 5%;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img {
  height: 50px;
  border: 2px solid var(--text-white);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.nav-logo img:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  transform: scale(1.03);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 21px;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.2);
  color: var(--accent-orange);
}

.currency-selector select {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: var(--text-white);
  color: var(--navbar-green);
  font-weight: 600;
  cursor: pointer;
}

/* =============== HERO SLIDESHOW =============== */
.hero {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero .slide.active {
  opacity: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-white);
  background: rgba(0,0,0,0.45);
  padding: 0 20px;
  animation: fadeIn 1s ease-out;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.hero-overlay p {
  font-size: 1.3rem;
  max-width: 800px;
}

/* =============== ANIMATIONS =============== */
@keyframes logoPulse {
  0% { box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.4); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============== HOMEPAGE SERVICE CARDS – LARGER, CLEAN =============== */
.services-preview {
  padding: 60px 5% 40px;
  background-color: var(--light-cream);
  text-align: center;
}

.services-preview h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--dark-brown);
}

.services-preview .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.services-preview .service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
  animation: slideUp 0.6s ease-out;
}

.services-preview .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.services-preview .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-green);
}

.services-preview .service-card h3 {
  padding: 16px 16px 8px;
  font-size: 1.3rem;
  color: var(--dark-brown);
}

.services-preview .service-card .price {
  padding: 0 16px 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-red);
}

.services-preview .card-buttons {
  padding: 0 16px 16px;
  display: flex;
  gap: 10px;
}

/* =============== SERVICES PAGE CARDS – COMPACT + ORANGE BORDER =============== */
.all-services {
  padding: 50px 20px 60px;
  background-color: #f8f9fa;
}

.all-services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.all-services .service-card {
  background: white;
  border: 3px solid var(--accent-orange);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 0.6s ease-out;
}

.all-services .service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.25);
  border-color: var(--primary-green);
}

.all-services .service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.all-services .service-card h3 {
  padding: 14px 14px 8px;
  font-size: 1.2rem;
  color: var(--dark-brown);
  min-height: 52px;
}

.all-services .service-card .price {
  padding: 0 14px 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-red);
}

.all-services .card-buttons {
  padding: 0 14px 14px;
  display: flex;
  gap: 10px;
}

/* Shared button styles */
.btn {
  flex: 1;
  text-align: center;
  padding: 9px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.3s;
}

.book-now {
  background: var(--accent-red);
  color: white;
}

.book-now:hover {
  background: #b71c1c;
}

.preview {
  background: var(--primary-green);
  color: white;
}

.preview:hover {
  background: #1b5e20;
}

/* =============== VIEW ALL BUTTON =============== */
.view-all-container {
  margin-top: 30px;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary-green);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  animation: fadeIn 1s ease-out;
}

.view-all-btn:hover {
  background: var(--navbar-green);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =============== SOCIAL & FOOTER =============== */
.social-section {
  padding: 60px 5%;
  background: var(--dark-brown);
  text-align: center;
  color: var(--text-white);
}

.social-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.social-btn {
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s;
  min-width: 150px;
  animation: fadeIn 1s ease-out;
}

.zambiadirectory { background: #1a5d1a; }
.facebook      { background: #1877f2; }
.tripadvisor   { background: #24c1e0; }
.realadventures{ background: #e53935; }

.social-btn:hover {
  transform: translateY(-4px);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #ccc;
  font-size: 0.95rem;
}

/* =============== CONTACT PAGE =============== */
.contact-section {
  padding: 60px 20px;
  background: var(--dark-brown);
  color: var(--text-white);
  text-align: center;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  color: var(--text-white);
  transition: all 0.35s ease;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  animation: fadeIn 0.8s ease-out;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-orange);
  box-shadow: 0 8px 16px rgba(245, 124, 0, 0.3);
}

.contact-card h3 {
  color: var(--accent-orange);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-white);
  text-decoration: none;
  word-break: break-word;
  white-space: normal;
}

.contact-card a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.intro-card {
  margin-bottom: 30px;
  background: rgba(30, 30, 30, 0.4);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 35px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 180px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  animation: fadeIn 0.9s ease-out;
}

.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { background: #128c7e; transform: translateY(-4px); }

.email-btn { background: #d44638; }
.email-btn:hover { background: #b53425; transform: translateY(-4px); }

.call-btn { background: var(--primary-green); }
.call-btn:hover { background: #1b5e20; transform: translateY(-4px); }

/* =============== ABOUT PAGE =============== */
.about-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
}

.about-container h2 {
  color: var(--navbar-green);
  margin-bottom: 25px;
  font-size: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.about-container p {
  margin-bottom: 20px;
  animation: fadeIn 0.9s ease-out;
}

.founder-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--accent-orange);
  animation: fadeIn 1s ease-out;
}

.founder-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-green);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.founder-text {
  flex: 1;
}

.founder-text h3 {
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.founder-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.founder-link:hover {
  text-decoration: underline;
}

/* =============== SERVICE DETAIL PAGE =============== */
.service-content {
  background: #f9f9f9;
  padding: 40px 20px 60px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  background: white;
  padding: 28px;
  margin-bottom: 32px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
  border: 2px solid rgba(46, 125, 50, 0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.content-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: var(--primary-green);
}

.content-block h2 {
  color: var(--navbar-green);
  margin-bottom: 18px;
  font-size: 1.9rem;
}

.content-block h3 {
  color: var(--dark-brown);
  margin: 24px 0 14px;
  font-size: 1.35rem;
}

.content-block p, .content-block ul {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #444;
}

.content-block ul {
  padding-left: 24px;
  margin: 16px 0;
}

.content-block li {
  margin-bottom: 10px;
}

.highlight {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 16px;
  font-style: italic;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.inclusion-item {
  background: rgba(46, 125, 50, 0.06);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--dark-brown);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

/* =============== MAP WITH BORDER =============== */
.map-block {
  background: white;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  margin-top: 20px;
  border: 3px solid var(--primary-green);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  animation: fadeIn 1s ease-out;
}

.map-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto 16px;
  border: 2px solid #eaeaea;
}

.map-caption {
  color: var(--dark-brown);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* =============== FLOATING BOOK NOW + PRICE =============== */
.book-now-float-container {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: floatPulse 2.2s infinite;
}

.book-now-price {
  background: var(--accent-red);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 8px 16px;
  border-radius: 50px;
  min-width: 90px;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.book-now-btn {
  background: var(--primary-green);
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 9px 24px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.35s ease;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.book-now-btn:hover {
  background: var(--navbar-green);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.5);
}

@keyframes floatPulse {
  0% { box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 8px 25px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
}

/* =============== PRICE FEATURES BANNER =============== */
.price-features-banner {
  background: white;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: -20px auto 35px;
  max-width: 900px;
  width: 95%;
  border-radius: 0 0 12px 12px;
  border-top: 3px solid var(--primary-green);
}

.price-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.price-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.benefit {
  background: rgba(46, 125, 50, 0.1);
  color: var(--navbar-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(46, 125, 50, 0.25);
  transition: all 0.3s ease;
}

.benefit:hover {
  background: rgba(46, 125, 50, 0.2);
  transform: translateY(-2px);
}

/* =============== OFFER BANNER =============== */
.offer-banner {
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(245, 124, 0, 0.12); /* Light orange tint */
  border: 1px dashed var(--accent-orange);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark-brown);
  font-weight: 600;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}

.offer-code {
  background: var(--accent-orange);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  margin: 0 4px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(245, 124, 0, 0.3);
}

.offer-code:hover {
  transform: translateY(-2px);
  background: #e65100; /* Darker orange on hover */
  box-shadow: 0 4px 8px rgba(245, 124, 0, 0.4);
}

/* =============== MOBILE MENU =============== */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navbar-green);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
    display: none;
  }

  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    display: flex !important;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 10px;
    display: block;
  }

  .currency-selector {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  .currency-selector select {
    width: 100%;
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 6px;
  }

  .hero { height: 60vh; }
  .hero-overlay h1 { font-size: 2.1rem; }
  .hero-overlay p { font-size: 1.1rem; }

  .view-all-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .whatsapp-float {
    bottom: 20px; right: 20px; width: 60px; height: 60px;
  }
  .whatsapp-float img {
    width: 36px; height: 36px;
  }

  .all-services .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .all-services .service-card {
    max-width: none;
    margin: 0 12px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn {
    width: 90%;
    max-width: 280px;
  }

  .founder-section {
    flex-direction: column;
    text-align: center;
  }
  .founder-image img {
    margin: 0 auto;
  }

  .book-now-float-container {
    bottom: 20px;
    right: 20px;
    gap: 8px;
    padding: 8px 14px;
  }
  .book-now-price {
    font-size: 1.05rem;
    padding: 6px 12px;
    min-width: 80px;
  }
  .book-now-btn {
    font-size: 1.05rem;
    padding: 8px 20px;
  }

  .content-block {
    padding: 22px;
  }

  .services-preview .service-cards {
    gap: 20px;
    padding: 0 15px;
  }

  .social-buttons {
    gap: 15px;
  }

  .social-btn {
    padding: 12px 16px;
    min-width: 140px;
    font-size: 1rem;
  }
}
