/* ── Contact hero ───────────────────────────────────── */
    .contact-hero {
      padding: 160px 0 100px;
      background: var(--white);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .contact-hero .blob-1 {
      width: 600px; height: 600px;
      top: -180px; right: -100px;
      background: radial-gradient(ellipse, rgba(194,207,193,0.35) 0%, transparent 70%);
      filter: blur(55px);
    }
    .contact-hero .blob-2 {
      width: 480px; height: 480px;
      bottom: -80px; left: -80px;
      background: radial-gradient(ellipse, rgba(204,179,129,0.22) 0%, transparent 70%);
      filter: blur(65px);
    }

    /* ── Contact body ───────────────────────────────────── */
    .contact-body-section {
      padding: 80px 0 100px;
      background: var(--white);
    }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: start;
    }

    /* ── Left side — info panel ─────────────────────────── */
    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: sticky;
      top: 110px;
    }
    .contact-info-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      padding: 22px 22px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: var(--t);
    }
    .contact-info-card:hover {
      border-color: var(--green-pale);
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }
    .ci-icon-wrap {
      width: 46px; height: 46px;
      min-width: 46px;
      border-radius: var(--r-md);
      background: var(--green-ultra);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--green-dark);
      font-size: 1.05rem;
      transition: var(--t);
    }
    .contact-info-card:hover .ci-icon-wrap {
      background: var(--green-dark);
      color: var(--white);
    }
    .ci-text h4 {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.9px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .ci-text p, .ci-text a {
      font-size: 0.92rem;
      color: var(--text-body);
      line-height: 1.55;
    }
    .ci-text a {
      color: var(--green-mid);
      text-decoration: none;
      font-weight: 600;
    }
    .ci-text a:hover { color: var(--green-dark); }

    /* Social strip */
    .social-strip {
      background: linear-gradient(135deg, var(--green-pale), var(--green-ultra));
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      padding: 22px;
    }
    .social-strip h4 {
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }
    .social-icons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .social-icon-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--green-dark);
      font-size: 0.88rem;
      text-decoration: none;
      transition: var(--t);
    }
    .social-icon-btn:hover {
      background: var(--green-dark);
      color: var(--white);
      border-color: var(--green-dark);
      transform: translateY(-2px);
    }

    /* ── Right side — form card ─────────────────────────── */
    .contact-form-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-2xl);
      padding: 48px 48px;
      box-shadow: var(--shadow-xl);
      position: relative;
      overflow: hidden;
    }
    .contact-form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green-dark), var(--gold), var(--green-mid));
    }
    .form-heading {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text-heading);
      margin-bottom: 6px;
    }
    .form-subheading {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.6;
    }

    /* Form fields */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }
    .form-group label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-heading);
      text-transform: uppercase;
      letter-spacing: 0.7px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 13px 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      background: var(--bg-section);
      font-family: inherit;
      font-size: 0.92rem;
      color: var(--text-body);
      transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green-mid);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(109,136,107,0.10);
    }
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: var(--gold-deep);
      box-shadow: 0 0 0 4px rgba(191,159,95,0.12);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 130px;
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23545454' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
    }
    .form-privacy {
      font-size: 0.79rem;
      color: var(--text-muted);
      margin-bottom: 22px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5;
    }
    .form-privacy i { color: var(--green-mid); margin-top: 2px; flex-shrink: 0; }

    /* Submit button full width */
    .btn-submit-full {
      width: 100%;
      justify-content: center;
      font-size: 1rem;
      padding: 15px 24px;
      letter-spacing: -0.01em;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .success-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--green-ultra);
      border: 2px solid var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      margin: 0 auto 20px;
    }
    .form-success h3 {
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }
    .form-success p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: 400px;
      margin: 0 auto 24px;
    }

    /* ── Map section ────────────────────────────────────── */
    .map-section {
      background: var(--bg-section);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 72px 0;
    }
    .map-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 40px;
      align-items: center;
    }
    .map-info h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
    }
    .map-info p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .map-address-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      padding: 22px 22px;
      margin-bottom: 20px;
    }
    .map-address-card .addr-row {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 10px;
    }
    .map-address-card .addr-row:last-child { margin-bottom: 0; }
    .addr-row i {
      color: var(--green-mid);
      margin-top: 3px;
      font-size: 0.9rem;
      width: 16px;
    }
    .addr-row span {
      font-size: 0.88rem;
      color: var(--text-body);
      line-height: 1.5;
    }
    .map-embed-wrap {
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-lg);
    }
    .map-embed-wrap iframe {
      display: block;
      width: 100%;
      height: 380px;
      border: 0;
    }

    /* ── FAQ — modern accordion ─────────────────────────── */
    .faq-section {
      padding: 80px 0 100px;
      background: var(--white);
    }
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
      transition: border-color 0.22s ease, box-shadow 0.22s ease;
    }
    .faq-item.open {
      border-color: var(--green-pale);
      box-shadow: var(--shadow-md);
    }
    .faq-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      user-select: none;
      transition: background 0.22s ease;
    }
    .faq-header:hover { background: var(--bg-section); }
    .faq-item.open .faq-header { background: var(--green-ultra); }
    .faq-q {
      font-size: 0.96rem;
      font-weight: 700;
      color: var(--text-heading);
      line-height: 1.4;
    }
    .faq-icon-btn {
      width: 34px; height: 34px;
      min-width: 34px;
      border-radius: 50%;
      background: var(--bg-section);
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--green-dark);
      font-size: 0.8rem;
      transition: var(--t);
    }
    .faq-item.open .faq-icon-btn {
      background: var(--green-dark);
      border-color: var(--green-dark);
      color: var(--white);
      transform: rotate(45deg);
    }
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
                  padding 0.28s ease;
    }
    .faq-item.open .faq-body {
      max-height: 300px;
    }
    .faq-body-inner {
      padding: 0 24px 22px;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* ── Responsive ─────────────────────────────────────── */
    @media (max-width: 1000px) {
      .contact-layout { grid-template-columns: 1fr; }
      .contact-sidebar { position: static; }
      .contact-form-card { padding: 36px 28px; }
      .map-layout { grid-template-columns: 1fr; }
      .map-embed-wrap iframe { height: 300px; }
    }
    @media (max-width: 600px) {
      .form-row { grid-template-columns: 1fr; }
      .contact-form-card { padding: 28px 20px; border-radius: var(--r-xl); }
    }