:root {
  --primary: #2c6e49;
  --secondary: #f59e0b;
  --text: #333;
  --white: #ffffff;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--text);
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.tagline {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 60px;
  margin: 15px 0;
  font-weight: 700;
}

.hero .desc {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: auto;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  margin-top: 25px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
}

.primary {
  background: var(--primary);
  color: var(--white);
}

.primary:hover {
  background: #1f4f35;
}

.outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.outline:hover {
  background: var(--white);
  color: #000;
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 80px 10%;
}

/* =========================
   ABOUT PREVIEW
========================= */
.about-preview {
  background: #f9f9f9;
}

.grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.grid .text,
.grid .image {
  flex: 1;
  min-width: 300px;
}

.grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.grid h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary);
}

.link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   FEATURES
========================= */
.features {
  text-align: center;
}

.features h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: var(--primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
  transition: 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
}

/* =========================
   CTA
========================= */
.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* =========================
   SOCIAL LINKS
========================= */
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 20px;
  margin-right: 12px;
  transition: 0.3s ease;
}

/* Instagram */
.social-links .fa-instagram {
  color: #E4405F;
}

.social-links .fa-instagram:hover {
  color: #ff5c7a;
}

/* Facebook */
.social-links .fa-facebook-f {
  color: #1877F2;
}

.social-links .fa-facebook-f:hover {
  color: #4a90ff;
}

/* WhatsApp */
.social-links .fa-whatsapp {
  color: #25D366;
}

.social-links .fa-whatsapp:hover {
  color: #4be37a;
}

/* Location (Map) */
.social-links .fa-map-marker-alt {
  color: #e74c3c; /* red map pin color */
}

.social-links .fa-map-marker-alt:hover {
  color: #ff6b5a;
}

/* Phone */
.social-links .fa-phone {
  color: #f39c12; /* warm orange/gold */
}

.social-links .fa-phone:hover {
  color: #ffb84d;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero .desc {
    font-size: 15px;
  }

  section {
    padding: 60px 5%;
  }

  .grid {
    flex-direction: column;
  }
}