/* ============================================
   Chopp-Kallio Insurance Agency — Custom Styles
   ============================================ */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2e1a;
  background-color: #faf9f6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1b5e20;
  background: rgba(27, 94, 32, 0.08);
  border: 1px solid rgba(27, 94, 32, 0.2);
  padding: 0.4em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-label--light {
  color: #a5d6a7;
  background: rgba(165, 214, 167, 0.12);
  border-color: rgba(165, 214, 167, 0.25);
}

/* --- Section Titles --- */
.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.25;
  color: #1a2e1a;
  margin-bottom: 1rem;
}

.section-title--light {
  color: #f5f3ee;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5e4a;
  max-width: 640px;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #1b5e20;
  color: #ffffff;
  border-color: #1b5e20;
}

.btn--primary:hover {
  background: #145017;
  border-color: #145017;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
}

.btn--outline {
  background: transparent;
  color: #1b5e20;
  border-color: #1b5e20;
}

.btn--outline:hover {
  background: #1b5e20;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--white {
  background: #ffffff;
  color: #1b5e20;
  border-color: #ffffff;
}

.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-arrow, .btn-phone {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1b5e20;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo-text {
  transition: opacity 0.2s;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3a4e3a;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #1b5e20;
  background: rgba(27, 94, 32, 0.06);
}

.nav-link--cta {
  background: #1b5e20;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  margin-left: 0.5rem;
}

.nav-link--cta:hover {
  background: #145017;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a2e1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3b12 0%, #1b5e20 25%, #2e7d32 50%, #1a5276 75%, #0d3b12 100%);
  z-index: 1;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(46, 125, 50, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(26, 82, 118, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(13, 59, 18, 0.7) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 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='1'%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");
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #a5d6a7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero-headline {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.hero-trust-item svg {
  width: 1rem;
  height: 1rem;
  color: #a5d6a7;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-badge-number {
  display: block;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #1b5e20;
  line-height: 1;
}

.hero-badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5e4a;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: all 0.3s ease;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll svg {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Services --- */
.services {
  padding: 100px 0;
  background: #faf9f6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid rgba(27, 94, 32, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1b5e20, #2e7d32);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 94, 32, 0.12);
  border-color: rgba(27, 94, 32, 0.15);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 94, 32, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #1b5e20;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: #1b5e20;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
  color: #ffffff;
}

.service-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: #4a5e4a;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1b5e20;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 0.625rem;
}

.service-link svg {
  width: 1rem;
  height: 1rem;
}

/* --- About --- */
.about {
  padding: 100px 0;
  background: #f5f3ee;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid #f5f3ee;
}

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

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #1b5e20;
  color: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(27, 94, 32, 0.35);
}

.about-exp-number {
  display: block;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.about-exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-content .section-label {
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1rem;
  color: #4a5e4a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  gap: 1rem;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #1b5e20;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.about-value-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 0.25rem;
}

.about-value-desc {
  font-size: 0.875rem;
  color: #4a5e4a;
  line-height: 1.65;
}

/* --- Why Us --- */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d3b12 0%, #1b5e20 50%, #145017 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-item-number {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(165, 214, 167, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.why-item-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.375rem;
}

.why-item-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
  display: block;
}

.why-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  max-width: 260px;
}

.why-stat-number {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #1b5e20;
  line-height: 1;
}

.why-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a5e4a;
  line-height: 1.5;
  margin-top: 0.375rem;
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: #faf9f6;
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(27, 94, 32, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 94, 32, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: #f59e0b;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: #3a4e3a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  background: rgba(27, 94, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-avatar svg {
  width: 20px;
  height: 20px;
  color: #1b5e20;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a2e1a;
}

.testimonial-author-location {
  font-size: 0.8125rem;
  color: #6a7e6a;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a5276 0%, #1b5e20 60%, #0d3b12 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 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='1'%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");
}

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

.cta-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

/* --- Contact --- */
.contact {
  padding: 100px 0;
  background: #f5f3ee;
}

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

.contact-text {
  font-size: 1rem;
  color: #4a5e4a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #1b5e20;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1b5e20;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: #1a2e1a;
  line-height: 1.6;
}

.contact-link {
  color: #1b5e20;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #2e7d32;
  text-decoration: underline;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(27, 94, 32, 0.06);
}

.contact-form-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a2e1a;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: #6a7e6a;
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3a4e3a;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1a2e1a;
  background: #faf9f6;
  border: 1.5px solid #e0ddd5;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #1b5e20;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-input::placeholder {
  color: #a0a09a;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a7e6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(27, 94, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: #1b5e20;
}

.form-success-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 0.5rem;
}

.form-success-text {
  font-size: 0.9375rem;
  color: #4a5e4a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- Map --- */
.map-section {
  border-top: 4px solid #1b5e20;
}

.map-container {
  filter: saturate(0.7) contrast(1.05);
}

/* --- Footer --- */
.footer {
  background: #0d1f0d;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5d6a7;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #a5d6a7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: #a5d6a7;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #a5d6a7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
  max-width: 640px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .about-grid {
    grid-template-columns:
