/* =========================================================
   1. GLOBAL STYLES & RESET
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 60px 0;
}

/* =========================================================
   2. HEADER & NAVIGATION
   ========================================================= */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 3px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  min-height: 60px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 90px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 5px 10px;
  display: inline-block;
}

nav a.active,
nav a:hover {
  color: #27ae60;
}

/* =========================================================
   3. HERO SECTION (Homepage)
   ========================================================= */
.overlay {
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
  padding: 50px;
  color: #fff;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

/* =========================================================
   4. BUTTONS & CALL TO ACTION
   ========================================================= */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #f6c945, #f08c22);
  color: #1b270f;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(240, 140, 34, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ffda5a, #f39f3c);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(240, 140, 34, 0.45);
}

.cta {
  background: #1f6a3f;
  color: white;
  text-align: center;
}

.cta span {
  font-weight: bold;
}

/* =========================================================
   5. HOMEPAGE HIGHLIGHTS SECTION
   ========================================================= */
/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  --hero-image: url('https://mtslandscapinganddesign.com/wp-content/uploads/2024/06/7Q0A6903-scaled-1.jpg');
  position: relative;
  background: var(--hero-image) center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 34, 24, 0.85), rgba(12, 34, 24, 0.35));
}

.hero .overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 130px;
}

.hero .container {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  padding: 0 24px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #ecffef;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #b8ffbb;
  margin-bottom: 20px;
}

.hero .hero-copy {
  max-width: 560px;
}

.hero .hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #f6c945, #f08c22);
  color: #1b270f;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(240, 140, 34, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ffda5a, #f39f3c);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(240, 140, 34, 0.45);
}

/* =========================================================
   GENERAL SECTION LAYOUT
   ========================================================= */
section {
  padding: 70px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================================
   GRID LAYOUT / CARDS
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 20px 40px rgba(6, 18, 11, 0.25);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(6, 18, 11, 0.32);
}

