/* ===============================
   EVER LITE HOME CARE SERVICES
   COLORS: GREEN • WHITE • GOLD
================================ */

:root {
  --green: #1f6f4a;
  --gold: #d4af37;
  --white: #ffffff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--green);
  line-height: 1.6;
}

/* ===============================
   NAVIGATION – EXECUTIVE SPLIT
================================ */

.alt-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 1.5rem 3rem;
  background: #ffffff;
}

/* gold bar */
.nav-accent {
  height: 4px;
  width: 100%;
  background: #d4af37;
}

/* LOGO */
.nav-logo img {
  height: 60px;
}

/* CENTER LINKS */
.nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.75rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 800;
  color: #1f6f4a;
  text-decoration: none;
  letter-spacing: 0.4px;
  position: relative;
}

/* gold underline hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: #d4af37;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* RIGHT CTA */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-cta-btn {
  background: #1f6f4a;
  color: #ffffff;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  background: #d4af37;
  color: #1f6f4a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .alt-nav {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .nav-center {
    order: 3;
  }

  .nav-right {
    order: 2;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* ===============================
   HERO SECTION – PREMIUM
================================ */
.hero {
  position: relative;
  height: 95vh;
  background:
    linear-gradient(
      135deg,
      rgba(31, 111, 74, 0.92),
      rgba(31, 111, 74, 0.75)
    ),
    url("assets/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  overflow: hidden;
}

/* soft gold glow */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.15),
    transparent 65%
  );
  z-index: 0;
}

/* content wrapper */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* headline */
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

/* subtext */
.hero p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

/* ===============================
   BUTTONS – LUXURY CTA
================================ */
.btn {
  background: linear-gradient(
    135deg,
    #d4af37,
    #e6c55a
  );
  color: var(--green);
  padding: 0.9rem 2.2rem;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

/* hover effect */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.45);
  background: linear-gradient(
    135deg,
    #c49c2e,
    #d4af37
  );
}

/* ===============================
   HERO MOBILE
================================ */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }
}

/* =====================================================
   ABOUT SECTION – PREMIUM IMPACT
===================================================== */

.about-impact {
  position: relative;
  padding: 8rem 2rem 7rem;
  background:
    linear-gradient(
      180deg,
      rgba(31,111,74,0.04),
      rgba(31,111,74,0.01)
    );
  overflow: hidden;
}

/* subtle background accent */
.about-impact::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -15%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.12),
    transparent 65%
  );
  pointer-events: none;
}

/* ===============================
   MAIN WRAPPER
================================ */

.about-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 5rem;
  align-items: stretch;
}

/* ===============================
   LEFT PANEL – STATEMENT BLOCK
================================ */

.about-highlight {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(31,111,74,0.98),
      rgba(31,111,74,0.88)
    );
  color: var(--white);
  padding: 4rem 3rem;
  border-radius: 34px;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* gold accent edge */
.about-highlight::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 6px;
  height: calc(100% - 5rem);
  background: var(--gold);
  border-radius: 6px;
}

/* heading */
.about-highlight h2 {
  font-size: clamp(2.6rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* badge */
.about-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1.35rem;
  margin-bottom: 1.75rem;
  border-radius: 40px;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.9px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* lead text */
.about-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  opacity: 0.95;
}

/* ===============================
   RIGHT PANEL – CONTENT FLOW
================================ */

.about-content {
  background: var(--white);
  padding: 4rem 3.5rem;
  border-radius: 34px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12);
}

/* subheading */
.about-content h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.75rem;
  position: relative;
}

/* gold underline */
.about-content h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--gold);
  margin-top: 0.75rem;
  border-radius: 4px;
}

/* paragraphs */
.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--green);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-highlight,
  .about-content {
    padding: 3rem 2.25rem;
  }

  .about-highlight::after {
    display: none;
  }

  .about-highlight h2,
  .about-content h3 {
    text-align: center;
  }

  .about-badge {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ===============================
   ABOUT – VALUE STRIP (UPGRADED)
================================ */

.about-values {
  margin-top: 5rem;
  padding: 4.5rem 2rem;
  background:
    linear-gradient(
      180deg,
      rgba(31,111,74,0.06),
      rgba(31,111,74,0.02)
    );

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  border-radius: 28px;
}

/* CARD */
.value-card {
  background: var(--white);
  padding: 3rem 2.75rem;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover lift */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.18);
}

/* TITLE */
.value-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.2rem;
}

/* gold accent bar */
.value-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 28px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
}

/* TEXT */
.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--green);
  opacity: 0.9;
}

