:root {
  --primary: #0d4f2f;
  --accent: #d4af37;
  --bg: #fdfdfb;
  --text: #1a1a1a;
  --whatsapp: #25D366;
  --light: #fff;
}

/* Global */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
}

/* ✅ FIXED — Ensure Font Awesome icons render properly */
.fa,
.fas,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900 !important;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}


/* Header */
.header {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
.brand {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Desktop menu */
.desktop-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
.desktop-menu a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.desktop-menu a:hover,
.desktop-menu a.active { color: var(--accent); }

/* Hamburger */
.menu-icon {
  width: 26px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.menu-icon span {
  display: block;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}
.menu-icon.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-icon.active span:nth-child(2) {
  opacity: 0;
}
.menu-icon.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu (cleaner) */
.mobile-menu {
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.active {
  max-height: 300px;
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px 0;
}
.mobile-menu li {
  padding: 10px 0;
}
.mobile-menu a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(13,79,47,0.75), rgba(0,0,0,0.45)),
    url('../images/bhoomi-construction.jpeg') center/cover;
  color: #fff;
}
.hero h1 { font-size: 2.6rem; margin-bottom: 10px; }
.hero p { max-width: 700px; color: rgba(255,255,255,0.9); }
.cta-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-top: 16px;
}

/* Services */
section { padding: 72px 20px; max-width: 1200px; margin: 0 auto; }
h2 { text-align: center; margin-bottom: 22px; color: var(--primary); }
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
}
.service-card div { font-size: 28px; margin-bottom: 8px; }
.service-card p { color: #555; }

/* Floating buttons */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.05); }
.call-btn { background: var(--primary); }
.whatsapp-btn { background: var(--whatsapp); }

.scroll-top {
  position: fixed;
  right: 18px; bottom: 90px;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}
footer a { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .desktop-menu { display: none; }
  .menu-icon { display: flex; }
}

.hero-modern {
  position: relative;
  height: 75vh;
  background: url('../images/about-craft.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-modern .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}
.hero-modern .hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  padding: 0 20px;
}
.hero-modern h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero-modern p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

/* About Section */
.about-modern {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  color: var(--primary);
  margin-bottom: 12px;
}
.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.image-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--accent);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: center;
  transform: rotate(3deg);
}

/* Timeline */
.timeline-section {
  background: #f8f9f6;
  padding: 80px 20px;
  text-align: center;
}
.timeline {
  max-width: 900px;
  margin: 40px auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-item .year {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.timeline-item .content {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Values */
.value-section {
  padding: 100px 20px;
  text-align: center;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto;
}
.value-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  transition: transform .3s ease;
}
.value-box:hover { transform: translateY(-6px); }
.value-box i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Stats */
.stats-modern {
  background: var(--primary);
  color: #fff;
  padding: 80px 20px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: 12px;
  transition: background .3s;
}
.stat-card:hover { background: rgba(255,255,255,0.2); }
.stat-card h3 { color: var(--accent); font-size: 2rem; }

/* Responsive */
@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; }
  .timeline::before { left: 8px; }
  .timeline-item {
    width: 100%;
    padding-left: 30px;
    text-align: left;
  }
  .image-card { bottom: -20px; right: 10px; transform: none; }
  .hero-modern h1 { font-size: 2.2rem; }
}

/* ================================
   PROJECTS PAGE STYLES
================================ */

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Project Cards */
.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Project Images */
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Project Info */
.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
}

.project-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.8rem;
}

/* Project Status Tags */
.status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.status.completed {
  background: #28a7451a;
  color: #28a745;
}

.status.ongoing {
  background: #ffc1071a;
  color: #b58900;
}

.status.upcoming {
  background: #007bff1a;
  color: #0056b3;
}

/* Values Section (used for categories) */
.values-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.values-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Green icon color for Agriculture category */
.value-card i.fa-seedling {
  color: #1b8c3a;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.value-card i {
  color: #0b7a3b;
  margin-bottom: 10px;
}

