/* ==================== RESET & ROOT VARIABLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #5b8c51;
  --primary-hover: #4a7542;
  --text-dark: #222222;
  --text-muted: #666666;
  --bg-light: #f9fbf9;
  --bg-white: #ffffff;
  --font-main: 'DM Sans', sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* ==================== HERO & NAVBAR ==================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  /* Online default nature background image with overlay */
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
              url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #b7e3b0;
}

.nav-phone a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 18px;
  border-radius: 20px;
  transition: var(--transition);
}

.nav-phone a:hover {
  background: #ffffff;
  color: var(--text-dark);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px 80px;
}

.hero-tagline {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #e5f5e0;
}

.hero-title {
  font-size: 88px;
  line-height: 1;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 550px;
  margin-bottom: 34px;
  color: #f1f1f1;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.section-title {
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-img-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ==================== TESTIMONIAL ==================== */
.quote-section {
  padding: 90px 0;
  background: #ffffff;
}

.quote-icon {
  font-size: 72px;
  line-height: 0.8;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.quote-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 30px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
}

/* ==================== ABOUT SPLIT ==================== */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid #edf2ed;
}

.cta-title {
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 30px;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: #172615;
  color: #ffffff;
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.footer-links a {
  color: #c0d1be;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
}

.copyright {
  font-size: 13px;
  color: #889f85;
}

/* ==================== MOBILE RESPONSIVENESS ==================== */
@media (max-width: 900px) {
  .hero-title {
    font-size: 60px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .navbar {
    padding: 20px;
  }
  .nav-links {
    display: none; /* simple hidden state for clean mobile preview */
  }
}

/* ==================== ABOUT PAGE SPECIFIC STYLES ==================== */

.logo-link {
  color: inherit;
  text-decoration: none;
}

/* Compact Subpage Header */
.page-header {
  position: relative;
  min-height: 48vh;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
              url('images/about-header.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.page-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* About Story Section */
.about-story-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.story-text h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.story-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
}

/* Core Pillars */
.pillars-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #edf2ed;
}

.pillar-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 14px;
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Team Grid */
.team-section {
  padding: 100px 0 120px;
  background: var(--bg-white);
}

.team-header {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
}

.team-photo-wrap {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}

.team-card h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive updates */
@media (max-width: 900px) {
  .page-title {
    font-size: 42px;
  }
  .pillars-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================== SERVICES PAGE STYLES ==================== */

/* Custom Services banner background */
.services-header {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
              url('images/services-header.jpg') center/cover no-repeat;
}

.services-detail-section {
  padding: 100px 0 60px;
  background-color: var(--bg-white);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse .service-row-content {
  direction: ltr; /* Reset text orientation */
}

.service-row.reverse .service-row-img {
  direction: ltr;
}

.service-row-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-row-content h2 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.service-row-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-price {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.service-price strong {
  color: var(--primary-color);
  font-size: 22px;
}

/* Why Choose Us & Trust Badges */
.why-us-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  border-top: 1px solid #eef3ee;
}

.why-us-text h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.why-us-text p {
  color: var(--text-muted);
  font-size: 16px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.badge-item {
  background: var(--bg-white);
  padding: 30px 24px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #edf2ed;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.badge-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
  }
  .badges-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==================== CONTACT PAGE STYLES ==================== */

/* Contact Header Banner */
.contact-header {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
              url('images/contact-header.jpg') center/cover no-repeat;
}

.contact-section {
  padding: 100px 0 120px;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 24px;
  line-height: 1.2;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--primary-color);
}

/* Form Container Card */
.contact-card {
  background: var(--bg-white);
  padding: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2ed;
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid #dce4dc;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background-color: #fafdfa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(91, 140, 81, 0.15);
}

.btn-block {
  width: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  padding: 15px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-card {
    padding: 26px;
  }
}


/* Offer Card Extras */
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-deal {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.offer-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-badge-code {
  background: #f1f7f0;
  border: 1px dashed var(--primary-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.btn-offer {
  text-align: center;
  padding: 10px 18px;
  font-size: 14px;
  margin-top: auto;
}

html {
  scroll-behavior: smooth;
}

/* Smooth scrolling for offers jump links */
html {
  scroll-behavior: smooth;
}

/* Ensure the hero headline scales cleanly */
.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 24px;
  max-width: 900px;
}

/* Offer Card Enhancements */
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e1ebe0;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.offer-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-deal {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.offer-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-badge-code {
  background: #f1f7f0;
  border: 1px dashed var(--primary-color);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.btn-offer {
  text-align: center;
  padding: 10px 18px;
  font-size: 14px;
  margin-top: auto;
}