/* FEATURED CARD */
.value-card.highlight {
  border: 3px solid var(--gold);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.75rem;
  }
}

/* ===============================
   SECTIONS – PREMIUM
================================ */

.section {
  position: relative;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

/* soft gold divider at top */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 3px;
}

/* section title */
.section h2 {
  text-align: center;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* subtitle / paragraph styling */
.section p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
  color: var(--green);
  opacity: 0.95;
}

/* ===============================
   ALTERNATING SECTION STYLE
================================ */
.section.alt {
  background:
    linear-gradient(
      180deg,
      rgba(31, 111, 74, 0.05),
      rgba(31, 111, 74, 0.02)
    );
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===============================
   SPACING FOR CONTENT BLOCKS
================================ */
.section .content {
  margin-top: 3rem;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.25rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .section p {
    font-size: 1rem;
  }
}

/* ===============================
   SERVICES – IMAGE CARDS (PREMIUM)
================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
  margin-top: 3.5rem;
  align-items: stretch; /* ensures equal height */
}

/* CARD */
.service-card {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.18);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* IMAGE AREA */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT AREA */
.service-card-content {
  padding: 2rem 1.75rem 2.25rem;
  flex-grow: 1;
  position: relative;
  background: var(--white);
}

/* GOLD TOP ACCENT */
.service-card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: var(--gold);
  border-radius: 4px;
}

/* TITLE */
.service-card h3 {
  margin-top: 1.5rem;
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 800;
}

/* DESCRIPTION */
.service-card p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--green);
  opacity: 0.95;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(212, 175, 55, 0.35);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
}


/* ===============================
   GALLERY – PREMIUM (FIXED)
================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

/* wrapper */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.2);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* image */
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 111, 74, 0.3),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover */
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(212, 175, 55, 0.35);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .gallery-item img {
    height: 220px;
  }
}

/* ===============================
   HOME FEATURES – TRUST BUILDER
================================ */

.home-features {
  background:
    linear-gradient(
      180deg,
      rgba(31,111,74,0.05),
      rgba(31,111,74,0.01)
    );
  padding: 7.5rem 2rem;
}

/* ===============================
   HEADER
================================ */

.home-features .section-header {
  max-width: 850px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.home-features .section-header h2 {
  font-size: clamp(2.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.home-features .section-header::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  border-radius: 4px;
}

.home-features .section-header p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--green);
  opacity: 0.95;
}

/* ===============================
   GRID
================================ */

.features-grid {
  max-width: 1100px;
  margin: 4.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

/* ===============================
   FEATURE CARD
================================ */

.feature-item {
  background: var(--white);
  padding: 3rem 2.75rem;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.18);
}

/* gold accent */
.feature-item::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 6px;
  height: calc(100% - 5rem);
  background: var(--gold);
  border-radius: 6px;
}

/* title */
.feature-item h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* text */
.feature-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--green);
  opacity: 0.95;
  padding-left: 1.5rem;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .home-features {
    padding: 6rem 1.5rem;
  }

  .home-features .section-header h2 {
    font-size: 2.4rem;
  }
}



/* ===============================
   WHY CHOOSE US – FINAL (REPLACE)
================================ */

.why-section {
  background: #ffffff;
  padding: 8rem 2rem;
}

/* HEADER */
.why-section .section-header {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}

.why-section .section-header h2 {
  font-size: clamp(3rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #1f6f4a;
  margin-bottom: 1.25rem;
}

/* gold divider */
.why-section .section-header::after {
  content: "";
  display: block;
  width: 110px;
  height: 5px;
  background: #d4af37;
  margin: 1.5rem auto 0;
  border-radius: 4px;
}

.why-section .section-header p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1f6f4a;
  opacity: 0.95;
}

/* CONTAINER */
.why-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}

/* CARD */
.why-item {
  background: #f9fdfb;
  padding: 3rem 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* gold accent bar */
.why-item::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 6px;
  height: calc(100% - 5rem);
  background: #d4af37;
  border-radius: 6px;
}

/* hover */
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

/* TITLE */
.why-item h4 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1f6f4a;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}

/* TEXT */
.why-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f6f4a;
  opacity: 0.95;
  padding-left: 1.75rem;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 2.5rem 2.25rem;
  }

  .why-section {
    padding: 6rem 1.5rem;
  }
}




/* ===============================
   TESTIMONIALS – FINAL MATCHED
================================ */

.testimonials-section {
  background: #ffffff;
  padding: 8rem 2rem;
}

/* HEADER (IDENTICAL TO WHY CHOOSE US) */
.testimonials-section .section-header {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}

