:root {
    --green-deep: #1a3d1f;
    --green-mid: #2d6a35;
    --green-bright: #3d8b46;
    --green-light: #e8f5e9;
    --green-accent: #56b160;
    --lime: #6abf4b;
    --lime-light: #edf7e9;
    --cream: #fafaf7;
    --white: #ffffff;
    --gray-100: #f4f4f0;
    --gray-200: #e8e8e2;
    --gray-400: #9a9a94;
    --gray-600: #5a5a55;
    --gray-800: #2c2c28;
    --shadow-sm: 0 2px 8px rgba(26,61,31,0.08);
    --shadow-md: 0 8px 32px rgba(26,61,31,0.12);
    --shadow-lg: 0 20px 60px rgba(26,61,31,0.16);
    --radius: 12px;
    --radius-lg: 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2 { font-family: 'DM Serif Display', serif; }

  /* ===== HEADER ===== */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
  }
  header.scrolled { box-shadow: var(--shadow-md); }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--green-mid);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--green-deep);
    line-height: 1;
  }
  .logo-sub {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  nav { display: flex; align-items: center; gap: 6px; }

  nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  nav a:hover { color: var(--green-mid); background: var(--green-light); }

  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-dropdown > a::after {
    content: '▾';
    font-size: 12px;
    color: var(--gray-400);
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    z-index: 200;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-600);
    border-radius: 8px;
    transition: all 0.2s;
  }
  .dropdown-menu a:hover { background: var(--green-light); color: var(--green-mid); }

  .btn-primary {
    background: var(--green-mid);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,106,53,0.3); }

  .btn-lime {
    background: #6abf4b;
    color: #0d2110;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
  }
  .btn-lime:hover { background: #7dd15e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(106,191,75,0.45); }

  .btn-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--green-deep);
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61,139,70,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(86,177,96,0.2) 0%, transparent 50%),
      linear-gradient(135deg, #0d2110 0%, #1a3d1f 50%, #2d6a35 100%);
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  .hero-leaf {
    position: absolute;
    opacity: 0.06;
    font-size: 200px;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    user-select: none;
  }

  .hero-leaf2 {
    position: absolute;
    opacity: 0.04;
    font-size: 120px;
    left: -20px;
    bottom: 10%;
    transform: rotate(30deg);
    user-select: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(86,177,96,0.2);
    border: 1px solid rgba(86,177,96,0.4);
    color: #a8dba5;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--green-accent);
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
  }
  .trust-badge-icon {
    width: 28px;
    height: 28px;
    background: rgba(86,177,96,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .hero-stats {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-item {
    text-align: center;
  }
  .stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-num span { color: var(--green-accent); }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }

  .stat-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 24px 0;
    grid-column: 1 / -1;
  }

  .hero-image-note {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    margin-top: -24px;
  }

  /* ===== PROMO BANNER ===== */
  .promo-banner {
    background: #1a3d1f;
    border-bottom: 2px solid #3d8b46;
    padding: 14px 24px;
    text-align: center;
    color: #a8dba5;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.01em;
  }
  .promo-banner strong { color: #ffffff; }
  .promo-banner a {
    color: #6abf4b;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
  }

  /* ===== SECTION WRAPPER ===== */
  .section { padding: 96px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
    background: var(--green-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
  .section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--green-deep);
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .section-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
  }

  /* ===== SERVICES ===== */
  .services { background: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
  }

  .service-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-mid);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-accent);
    background: white;
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  .service-card:hover .service-icon {
    background: var(--green-mid);
    transform: scale(1.1) rotate(-5deg);
  }

  .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
  }
  .service-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-mid);
    background: var(--green-light);
    padding: 4px 10px;
    border-radius: 50px;
  }

  /* ===== WHY US ===== */
  .why-us { background: var(--green-deep); }
  .why-us .section-label { background: rgba(86,177,96,0.2); color: var(--green-accent); }
  .why-us .section-header h2 { color: white; }
  .why-us .section-header p { color: rgba(255,255,255,0.6); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
  }
  .why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(86,177,96,0.4);
    transform: translateY(-4px);
  }

  .why-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
  }
  .why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }
  .why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* ===== GALLERY ===== */
  .gallery { background: var(--gray-100); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--green-mid);
  }
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gallery-card:hover img { transform: scale(1.08); }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,33,16,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-card:hover .gallery-overlay { opacity: 1; }

  .gallery-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-accent);
    background: rgba(86,177,96,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(86,177,96,0.3);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
  }
  .gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
  }
  .gallery-location {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }

  .gallery-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--white); }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .review-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
  }
  .review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .review-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .review-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
  }
  .review-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-800);
  }
  .review-location {
    font-size: 13px;
    color: var(--gray-400);
  }
  .google-badge {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ===== SERVICE AREAS ===== */
  .areas { background: var(--green-light); }

  .areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .areas-left h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--green-deep);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .areas-left p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
  }

  .cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .city-chip {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
    text-align: center;
    transition: all 0.2s;
    cursor: default;
  }
  .city-chip:hover {
    background: var(--green-mid);
    color: white;
    border-color: var(--green-mid);
    transform: scale(1.03);
  }

  /* ===== QUOTE FORM ===== */
  .quote { background: var(--white); }

  .quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .quote-info h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--green-deep);
    margin-bottom: 16px;
  }
  .quote-info p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .contact-item strong {
    font-size: 16px;
    color: var(--gray-800);
    display: block;
  }
  .contact-item span {
    font-size: 14px;
    color: var(--gray-400);
  }

  .form-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
  }

  .form-header {
    background: var(--green-deep);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 24px 28px;
    margin: -40px -40px 32px;
  }
  .form-header h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 4px;
  }
  .form-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }

  .form-group {
    margin-bottom: 20px;
  }
  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--gray-800);
    background: var(--cream);
    transition: all 0.2s;
    appearance: none;
  }
  .form-input:focus {
    outline: none;
    border-color: var(--green-mid);
    background: white;
    box-shadow: 0 0 0 4px rgba(45,106,53,0.1);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--green-mid);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .form-submit:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45,106,53,0.3);
  }

  /* ===== FAQ ===== */
  .faq { background: var(--gray-100); }

  .faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .faq-item:hover { box-shadow: var(--shadow-sm); }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--green-mid); }

  .faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--green-mid);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
  }
  .faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
  }

  .faq-item.open .faq-arrow {
    background: var(--green-mid);
    color: white;
    transform: rotate(180deg);
  }
  .faq-item.open .faq-answer { max-height: 300px; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.7);
    padding: 72px 24px 32px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .footer-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--green-mid);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .footer-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: white;
  }
  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.5);
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--green-accent); }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
  }

  .footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: white; }

  /* ===== FLOATING BUTTONS ===== */
  .floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }

  .fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.2s;
    text-decoration: none;
  }
  .fab:hover { transform: scale(1.1); }
  .fab-whatsapp { background: #25D366; color: white; }
  .fab-quote { background: var(--lime); color: white; }



  .seo-content {
    background: #fff;
  }

  .seo-text {
    max-width: 1100px;
    margin: auto;
  }

  .seo-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 24px;
  }

  .seo-text a {
    color: #15803d;
    font-weight: 600;
    text-decoration: none;
  }

  .seo-text a:hover {
    text-decoration: underline;
  }



  /* ===== MOBILE NAV ===== */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    z-index: 200;
    padding: 24px;
    overflow-y: auto;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }
  .mobile-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
  }
  .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
  .mobile-nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 600;
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { max-width: 480px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .areas-wrapper { grid-template-columns: 1fr; }
    .quote-wrapper { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-lime, .hero-ctas .btn-ghost { text-align: center; justify-content: center; }
  }

  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 16px; }
    .form-card { padding: 24px; }
    .form-header { margin: -24px -24px 28px; }
    .floating-cta { bottom: 20px; right: 20px; }
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    opacity: 0;
    transform: translateY(24px);
  }
  .animate-in.visible {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .animate-in:nth-child(2) { animation-delay: 0.1s; }
  .animate-in:nth-child(3) { animation-delay: 0.2s; }
  .animate-in:nth-child(4) { animation-delay: 0.3s; }
  .animate-in:nth-child(5) { animation-delay: 0.4s; }
  .animate-in:nth-child(6) { animation-delay: 0.5s; }

  .hero-text-anim {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .hero-text-anim:nth-child(1) { animation-delay: 0.1s; }
  .hero-text-anim:nth-child(2) { animation-delay: 0.25s; }
  .hero-text-anim:nth-child(3) { animation-delay: 0.4s; }
  .hero-text-anim:nth-child(4) { animation-delay: 0.55s; }
  .hero-text-anim:nth-child(5) { animation-delay: 0.7s; }
  .hero-stats { animation: fadeInUp 0.8s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both; }