/* ─────────── GLOBAL RESET ─────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #222;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ─────────── HEADER ─────────── */
.header {
  background: #fff;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo img {
  height: 90px;
  width: auto;
  max-width: 220px;
}

.tagline {
  font-size: 0.8rem;
  color: #5d7531;
  font-weight: 600;
  margin-top: 5px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.icon {
  width: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ─────────── NAVIGATION ─────────── */
.main-nav {
  background: #000;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center; /* 👈 center everything inside */
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu {
  display: flex;
  gap: 50px;
  font-weight: bold;
  justify-content: center; /* 👈 center nav items */
  align-items: center;
}

.menu a {
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #8bc34a;
  transition: width 0.3s ease;
}

.menu a:hover, .menu a.active {
  color: #8bc34a;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.burger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

/* ─────────── CONTACT PAGE MAIN ─────────── */
.contact-main {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #fff;
}

/* Hero Section */
.contact-hero {
  background: url('images/modern-bg.jpg') center/cover no-repeat;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1s ease forwards;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #4C6B2F;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #555;
}

/* Contact Methods Section */
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: #f7f7f7;
}

.method-card {
  background: #fff;
  width: 280px;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}

.method-card img {
  width: 40px;
  margin-bottom: 10px;
}

.method-card h3 {
  color: #4C6B2F;
  margin-bottom: 8px;
}

.method-card p {
  color: #444;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Highlight Section */
.contact-highlight {
  padding: 80px 20px;
  background: #e9f4e5;
  text-align: center;
}

.highlight-content {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
}

.highlight-content h2 {
  font-size: 2rem;
  color: #4C6B2F;
  margin-bottom: 20px;
}

.highlight-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Closing Banner */
.contact-banner {
  background: linear-gradient(to right, #8BC34A, #4C6B2F);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.slide-in {
  animation: slideIn 1s ease forwards;
}
@keyframes slideIn {
  from {opacity: 0; transform: translateX(-50px);}
  to {opacity: 1; transform: translateX(0);}
}


/* ─────────── FOOTER ─────────── */
footer {
  text-align: center;
  padding: 20px 0;
  background: #f1f1f1;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* ─────────── RESPONSIVE ─────────── */
@media(max-width:700px){
  .burger {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0%;
    width: 40%;
    background: #000;
    padding: 10px 0;
    border-top: 1px solid #444;
    z-index: 999;
  }

  .menu.show {
    display: block;
    padding: 2% 0;
  }

  .menu li{
    text-align:center;
    padding: 5%;
  }

  .hero{
    padding:40px 6%;
  }

  .hero h1{
    font-size:1.8rem;
  }
}