/* ============================================================
   Pro Property Lawn Mowing – Main Stylesheet (SEO-optimised)
   ============================================================ */

/* ── Reset & Variables ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #16a34a;
  --green-dk: #15803d;
  --green-lt: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --yellow: #fbbf24;
  --red: #ef4444;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --font: ui-sans-serif, system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dk);
}

.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green-lt);
}

.btn-lg {
  padding: .9rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border: none;
  padding: .6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.btn-white:hover {
  background: var(--gray-100);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-image {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-txt strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-txt span {
  font-size: .75rem;
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: .95rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
  border-color: var(--green);
}

.hdr-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu:not([hidden]) {
  display: flex;
}

.mobile-menu a {
  padding: .65rem 0;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-of-type {
  border: none;
}

.mobile-menu .btn {
  margin-top: .75rem;
  text-align: center;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: .75rem 1.5rem;
  font-size: .85rem;
  color: var(--gray-500);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── Hero ── */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--green-lt) 0%, var(--blue-50) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  text-align: justify;
}

/* Invert colors when image is present */
.hero.has-bg .hero-title {
  color: var(--white);
}

.hero.has-bg .hero-desc {
  color: rgba(255, 255, 255, .9);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--yellow);
  font-size: 1.1rem;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--gray-600);
  font-size: .9rem;
}

.trust-chip .check {
  color: var(--green);
  font-weight: 700;
}

.hero-card {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.check-list .ci {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 6.5rem 0 3rem;
  background: linear-gradient(135deg, var(--green-lt), var(--blue-50));
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero.has-bg {
  color: var(--white);
}

.page-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: #f3f5f8;
  max-width: 600px;
  margin: .75rem auto 0;
  font-weight:bold;
}

.page-hero.has-bg p {
  color: rgba(255, 255, 255, .9);
}

/* ── Section Headings ── */
.sec-head {
  margin-bottom: 3.5rem;
}

.sec-head h2 {
  font-size: 2.4rem;
  margin-bottom: .75rem;
}

.sec-head p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Card Grids ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.card p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gray-700);
  font-size: .88rem;
}

.feat-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.card-price {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--green);
  font-size: .9rem;
}

/* Service card link */
a.card {
  display: block;
  color: inherit;
}

a.card h3 {
  color: var(--gray-900);
  transition: color .2s;
}

a.card:hover h3 {
  color: var(--green);
}

.location-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.location-card:hover .location-card-img img {
  transform: scale(1.08);
}

.location-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-card-content .card-icon {
  background: var(--green-lt);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 1.2rem;
}

/* ── Location Tabs System ── */
.location-tabs-container {
  padding: 3rem 0;
}

.tabs-wrapper {
  margin-bottom: 4rem;
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 72px; /* Set to header height */
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  border-radius: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  max-width: fit-content;
  margin: 0 auto;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  color: var(--green);
}

.tab-btn.active {
  color: var(--white);
}

.tabs-highlight {
  position: absolute;
  top: 0.5rem;
  height: calc(100% - 1rem);
  background: var(--green);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  z-index: 1;
}

/* Tab Panel Animations */
.tab-panel {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

/* Premium Location Card Enhancement */
.location-card {
  height: 100%;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--white);
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-200);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.location-card-img {
  position: relative;
  overflow: hidden;
}

.location-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover .location-card-img::after {
  opacity: 1;
}

.location-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.location-card:hover h3 {
  color: var(--green);
}

.location-card-content p {
  color: var(--gray-500);
  line-height: 1.6;
}

