/* ===========================
   AAI UNITY FARMS THEME
   Earthy Gold & Brown Style
=========================== */
:root {
  --gold: #E1B354;
  --brown: #3F2E1B;
  --beige: #FAF3E0;
  --text: #2F2F2F;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--beige);
}

/* Navbar */
.navbar {
  background: var(--brown) !important;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--gold) !important;
}

/* Hero Slider */
.hero {
  height: 75vh;
}
.hero .carousel-item {
  background: url('../img/hero.jpg') center/cover no-repeat;
  height: 75vh;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
  padding: 0 40px;
  text-align: center;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  color: var(--brown);
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 26px;
}
.btn-gold:hover {
  background: #c89f46;
  color: #fff;
}

/* Section Titles */
.section-title {
  color: var(--brown);
  font-weight: 700;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  padding-bottom: 5px;
}

/* Services Cards */
.service-card {
  background: #fff;
  border: none;
  padding: 25px;
  transition: 0.4s;
  border-radius: 12px;
  text-align: center;
}
.service-card:hover {
  background: var(--gold);
  color: var(--brown);
  transform: translateY(-6px);
}

/* Pricing Table */
.table-dark {
  background: var(--brown) !important;
  color: #fff;
}
.table td, .table th {
  vertical-align: middle;
}

/* Achievements badges */
.badge {
  font-size: 16px;
  background: var(--gold) !important;
  color: var(--brown) !important;
}

/* Testimonials */
.card {
  border-radius: 12px;
}
.card p {
  font-style: italic;
}

/* Gallery Lightbox */
.gallery-item img {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.gallery-item img:hover {
  transform: scale(1.03);
}

/* Contact Form */
.card form input, .card form textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
}
.card form input:focus,
.card form textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--brown);
  color: #fff;
  padding: 40px 0;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #25D366;
  padding: 12px 16px;
  border-radius: 50px;
  color: #fff;
  font-size: 24px;
  z-index: 1000;
}
/* Popup */
.promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.promo-content {
  background: var(--gold);
  padding: 25px;
  border-radius: 14px;
  width: 320px;
  color: var(--brown);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
