/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f4f4f4;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #228B22;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.nav-menu a.active {
  color: #228B22;
  border-bottom: 2px solid #C4B454;
  padding-bottom: 4px;
}

/* ===== HERO ===== */
.hero {
  height: 35vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url("../images/Kilimanjaro\ Tanzania.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.hero-content {
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 15px;
  color: #fff;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* CONTACT INFO */
.contact-info h2 {
  font-size: 26px;
  color: #228B22;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* CONTACT FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #228B22;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form form textarea {
  min-height: 120px;
}

.contact-form form button {
  background: #228B22;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}

.contact-form form button:hover {
  background: #1a661a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 25vh;
  }
  .hero-content h1 {
    font-size: 24px;
  }
}
/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
}

/* QUICK LINKS */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #228B22;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* WHATSAPP BUTTON */
.footer-whatsapp {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-whatsapp {
    margin-left: auto;
    margin-right: auto;
  }
}