.card-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.location-card:hover .card-price {
  transform: translateX(5px);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text p {
  color: var(--gray-600);
}

.stats-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-lbl {
  color: var(--gray-600);
  font-size: .85rem;
}

.commit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.commit-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.commit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.commit-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.commit-icon {
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.commit-item h4 {
  font-size: .95rem;
  margin-bottom: .2rem;
}

.commit-item p {
  color: var(--gray-600);
  font-size: .88rem;
}

/* ── Testimonials ── */
.review-card .stars {
  margin-bottom: .75rem;
}

.review-card blockquote {
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.reviewer strong {
  display: block;
  font-weight: 700;
}

.reviewer span {
  color: var(--gray-500);
  font-size: .85rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--green-lt);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.cta-banner p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* ── Contact / Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fg {
  margin-bottom: 1.25rem;
}

.fg label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .12);
}

.fg textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Alert ── */
.alert {
  padding: .9rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.alert-success {
  background: var(--green-100);
  color: #065f46;
  border-left: 4px solid var(--green);
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid var(--red);
}

/* ── Info Cards (contact sidebar) ── */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.info-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.ii-icon {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ii-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
}

.ii-text a {
  color: var(--green);
}

.ii-text span {
  color: var(--gray-600);
  font-size: .88rem;
}

.emr-card {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.emr-card h3 {
  margin-bottom: .5rem;
}

.emr-card p {
  font-size: .9rem;
  opacity: .9;
  margin-bottom: 1rem;
}

/* ── Blog ── */
.post-card {
  display: flex;
  flex-direction: column;
}

.post-card img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-card .post-body {
  padding: 1.5rem;
}

.post-meta {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .5rem;
}

.post-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  transition: color .2s;
}

a.card:hover .post-card h3 {
  color: var(--green);
}

.post-card p {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.post-card .read-more {
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
}

/* ── Service Detail ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
}

.service-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 .75rem;
  color: var(--gray-900);
}

.service-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 .5rem;
}

.service-content p {
  margin-bottom: 1rem;
}

.service-content ul {
  margin: 1rem 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.service-content ul li {
  list-style: disc;
  color: var(--gray-700);
}

.service-sidebar {
  position: sticky;
  top: 6rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.sidebar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin: .5rem 0 1.5rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
}

details.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .3s;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Instagram Feed ── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: var(--gray-100);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.ig-item:hover img {
  transform: scale(1.08);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 163, 74, .75);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-overlay svg {
  color: #fff;
  width: 28px;
  height: 28px;
}

.ig-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: .8rem;
  text-align: center;
  padding: 1rem;
}

.ig-notice {
  text-align: center;
  padding: 2rem;
  color: var(--gray-500);
  font-size: .9rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--gray-900);
  color: #e2e8f0;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-icon {
  background: var(--green);
}

.footer-brand .logo-txt strong {
  color: #fff;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: .9rem;
  margin: 1rem 0;
}

.footer-contact {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.footer-contact a {
  color: #4ade80;
  font-size: .9rem;
}

.footer-links h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .9rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links li,
.footer-links a {
  color: var(--gray-400);
  font-size: .88rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: #4ade80;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--gray-400);
  font-size: .82rem;
}

.footer-bottom a:hover {
  color: #4ade80;
}

/* ── Grid Utilities ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ── Services Page ── */
.services-grid {
  padding: 3rem 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .3s ease;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: inline-block;
  width: 100%;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: var(--gray-900);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: .95rem;
}

.svc-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-lt);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  margin-top: auto;
}

/* ── Contact Page ── */
.contact-section {
  padding: 3rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--gray-900);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  transition: all .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-form .btn-primary {
  align-self: flex-start;
  padding: .9rem 2rem;
  font-size: 1rem;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
  color: var(--gray-900);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info {
  background: var(--white);
}

.contact-info h2 {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
  color: var(--gray-900);
}

.info-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.info-block:last-child {
  border-bottom: none;
}

.info-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gray-900);
}

.info-block p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: .95rem;
}

.info-block a {
  color: var(--green);
  font-weight: 600;
  transition: opacity .2s;
}

.info-block a:hover {
  opacity: .8;
}

/* ── Page Sections ── */
.page-section {
  padding: 3rem 0;
}

.text-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-section p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width:1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {

  .main-nav,
  .hdr-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    padding: 1.5rem;
  }
}

@media (max-width:600px) {

  .grid-3,
  .grid-2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .form-row,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-2x2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .svc-icon {
    font-size: 3rem;
  }

  .svc-price {
    font-size: .9rem;
    padding: .6rem .8rem;
  }

  .logo-image {
    max-height: 40px;
  }
}$content

/* ── Page Heroes ── */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #fff;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  line-height: 1.6;
}

.page-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: #fff;
}

@media (max-width: 768px) {
  .page-hero { padding: 6rem 0 3rem; }
  .page-hero h1 { font-size: 2.5rem; }
  .page-hero p { font-size: 1.1rem; }
}