.card h3 {
  color: #27ae60;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* =========================================================
   CALL TO ACTION (CTA)
   ========================================================= */
.cta {
  background: linear-gradient(135deg, #1b4d2f, #136037);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

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

.cta span {
  color: #fff;
  font-weight: bold;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}

/* =========================================================
   SERVICE IMAGES / CTA BUTTONS
   ========================================================= */
.service-img {
  width: calc(100% + 56px);
  margin: -28px -28px 18px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 18px 35px rgba(6, 18, 11, 0.4);
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.card:hover .service-img {
  transform: scale(1.06);
  filter: saturate(1.25) contrast(1.08);
  box-shadow: 0 32px 60px rgba(6, 18, 11, 0.55);
}

.service-img--landscaping {
  object-position: center 20%;
}

.cta-btn {
  text-align: center;
  margin-top: 40px;
}

.cta-btn .btn {
  padding: 12px 35px;
  background: linear-gradient(135deg, #f6c945, #f08c22);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #1b270f;
  box-shadow: 0 14px 28px rgba(240, 140, 34, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn .btn:hover {
  background: linear-gradient(135deg, #ffda5a, #f39f3c);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(240, 140, 34, 0.45);
}

/* =========================================================
   CORE SERVICES SECTION
   ========================================================= */
.highlights {
  background:
    linear-gradient(rgba(19, 70, 42, 0.65), rgba(19, 70, 42, 0.65)),
    url('images/uploads/services-leaf-bg.png') center/30% repeat,
    url('images/uploads/services-leaf-bg.png') 0% 40%/25% repeat,
    radial-gradient(circle at 15% 20%, rgba(98, 212, 148, 0.32), transparent 50%),
    linear-gradient(135deg, #13462a, #24653d);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.highlights::before,
.highlights::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.18;
  z-index: 1;
}

.highlights::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(63, 191, 116, 0.35), transparent 65%);
  top: -160px;
  right: -150px;
}

.highlights::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 70%);
  bottom: -210px;
  left: -190px;
}

.highlights .container,
.highlights .cta-btn {
  position: relative;
  z-index: 2;
}

.highlights .card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(6, 18, 11, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
/* =========================================================
   SERVICES PAGE - CLEAN SPLIT DESIGN
   ========================================================= */

body.services-page {
  background: #f4f7f2;
}

.services-hero {
  background: url('https://mtslandscapinganddesign.com/wp-content/uploads/2024/06/7Q0A6903-scaled-1.jpg')
      center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 34, 24, 0.85), rgba(12, 34, 24, 0.35));
}

.services-hero .overlay {
  width: 100%;
  background: transparent;
  padding: 120px 0;
  text-align: left;
  position: relative;
  z-index: 2;
}

.services-hero .container {
  max-width: 780px;
}

.services-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #b8ffbb;
}

.services-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.services-hero .hero-copy {
  font-size: 1.15rem;
  color: #ecffef;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.services-overview {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(98, 212, 148, 0.22), transparent 55%),
    linear-gradient(145deg, #13462a, #24653d);
  overflow: hidden;
}

.services-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('images/uploads/services-leaf-bg.png') center/32% repeat,
    url('images/uploads/services-leaf-bg.png') 20% 40%/28% repeat;
  opacity: 0.65;
  mix-blend-mode: multiply;
  z-index: 0;
}

.services-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(144, 241, 182, 0.35), transparent 70%),
    radial-gradient(circle at 90% 120%, rgba(255, 255, 255, 0.22), transparent 75%);
  opacity: 0.8;
  z-index: 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.services-overview .section-heading {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(10, 32, 21, 0.18);
  max-width: 640px;
  margin: 0 auto 60px;
}

.services-overview .section-heading h2 {
  color: #12331d;
}

.services-overview .section-heading p {
  color: #4b5a50;
}

.services-overview .service-horizontal {
  margin-top: 0;
}

.services-overview .container {
  position: relative;
  z-index: 2;
}

.service-horizontal {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 28px;
  padding: 48px;
  color: #12331d;
  box-shadow: 0 20px 45px rgba(16, 50, 32, 0.08);
  background: #ffffff;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-text {
  flex: 1 1 50%;
  max-width: 520px;
}

.service-row-text h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-row-text p {
  margin-bottom: 18px;
  color: #3f5045;
  line-height: 1.6;
}

.service-row-text ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-row-text li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.service-row-text li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #27ae60;
  left: 0;
  top: 10px;
}

.service-row-media {
  flex: 1 1 50%;
}

.service-row-media img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  max-height: 340px;
  box-shadow: 0 16px 35px rgba(15, 45, 29, 0.18);
}

