/* ============================================
   FOX IMPROVEMENT CO — Lawn & Garden
   ============================================ */

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

/* --- Variables --- */
:root {
  --forest: #1a3a2a;
  --moss: #2d5a3f;
  --sage: #6b8f71;
  --leaf: #4a7c59;
  --gold: #c8a45e;
  --gold-light: #e8d5a0;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d6;
  --white: #fefdfb;
  --charcoal: #2a2a28;
  --text: #3d3d3a;
  --text-light: #6e6e68;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 58, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 58, 42, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes growWidth {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(254, 253, 251, 0.95);
  box-shadow: 0 2px 20px rgba(26, 58, 42, 0.08);
  border-bottom-color: rgba(26, 58, 42, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.logo-text span {
  color: var(--gold);
}

.navbar.scrolled .logo-text {
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--forest); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--forest) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  letter-spacing: 0.02em;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 164, 94, 0.3);
}

.navbar.scrolled .nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--moss) !important;
  box-shadow: 0 4px 16px rgba(26, 58, 42, 0.2);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
  background: var(--forest);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(26, 58, 42, 0.75) 0%, rgba(26, 58, 42, 0.5) 50%, rgba(26, 58, 42, 0.35) 100%),
              url('hero.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 164, 94, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

/* Decorative leaf shapes */
.hero-leaf {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 60% 40% 60% 40%;
  opacity: 0.08;
  animation: leafSway 6s ease-in-out infinite;
}

.hero-leaf-1 {
  top: 15%;
  right: 8%;
  background: var(--white);
  transform: rotate(45deg);
  animation-delay: 0s;
}

.hero-leaf-2 {
  bottom: 20%;
  right: 15%;
  background: var(--white);
  width: 80px;
  height: 80px;
  transform: rotate(-30deg);
  animation-delay: 2s;
}

.hero-leaf-3 {
  top: 30%;
  left: 5%;
  background: var(--gold);
  width: 60px;
  height: 60px;
  transform: rotate(120deg);
  animation-delay: 4s;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '🌿';
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.15s both;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.3s both;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Stats Strip --- */
.stats {
  background: var(--forest);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* --- Section Styling --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- Services --- */
.services { background: var(--white); }

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--leaf));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 58, 42, 0.06);
  background: var(--white);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- About --- */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(107, 143, 113, 0.08) 0%, transparent 70%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='none'%3E%3Ccircle cx='40' cy='40' r='30' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}

.about-image-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.about-image-content .large-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.about-image-content p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  opacity: 0.9;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-accent-inner {
  text-align: center;
  color: var(--forest);
}

.about-accent-inner .number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1;
}

.about-accent-inner .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--forest);
  transition: var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.value-icon {
  width: 36px;
  height: 36px;
  background: rgba(26, 58, 42, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- Testimonials --- */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

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

.testimonial-quote {
  font-size: 2.4rem;
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
}

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

/* --- Service Areas --- */
.areas {
  background: var(--cream);
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--forest);
  transition: var(--transition);
}

.area-tag:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.area-tag::before {
  content: '📍';
  font-size: 0.85rem;
}

.areas-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.areas-info p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 32px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(165deg, var(--forest), var(--moss));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 164, 94, 0.3);
}

/* --- Contact --- */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-method-value {
  font-weight: 600;
  color: var(--forest);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 58, 42, 0.12);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  align-self: flex-start;
  background: var(--forest);
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.2);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); transform: translateX(4px); }

.footer-hours p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-logo span { color: var(--gold); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(26, 58, 42, 0.06);
  }

  .nav-links.active { display: flex; }

  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }

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