.value-card h3 {
  color: #1b1b1b;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0b7a3b, #bfa144);
  color: #fff;
  border-radius: 18px;
  margin: 3rem auto;
  max-width: 1000px;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-section .cta-btn {
  background: #fff;
  color: #0b7a3b;
  border: none;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-section .cta-btn:hover {
  background: #0b7a3b;
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .values {
    flex-direction: column;
    align-items: center;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }
}
/* ================================
   CONSTRUCTION PAGE STYLES
================================ */

.process-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.process-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.process-card span {
  position: absolute;
  top: -18px;
  left: 20px;
  background: linear-gradient(135deg, #0b7a3b, #bfa144);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #1b1b1b;
}

.process-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .process-section {
    padding: 3rem 1.5rem;
  }
}
/* ================================
   CONTACT PAGE STYLES
================================ */

.contact-info-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact-card i {
  font-size: 2rem;
  color: #0b7a3b;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
}

.contact-card p a {
  color: #0b7a3b;
  text-decoration: none;
}

.contact-card p a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0b7a3b, #bfa144);
  color: #fff;
  text-align: center;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2rem;
  color: #1b1b1b;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-form-container p {
  color: #555;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
  outline: none;
  border-color: #0b7a3b;
}

.contact-form-container .cta-btn {
  background: linear-gradient(135deg, #0b7a3b, #bfa144);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form-container .cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #095f2e, #a88c30);
}

/* Map Section */
.map-section iframe {
  border-radius: 0;
  margin: 0;
  display: block;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}
/* 5-card layout adjustment for Construction */
.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.value-card {
  width: 250px;
  flex: 1 1 250px;
}

.value-card i.fa-handshake {
  color: #bfa144;
}
/* ================================
   HOMEPAGE ENHANCEMENTS
================================ */

.service-card i {
  color: #0b7a3b;
  margin-bottom: 10px;
}

.service-points {
  margin-top: 0.5rem;
  text-align: left;
  padding-left: 1.2rem;
}

.service-points li {
  list-style: none;
  position: relative;
  margin-bottom: 6px;
}

.service-points li::before {
  content: "✔";
  color: #bfa144;
  font-weight: 700;
  margin-right: 8px;
}

/* About Core Section */
.about-core {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-grid div {
  background: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.07);
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.highlight-grid i {
  font-size: 2rem;
  color: #0b7a3b;
  margin-bottom: 10px;
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 2rem;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-grid div {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.why-grid i {
  font-size: 2rem;
  color: #bfa144;
  margin-bottom: 12px;
}

/* Vision & Promise */
.vision-section {
  background: linear-gradient(135deg, #0b7a3b, #bfa144);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 18px 18px 0 0;
}
/* Real Estate Page Enhancements */
.value-card i.fa-hand-holding-usd {
  color: #bfa144;
}
.value-card i.fa-seedling {
  color: #0b7a3b;
}
.highlight-grid div i {
  color: #0b7a3b;
}
.about-core h2 {
  margin-bottom: 1rem;
}
/* Logo Styling */
.brand img.logo {
  height: 30px;           /* adjust based on your logo height */
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.brand img.logo:hover {
  transform: scale(1.05);
}

/* Adjust header alignment */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}
/* Clickable Highlight Grid Enhancements */
.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.07);
  width: 280px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  background: linear-gradient(135deg, #f7fff9, #fff);
}

.highlight-card i {
  font-size: 2rem;
  color: #0b7a3b;
  margin-bottom: 10px;
}

.highlight-card h4 {
  color: #0b7a3b;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.highlight-card:hover h4 {
  color: #bfa144;
}

.highlight-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}
/* Core Services Section */
.core-services {
  text-align: center;
  padding: 5rem 2rem;
}

.core-services h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #0b7a3b;
  font-weight: 700;
}

/* Service Cards */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.service-card {
  background: #fff;
  text-align: left;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
  max-width: 380px;
}

.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #f7fff9, #fff);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
  color: #0b7a3b;
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s ease;
}

.service-card:hover i {
  color: #bfa144;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0b7a3b;
}

.service-card:hover h3 {
  color: #bfa144;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Service Points List */
.service-points {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-points li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.service-points li::before {
  content: "✔";
  color: #0b7a3b;
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

/* Hover Arrow Indicator */
.service-card::after {
  content: "→";
  position: absolute;
  bottom: 1.5rem;
  right: 1.8rem;
  color: #bfa144;
  font-size: 1.4rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
/* --- Contact Info Section --- */
.contact-info-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fff9, #fff);
  text-align: center;
  position: relative;
}

.contact-heading h2 {
  font-size: 2rem;
  color: #0b7a3b;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-heading p {
  color: #555;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 320px;
  text-align: center;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  background: linear-gradient(135deg, #ffffff, #f9fff4);
}

.contact-card .icon-box {
  background: linear-gradient(135deg, #0b7a3b, #bfa144);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 18px rgba(11,122,59,0.25);
  transition: transform 0.3s ease;
}

.contact-card:hover .icon-box {
  transform: rotate(10deg) scale(1.05);
}

.contact-card h3 {
  color: #0b7a3b;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.3rem 0;
}

.contact-card a {
  color: #bfa144;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #0b7a3b;
}

@media (max-width: 768px) {
  .contact-heading h2 { font-size: 1.6rem; }
  .contact-card { padding: 1.8rem 1.2rem; }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 30px 0;
}

.fancy-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.fancy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.fancy-icon {
  width: 70px;
  height: 70px;
  background: #0b7a3b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s ease;
}

.fancy-card:hover .fancy-icon {
  background: #095f2e;
  transform: scale(1.1);
}

.fancy-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.fancy-card p, 
.fancy-card a {
  font-size: 15px;
  color: #444;
}

.fancy-card a {
  text-decoration: none;
  color: #0b7a3b;
  font-weight: 600;
}

.fancy-card a:hover {
  text-decoration: underline;
}

.package-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  font-size: 15px;
}

.package-table th,
.package-table td {
  border: 1px solid #ddd;
  padding: 14px;
  text-align: center;
}

.package-table th {
  background: #0b7a3b;
  color: #fff;
  font-weight: 600;
}

.package-table tr:nth-child(even) {
  background: #f9f9f9;
}
/* ---------- Modern Package Cards ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.service-card {
  background: linear-gradient(180deg, #ffffff, #f8faf9);
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-card i {
  color: #0b7a3b;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.service-card p strong {
  font-size: 18px;
  color: #0b7a3b;
}

/* Highlight Premium Package */
.service-card.premium {
  border: 2px solid #0b7a3b;
}

.service-card.premium::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #0b7a3b;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
}

/* Luxury accent */
.service-card.luxury {
  background: linear-gradient(180deg, #ffffff, #eef7f2);
}

/* ---------- CTA Button Modern ---------- */
.cta-btn {
  background: linear-gradient(135deg, #0b7a3b, #149954);
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 15px;
  transition: all .3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* ---------- Comparison Table (Modern) ---------- */
.package-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.package-table th {
  background: #0b7a3b;
  color: #fff;
  padding: 16px;
  font-size: 15px;
}

.package-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.package-table tr:last-child td {
  border-bottom: none;
}

.package-table tr:hover {
  background: #f4fbf7;
}

/* ---------- Hero Refinement ---------- */
.hero {
  background: linear-gradient(
      rgba(11,122,59,0.85),
      rgba(11,122,59,0.85)
    ),
    url("assets/images/hero-bg.jpg") center/cover no-repeat;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
}

.hero p {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: 17px;
}

/* ---------- Section Spacing ---------- */
section {
  padding: 80px 6%;
}