.service-row.variant-fern {
  background: linear-gradient(145deg, #f7fff7, #e4f6ea);
}

.service-row.variant-lawn {
  background: linear-gradient(145deg, #f6fbf7, #e6f5ea);
}

.service-row.variant-meadow {
  background: linear-gradient(145deg, #f4fbf6, #e5f6ef);
}

.service-before-after {
  background: linear-gradient(180deg, #173b25, #235b36);
  color: #f3fff8;
  padding: 90px 0;
}

.before-after-headline {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.before-after-headline h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.before-after-headline p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.before-after-slider {
  position: relative;
}

.mega-slider .slider-window {
  overflow: hidden;
  border-radius: 24px;
}

.mega-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.before-after-card {
  min-width: 100%;
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: rgba(3, 12, 7, 0.85);
  border-radius: 24px;
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 28px 50px rgba(0, 0, 0, 0.35);
}

.split-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0a160d;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.45));
}

.split-image .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(39, 174, 96, 0.85);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #0c1d11;
}

.slider-nav {
  background: rgba(12, 34, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e7fbe5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-nav.prev {
  left: 16px;
}

.slider-nav.next {
  right: 16px;
}

.slider-nav:hover,
.slider-nav:focus-visible {
  background: #27ae60;
  color: #0c1d11;
  transform: translateY(calc(-50% - 2px));
  border-color: transparent;
}

.slider-nav span {
  font-size: 1.4rem;
  line-height: 1;
}

.slider-nav[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot[aria-selected="true"] {
  background: #27ae60;
  transform: scale(1.2);
}

.slider-dot:focus-visible {
  outline: 2px solid #27ae60;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .split-frame {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .split-image {
    aspect-ratio: 3 / 4;
  }

  .before-after-card {
    padding: 12px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-panel {
  background: linear-gradient(135deg, #1b4d2f, #27ae60);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-panel .cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-panel h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.cta-panel p {
  font-size: 1.05rem;
  color: #e6ffee;
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .services-hero h1 {
    font-size: 2.4rem;
  }

  .service-row {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 42px 32px;
  }

  .service-row:nth-child(even) {
    flex-direction: column;
  }

  .service-row-text {
    max-width: none;
  }

  .service-row-media img {
    max-height: 260px;
  }

  .before-after-headline h2 {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .services-hero .overlay {
    padding: 100px 0 80px;
  }

  .service-row {
    padding: 36px 24px;
  }

  .service-row-media img {
    max-height: 220px;
  }

}

/* =========================================================
   9. CONTACT PAGE
   ========================================================= */
body.contact-page {
  background: #f4f7f2;
}

.contact-hero {
  position: relative;
  padding: 120px 0 110px;
  background: url('https://mtslandscapinganddesign.com/wp-content/uploads/2024/06/7Q0A6903-scaled-1.jpg')
    center/cover no-repeat;
  color: #fff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 34, 24, 0.85), rgba(12, 34, 24, 0.35));
}

.contact-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.contact-hero-copy {
  flex: 1 1 50%;
  max-width: 520px;
}

.contact-hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: #b8ffbb;
}

.contact-hero h1 {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-hero-copy p {
  font-size: 1.15rem;
  color: #ecffef;
  max-width: 460px;
}

.contact-hero-cta {
  margin-top: 32px;
}

.contact-hero-cta .btn {
  background: linear-gradient(135deg, #f6c945, #f08c22);
  color: #1b270f;
  border-radius: 999px;
  padding: 14px 36px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(240, 140, 34, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-hero-cta .btn:hover {
  background: linear-gradient(135deg, #ffda5a, #f39f3c);
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(240, 140, 34, 0.5);
}

.contact-hero-form {
  flex: 1 1 40%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 20px 26px;
  box-shadow: 0 25px 50px rgba(9, 26, 16, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #12331d;
}

.contact-hero-form h2 {
  font-size: 1.9rem;
  margin-bottom: 6px;
  color: #12331d;
}

.contact-hero-form .form-subtitle {
  margin-bottom: 14px;
  color: #335242;
}

.contact-hero-form input,
.contact-hero-form textarea {
  background: #ffffff;
  border: 1px solid rgba(16, 52, 33, 0.25);
  color: #12331d;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 10px;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.contact-hero-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-hero-form input:focus,
.contact-hero-form textarea:focus {
  outline: none;
  border-color: #1b4d2f;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.contact-submit {
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #27ae60, #1f874d);
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.contact-submit:hover {
  background: linear-gradient(135deg, #1f874d, #1b7040);
}

.contact-intro {
  padding: 90px 0 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 25px 45px rgba(12, 34, 24, 0.08);
}

.contact-card h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.contact-card p {
  color: #4a4a4a;
  margin-bottom: 18px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-card li {
  font-weight: 500;
  color: #1c241d;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  color: #27ae60;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f0f7f2;
  color: #12331d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #27ae60;
  color: #fff;
  transform: translateY(-2px);
}

.contact-main {
  padding: 40px 0 100px;
}

.contact-main-panel {
  background: #fff;
  border-radius: 24px;
  padding: 60px 55px;
  box-shadow: 0 25px 45px rgba(12, 34, 24, 0.1);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-main-panel h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.contact-main-panel p {
  color: #4a4a4a;
  margin-bottom: 24px;
}

.info-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.callout {
  background: #e6ffee;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  color: #1b4d2f;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7e4db;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: #f9fcfa;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.map-wrap {
  padding: 0 0 100px;
}

.map-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 45px rgba(12, 34, 24, 0.08);
}

.map-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.map-card p {
  color: #4a4a4a;
  margin-bottom: 24px;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
}

@media (max-width: 900px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero {
    padding: 110px 0 90px;
  }

  .contact-hero-inner {
    flex-direction: column;
    gap: 36px;
    padding: 0 20px;
  }

  .contact-hero-form {
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 90px 0 70px;
  }

  .contact-hero-form {
    padding: 24px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}

/* =========================================================
   10. FOOTER
   ========================================================= */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}
