   

    /* ============================================ */
    /* ========== PAGE HERO ========== */
    /* ============================================ */
    .page-hero {
      width: 100%;
      min-height: 40vh;
      background: linear-gradient(160deg, #0a2415 0%, #0f381e 40%, #14522d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 2rem 4rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
      border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%;
      pointer-events: none;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      bottom: -15%;
      left: -8%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
      border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
      pointer-events: none;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-hero-content .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8rem;
      color: #a0c89a;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .page-hero-content .breadcrumb a {
      color: #a0c89a;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hero-content .breadcrumb a:hover {
      color: #d4f0c8;
    }

    .page-hero-content .breadcrumb i {
      font-size: 0.5rem;
    }

    .page-hero-content .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: #b5f0a0;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .page-hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
      letter-spacing: -1px;
      margin-bottom: 1.2rem;
    }

    .page-hero-content .hero-subtitle {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.78);
      max-width: 550px;
      margin: 0 auto;
    }

    /* ============================================ */
    /* ========== MAIN CONTENT ========== */
    /* ============================================ */
    .service-content {
      width: 100%;
      padding: 5rem 4rem;
      background: #ffffff;
    }

    .content-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ----- Contact Grid ----- */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: start;
    }

    /* ----- Contact Info Column ----- */
    .contact-info .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .contact-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0f2818;
      line-height: 1.3;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }

    .contact-info .contact-intro {
      font-size: 1rem;
      line-height: 1.75;
      color: #4a5b47;
      margin-bottom: 2.5rem;
    }

    /* Contact Cards */
    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-bottom: 2.5rem;
    }

    .contact-card {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      background: #f9fdf7;
      border-radius: 1.2rem 0.3rem 1.2rem 0.3rem;
      padding: 1.5rem 1.5rem;
      border: 1px solid #e8f2e4;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      border-color: #d4e8cc;
      box-shadow: 0 8px 24px -8px rgba(15, 40, 20, 0.08);
      transform: translateY(-2px);
    }

    .contact-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px 4px 14px 4px;
      background: #1a6832;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 8px 18px rgba(26, 104, 50, 0.25);
    }

    .contact-card-text h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.25rem;
    }

    .contact-card-text p {
      font-size: 0.88rem;
      color: #5b6b55;
      line-height: 1.5;
    }

    .contact-card-text a {
      color: #1a6832;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .contact-card-text a:hover {
      color: #0f4d22;
      text-decoration: underline;
    }

    /* Social Links */
    .contact-socials {
      display: flex;
      gap: 0.8rem;
    }

    .contact-social-link {
      width: 44px;
      height: 44px;
      border-radius: 12px 3px 12px 3px;
      background: #f4faf2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a6832;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.35s ease;
      border: 1px solid #e0f0d8;
    }

    .contact-social-link:hover {
      background: #1a6832;
      color: #ffffff;
      border-radius: 3px 14px 3px 14px;
      transform: translateY(-4px);
      box-shadow: 0 10px 22px rgba(26, 104, 50, 0.35);
    }

    /* ----- Contact Form Column ----- */
    .contact-form-wrapper {
      background: #ffffff;
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      padding: 2.5rem 2.5rem;
      border: 1px solid #eef5ea;
      box-shadow: 0 10px 30px -10px rgba(15, 40, 20, 0.08);
    }

    .contact-form-wrapper h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.5rem;
      letter-spacing: -0.3px;
    }

    .contact-form-wrapper .form-subtitle {
      font-size: 0.9rem;
      color: #6b7d65;
      margin-bottom: 2rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #3a4d3a;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1.2rem;
      border-radius: 12px 3px 12px 3px;
      border: 1px solid #e0ecd8;
      background: #fafdf8;
      color: #0f2818;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #a0b89a;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #1a6832;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(26, 104, 50, 0.08);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 140px;
    }

    .form-group select {
      color: #3a4d3a;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%231a6832" d="M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: #1a6832;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      padding: 1rem 2.4rem;
      border-radius: 50px;
      transition: all 0.35s ease;
      box-shadow: 0 8px 24px rgba(26, 104, 50, 0.3);
      font-family: 'Inter', sans-serif;
      width: 100%;
      margin-top: 0.5rem;
    }

    .btn-submit:hover {
      background: #0f4d22;
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(26, 104, 50, 0.45);
    }

    /* ============================================ */
    /* ========== MAP / OFFICE LOCATIONS ========== */
    /* ============================================ */
    .locations-section {
      margin-top: 5rem;
    }

    .locations-section .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .locations-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 2.5rem;
      letter-spacing: -0.5px;
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .location-card {
      background: #ffffff;
      border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      padding: 2rem 1.8rem;
      border: 1px solid #eef5ea;
      box-shadow: 0 8px 24px -8px rgba(15, 40, 20, 0.05);
      transition: all 0.35s ease;
      text-align: center;
    }

    .location-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 36px -10px rgba(15, 55, 25, 0.15);
      border-color: #d4e8cc;
    }

    .location-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px 5px 18px 5px;
      background: #f4faf2;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem auto;
      color: #1a6832;
      font-size: 1.4rem;
      transition: all 0.35s ease;
    }

    .location-card:hover .location-icon {
      background: #1a6832;
      color: #ffffff;
      border-radius: 5px 20px 5px 20px;
      box-shadow: 0 10px 22px rgba(26, 104, 50, 0.35);
    }

    .location-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.5rem;
    }

    .location-card p {
      font-size: 0.88rem;
      color: #5b6b55;
      line-height: 1.6;
    }

    /* ============================================ */
    /* ========== RESPONSIVE ========== */
    /* ============================================ */
    @media (max-width: 1000px) {
      .service-content {
        padding: 4rem 2.5rem;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .locations-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 650px) {
      .service-content {
        padding: 3rem 1.5rem;
      }

      .page-hero {
        min-height: 35vh;
        padding: 120px 1.2rem 3rem 1.2rem;
      }

      .page-hero-content h1 {
        font-size: 2rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      }

      .locations-grid {
        grid-template-columns: 1fr;
      }

      .contact-card {
        padding: 1.2rem;
      }

      .contact-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
      }
    }

    @media (max-width: 400px) {
      .service-content {
        padding: 2.5rem 1rem;
      }

      .contact-form-wrapper {
        padding: 1.5rem 1.2rem;
      }

      .contact-info h2 {
        font-size: 1.5rem;
      }

      .contact-social-link {
        width: 40px;
        height: 40px;
      }
    }
