/* ============================================================
   ROYLE TURF & TICK — Main Stylesheet
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --green-dark:   #1b4332;
  --green-mid:    #2d6a4f;
  --green-light:  #40916c;
  --green-accent: #74c69d;
  --green-pale:   #d8f3dc;
  --green-bg:     #f0f7f2;
  --earth:        #6b4226;
  --cream:        #f8f6f0;
  --text:         #1a1a1a;
  --text-mid:     #3d3d3d;
  --text-light:   #666;
  --white:        #ffffff;
  --border:       #dde8e2;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.15);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --transition:   0.28s ease;
  --max-width:    1160px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-green  { color: var(--green-mid); }
.bg-cream    { background: var(--cream); }
.bg-green    { background: var(--green-dark); }
.bg-pale     { background: var(--green-bg); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-logo-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  background: var(--green-bg);
  color: var(--green-dark);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.7rem;
  opacity: 0.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--green-bg);
  color: var(--green-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.nav-phone:hover { color: var(--green-mid); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b1a 0%, #1b4332 40%, #2d6a4f 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(116,198,157,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(64,145,108,0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(116,198,157,0.2);
  border: 1px solid rgba(116,198,157,0.4);
  color: var(--green-accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 span { color: var(--green-accent); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(116,198,157,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICE AREA BANNER
   ============================================================ */
.area-banner {
  background: var(--green-pale);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.area-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 500;
  flex-wrap: wrap;
  text-align: center;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-accent);
}

.service-card-icon {
  height: 180px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.service-card-icon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 0.75rem;
}

.service-card-body p {
  flex: 1;
  font-size: 0.95rem;
}

.service-card-body .btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.differentiators {
  background: var(--cream);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.diff-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.diff-icon {
  width: 54px;
  height: 54px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.diff-item h4 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.diff-item p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green-mid);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .badge-num {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-text .section-label { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1rem; }

.credentials-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--text-mid);
}

.credentials-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   ECO / LAKE SECTION
   ============================================================ */
.eco-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5c40 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.eco-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(116,198,157,0.08);
  border-radius: 50%;
}

.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eco-text h2 { color: var(--white); }
.eco-text p  { color: rgba(255,255,255,0.8); }

.eco-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.eco-feature {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.eco-feature .ef-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.eco-feature h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.eco-feature p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--green-pale);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-mid);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-num {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.process-step h4 { margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.88rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--green-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: #f4a820;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--green-dark);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #0d2018;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-contact-item a {
  color: var(--green-accent);
  font-weight: 500;
}

.footer-col h5 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--green-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 5rem 0;
  color: var(--white);
}

.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.page-hero .breadcrumb a { color: var(--green-accent); }
.page-hero .breadcrumb span { opacity: 0.5; }

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; }

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--green-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Merriweather', Georgia, serif;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: all var(--transition);
}

.service-list li:hover {
  border-color: var(--green-accent);
  background: var(--green-bg);
}

.service-list li .sl-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-list li strong { display: block; color: var(--text); margin-bottom: 0.2rem; }

.info-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.info-box h4 { color: var(--green-dark); margin-bottom: 0.5rem; }
.info-box p  { font-size: 0.92rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}

.blog-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.blog-card-body p  { font-size: 0.9rem; color: var(--text-light); }

/* Article */
.article-body {
  max-width: 740px;
}

.article-body h2 { margin: 2.5rem 0 1rem; font-size: 1.65rem; }
.article-body h3 { margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.article-body p  { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol {
  margin: 1rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.article-body li {
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
  color: var(--text-mid);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h4 { margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

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

.contact-info-card {
  background: var(--green-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: fit-content;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ci-text h5 { font-size: 0.85rem; color: var(--text-light); font-family: inherit; font-weight: 600; margin-bottom: 0.25rem; }
.ci-text a  { font-size: 1.05rem; font-weight: 600; color: var(--green-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 520px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .eco-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-phone { font-size: 0.88rem; }

  .hero { min-height: 75vh; padding: 3rem 0; }

  .hero-trust { gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .about-split { gap: 2rem; }

  .services-grid { grid-template-columns: 1fr; }

  .eco-features { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .diff-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .name-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE NAV (JS-powered, toggled via .nav-open on body)
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 1.5rem;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.mobile-nav a:hover { color: var(--green-dark); }

.mobile-nav .mobile-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PROPERTY EXPLORER (interactive SVG illustration)
   ============================================================ */

.property-explorer { background: var(--green-bg); }

.property-map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Aspect-ratio container keeps hotspot % positions correct at all widths */
.property-svg-container {
  position: relative;
  width: 100%;
  aspect-ratio: 900 / 520;
  overflow: hidden;
}

.property-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Hotspot buttons ---- */
.zone-hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.93);
  border: 2.5px solid var(--green-mid);
  border-radius: 999px;
  padding: 0.28rem 0.75rem 0.28rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--green-dark);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.zone-hotspot:hover {
  background: white;
  border-color: var(--green-dark);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 5px 18px rgba(0,0,0,0.22);
}

.zone-hotspot.active {
  background: var(--green-mid);
  border-color: var(--green-dark);
  color: white;
  transform: translate(-50%, -50%) scale(1.06);
}

/* Pulsing dot inside each hotspot */
.hotspot-dot {
  width: 10px;
  height: 10px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  animation: hotspot-pulse 2.2s ease-in-out infinite;
}

.zone-hotspot.active .hotspot-dot {
  background: white;
  animation: none;
}

@keyframes hotspot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.6); }
  60%  { box-shadow: 0 0 0 8px rgba(45, 106, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0); }
}

/* ---- Info panel ---- */
.property-info-panel {
  background: white;
  border-top: 4px solid var(--green-mid);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.75rem 2rem;
  min-height: 110px;
}

.panel-default-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: var(--text-light);
  font-size: 0.95rem;
  gap: 0.5rem;
}

.panel-content { display: none; }
.panel-content.visible { display: block; }

.panel-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.panel-zone-icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.panel-top h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.panel-top p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.panel-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.panel-service-card {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--green-accent);
}

.panel-service-card .svc-icon { font-size: 1.1rem; margin-bottom: 0.3rem; }

.panel-service-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
}

.panel-service-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ---- Mobile zone buttons (shown below map on small screens) ---- */
.zone-mobile-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.zone-mobile-btn {
  padding: 0.7rem 0.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--green-dark);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.zone-mobile-btn:hover,
.zone-mobile-btn.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
}

@media (max-width: 900px) {
  .property-svg-container { aspect-ratio: 900 / 480; }
  .panel-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .zone-hotspot { display: none; } /* hide SVG hotspot labels on very small screens */
  .zone-mobile-grid { display: grid; }
  .panel-services-grid { grid-template-columns: 1fr; }
  .property-info-panel { padding: 1.25rem; }
  .panel-top { flex-direction: column; gap: 0.5rem; }
  .panel-zone-icon { font-size: 1.8rem; }
}
