/* ============================================================
   EVERGREEN PINE & MAINTENANCE — Upgraded Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark:   #1b4332;
  --green-mid:    #2d6a4f;
  --green-main:   #40916c;
  --green-light:  #52b788;
  --green-pale:   #d8f3dc;
  --green-mist:   #f0faf2;
  --white:        #ffffff;
  --off-white:    #f8fdf9;
  --text-dark:    #0f1f16;
  --text-mid:     #3d5a48;
  --text-light:   #6b8f78;
  --border:       #c8e6d0;
  --shadow-sm:    0 2px 12px rgba(27,67,50,0.08);
  --shadow-md:    0 8px 32px rgba(27,67,50,0.14);
  --shadow-lg:    0 20px 60px rgba(27,67,50,0.2);
  --shadow-glow:  0 0 40px rgba(64,145,108,0.35);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    44px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --grad-green:   linear-gradient(135deg, #1b4332 0%, #40916c 100%);
  --grad-light:   linear-gradient(135deg, #40916c 0%, #74c69d 100%);
  --grad-hero:    linear-gradient(135deg, #0d2b1d 0%, #1b4332 35%, #2d6a4f 70%, #40916c 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── SCROLL ANIMATIONS ── */
[data-fade] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-fade].visible { opacity: 1; transform: translateY(0); }
[data-fade-delay="1"] { transition-delay: 0.1s; }
[data-fade-delay="2"] { transition-delay: 0.2s; }
[data-fade-delay="3"] { transition-delay: 0.3s; }
[data-fade-delay="4"] { transition-delay: 0.4s; }
[data-fade-delay="5"] { transition-delay: 0.5s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(64,145,108,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(64,145,108,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-3px);
}
.full-width { width: 100%; }

/* ── SECTION ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-top: 12px; }
.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 1.05rem;
}
.section-cta { text-align: center; margin-top: 52px; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(64,145,108,0.2);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

h1 em, h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #52b788, #95d5b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
   STICKY MOBILE CALL BUTTON
───────────────────────────────────────── */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  background: var(--grad-green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 30px rgba(64,145,108,0.55);
  animation: pulse-cta 2.5s infinite;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 6px 30px rgba(64,145,108,0.5); }
  50% { box-shadow: 0 10px 48px rgba(64,145,108,0.8); }
}
@media (max-width: 768px) { .sticky-call-btn { display: flex; } }

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,230,208,0.5);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.95);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.logo em { font-style: italic; color: var(--green-main); font-size: 0.88em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 15px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-main);
  background: var(--green-pale);
}
.nav-cta {
  background: var(--grad-green) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 16px rgba(64,145,108,0.35) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(64,145,108,0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  animation: hero-shift 12s ease-in-out infinite alternate;
}
@keyframes hero-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(82,183,136,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(116,198,157,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 85%, rgba(13,43,29,0.5) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2352b788' fill-opacity='0.06'%3E%3Cpolygon points='40,5 30,25 35,25 28,42 35,42 24,65 56,65 45,42 52,42 45,25 50,25'/%3E%3C/g%3E%3C/svg%3E");
  animation: float-pattern 20s linear infinite;
}
@keyframes float-pattern {
  from { transform: translateY(0); }
  to   { transform: translateY(-80px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,43,29,0.75) 0%, rgba(27,67,50,0.2) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(82,183,136,0.2);
  border: 1px solid rgba(82,183,136,0.45);
  color: #95d5b2;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-content h1 em {
  background: linear-gradient(135deg, #74c69d, #b7e4c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  width: fit-content;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #74c69d;
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.18); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-anim 2.2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────── */
.services-preview { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.featured {
  background: var(--grad-green);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.service-card.featured::before { background: rgba(255,255,255,0.3); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.8); }
.service-card.featured .card-link { color: #95d5b2; }

.service-icon { font-size: 2.4rem; margin-bottom: 18px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 20px; line-height: 1.6; }
.card-link { font-size: 0.87rem; font-weight: 700; color: var(--green-main); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image { position: relative; }
.why-us-img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.why-us-img-placeholder svg, .why-us-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.why-us-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--grad-green);
  color: var(--white);
  text-align: center;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(64,145,108,0.45);
}
.why-us-badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.why-us-badge-float span { font-size: 0.75rem; opacity: 0.85; }

.why-us-content .section-tag { margin-bottom: 14px; }
.why-us-content h2 { margin-bottom: 16px; }
.why-us-content .lead { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.75; }

.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 34px;
  height: 34px;
  background: var(--grad-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(64,145,108,0.3);
}
.why-list strong { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.why-list p { color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 860px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 52px; }
  .why-us-image { max-width: 440px; }
  .why-us-badge-float { right: 0; }
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,230,208,0.6);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  background: var(--white);
  border-color: var(--green-light);
}
.testimonial-card.featured {
  background: var(--grad-green);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured p,
.testimonial-card.featured .reviewer span { color: rgba(255,255,255,0.8); }
.testimonial-card.featured .reviewer strong { color: var(--white); }
.testimonial-card.featured .stars { color: #ffd700; }

.stars { color: #f4a623; font-size: 1.15rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(64,145,108,0.2);
}
.testimonial-card.featured .reviewer-avatar {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer span { font-size: 0.8rem; color: var(--text-light); }

@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ─────────────────────────────────────────
   CONTACT CTA
───────────────────────────────────────── */
.contact-cta { background: var(--off-white); }
.cta-box {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content h2 em {
  background: linear-gradient(135deg, #74c69d, #b7e4c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 1rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.quick-form {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.quick-form h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--green-dark); margin-bottom: 4px; }
.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(64,145,108,0.12);
}
.success-msg {
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 0;
}

@media (max-width: 860px) {
  .cta-box { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; border-radius: var(--radius-lg); }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #0d2b1d;
  color: rgba(255,255,255,0.85);
  padding-top: 80px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo span { color: var(--white); }
.footer-logo em { color: var(--green-light); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 260px; line-height: 1.65; }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-services a:hover { color: var(--white); }

.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact a { color: var(--green-light); }
.footer-contact a:hover { color: var(--white); }
.hours { font-size: 0.82rem !important; color: rgba(255,255,255,0.38) !important; margin-top: 6px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-align: center; }

@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2352b788' fill-opacity='0.06'%3E%3Cpolygon points='40,5 30,25 35,25 28,42 35,42 24,65 56,65 45,42 52,42 45,25 50,25'/%3E%3C/g%3E%3C/svg%3E");
  animation: float-pattern 20s linear infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(82,183,136,0.2) 0%, transparent 60%);
}
.page-hero * { position: relative; z-index: 1; }
.page-hero .section-tag { margin-bottom: 14px; background: rgba(82,183,136,0.15); color: #95d5b2; border-color: rgba(82,183,136,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumb { text-align: center; margin-bottom: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.service-detail { padding: 90px 0; border-bottom: 1px solid var(--border); }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail:last-child { border-bottom: none; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-content { direction: ltr; }
.service-detail:nth-child(even) .service-detail-visual { direction: ltr; }

.service-detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.service-detail-visual:hover { transform: scale(1.02); }
.service-visual-icon { font-size: 5rem; opacity: 0.7; }

.service-detail-content .section-tag { margin-bottom: 14px; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.service-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-mid);
}
.service-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--grad-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(64,145,108,0.25);
}

@media (max-width: 860px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; direction: ltr !important; }
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-story { background: var(--white); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.about-img:hover { transform: scale(1.02); }

@media (max-width: 860px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-img { max-width: 420px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-green);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::after { opacity: 0.04; }
.value-card > * { position: relative; z-index: 1; }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.05em;
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-light);
}
.team-info { padding: 22px 20px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info .role { color: var(--green-main); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; display: block; }
.team-info p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   PRICING BANNER
───────────────────────────────────────── */
.pricing-banner {
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 60px 0;
  border: 1px solid rgba(64,145,108,0.2);
  box-shadow: var(--shadow-sm);
}
.pricing-banner h3 { margin-bottom: 12px; }
.pricing-banner p { color: var(--text-mid); margin-bottom: 28px; }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