.testimonials-section .section-header h2 {
  font-size: clamp(3rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #1f6f4a;
  margin-bottom: 1.25rem;
}

.testimonials-section .section-header::after {
  content: "";
  display: block;
  width: 110px;
  height: 5px;
  background: #d4af37;
  margin: 1.5rem auto 0;
  border-radius: 4px;
}

.testimonials-section .section-header p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1f6f4a;
  opacity: 0.95;
}

/* CONTAINER */
.testimonials-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

/* CARD */
.testimonial-card {
  background: #f9fdfb;
  padding: 3.25rem 3rem;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  position: relative;
}

/* GOLD QUOTE */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: 2rem;
  font-size: 4.8rem;
  font-weight: 900;
  color: #d4af37;
  line-height: 1;
}

/* TEXT */
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1f6f4a;
  margin-bottom: 1.75rem;
}

/* AUTHOR */
.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f6f4a;
  opacity: 0.9;
}

/* FEATURED */
.testimonial-card.highlight {
  outline: 3px solid #d4af37;
  background: #ffffff;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2.75rem 2.25rem;
  }
}

/* ===============================
   WHO WE SERVE – FINAL (REPLACE)
================================ */

.serve-section {
  background: #ffffff;
  padding: 8rem 2rem;
}

/* HEADER */
.serve-section .section-header {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}

.serve-section .section-header h2 {
  font-size: clamp(3rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #1f6f4a;
  margin-bottom: 1.25rem;
}

/* gold divider */
.serve-section .section-header::after {
  content: "";
  display: block;
  width: 110px;
  height: 5px;
  background: #d4af37;
  margin: 1.5rem auto 0;
  border-radius: 4px;
}

.serve-section .section-header p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1f6f4a;
  opacity: 0.95;
}

/* CONTAINER */
.serve-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

/* CARD */
.serve-card {
  background: #f9fdfb;
  padding: 3.25rem 3rem;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* gold accent bar */
.serve-card::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 6px;
  height: calc(100% - 5rem);
  background: #d4af37;
  border-radius: 6px;
}

/* hover */
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

/* BADGE */
.serve-badge {
  display: inline-block;
  background: #d4af37;
  color: #1f6f4a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  letter-spacing: 0.9px;
  margin-bottom: 1.25rem;
}

/* TITLE */
.serve-card h4 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1f6f4a;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}

/* TEXT */
.serve-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f6f4a;
  opacity: 0.95;
  padding-left: 1.75rem;
}

/* FEATURED CARD */
.serve-card.highlight {
  background: #ffffff;
  outline: 3px solid #d4af37;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .serve-card {
    padding: 2.75rem 2.25rem;
    text-align: center;
  }

  .serve-card::before {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    top: 0;
  }

  .serve-card h4,
  .serve-card p {
    padding-left: 0;
  }

  .serve-section {
    padding: 6rem 1.5rem;
  }
}


/* ===============================
   CONTACT – CLEAR & READABLE
================================ */

.contact-section {
  background: var(--green);
  padding: 8rem 2rem;
}

/* main container */
.contact-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ===============================
   LEFT TEXT
================================ */

.contact-text {
  color: var(--white);
}

.contact-text h2 {
  font-size: clamp(2.6rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.contact-subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0.95;
}

/* contact info */
.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

/* ===============================
   FORM CARD
================================ */

.contact-form {
  background: var(--white);
  padding: 3.25rem 3rem;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0,0,0,0.28);
}

/* inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1.8px solid rgba(31,111,74,0.35);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* button */
.contact-form .btn {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.95rem 2.75rem;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .contact-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 2.25rem 1.75rem;
  }
}


/* ===============================
   FOOTER – STRONG & READABLE
================================ */

/* gold divider above footer */
.footer-top {
  width: 100%;
  height: 6px;
  background: var(--gold);
}

/* footer base */
footer {
  width: 100%;
  background: var(--green);
  color: var(--white);
}

/* main content */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 4.5rem 2.5rem 3.5rem;

  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 4rem;
}

/* ===============================
   BRAND COLUMN
================================ */

.footer-brand h3 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  letter-spacing: 0.4px;
}

.footer-brand p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.95;
  max-width: 520px;
}

/* ===============================
   COLUMNS
================================ */

.footer-column h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  font-size: 1rem;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}

/* links */
.footer-column a {
  color: var(--white);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold);
}

/* ===============================
   BOTTOM BAR
================================ */

.footer-bottom {
  width: 100%;
  padding: 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 1.75rem 3rem;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}
