    .page-hero::before { content:''; position:absolute; bottom:-60px; left:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,0.04); pointer-events:none; }
    .page-hero h1 em { color:var(--gold); font-style:normal; }

    /* ── Contact section ── */
    .contact-section { background:white; padding:72px 40px; }
    .contact-wrap   { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:1fr 1.6fr; gap:52px; align-items:start; }

    /* Info cards */
    .info-cards { display:flex; flex-direction:column; gap:14px; }
    .info-card  { background:var(--offwhite); border:1.5px solid var(--border); border-radius:12px; padding:18px 20px; display:flex; gap:14px; align-items:flex-start; transition:all 0.2s; }
    .info-card:hover { border-color:var(--royal); box-shadow:0 4px 16px rgba(26,63,168,0.08); }
    .info-icon  { width:42px; height:42px; background:var(--light-blue); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
    .info-card h4 { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:4px; text-transform:uppercase; letter-spacing:0.4px; }
    .info-card p  { font-size:13.5px; color:var(--text-mid); line-height:1.55; }
    .info-card a  { color:var(--royal); font-weight:500; }
    .info-card a:hover { text-decoration:underline; }

    .wa-btn { display:inline-flex; align-items:center; gap:8px; background:#25D366; color:white; padding:10px 20px; border-radius:8px; font-size:13.5px; font-weight:600; margin-top:10px; transition:background 0.2s; }
    .wa-btn:hover { background:#1ebe5d; }

    /* Form */
    .form-card  { background:white; border:1.5px solid var(--border); border-radius:14px; padding:36px; box-shadow:0 4px 24px rgba(13,43,107,0.06); }
    .form-card h2 { font-family:'Playfair Display',serif; font-size:22px; color:var(--navy); margin-bottom:6px; }
    .form-card > p { font-size:14px; color:var(--text-muted); margin-bottom:24px; }
    .fg { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
    .fg label { font-size:13px; font-weight:600; color:var(--text-mid); }
    .fg input, .fg select, .fg textarea { padding:11px 14px; border:1.5px solid var(--border); border-radius:8px; font-size:14px; font-family:'DM Sans',sans-serif; outline:none; transition:border-color 0.2s, box-shadow 0.2s; background:#fafbff; }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--royal); box-shadow:0 0 0 3px rgba(26,63,168,0.08); background:white; }
    .fg textarea { height:120px; resize:vertical; }
    .form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .send-btn { width:100%; padding:14px; background:var(--navy); color:white; border:none; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; font-family:'DM Sans',sans-serif; transition:background 0.2s; margin-top:6px; }
    .send-btn:hover { background:var(--royal); }
    .send-btn:disabled { opacity:0.6; cursor:not-allowed; }
    .form-success { background:#f0fdf4; border:1.5px solid #86efac; border-radius:8px; padding:14px 16px; color:#15803d; font-weight:600; font-size:14px; display:none; margin-top:12px; }
    .form-error   { background:#fff5f5; border:1.5px solid #fca5a5; border-radius:8px; padding:14px 16px; color:#b91c1c; font-weight:600; font-size:14px; display:none; margin-top:12px; }

    /* Map section */
    .map-section { background:var(--offwhite); padding:64px 40px; text-align:center; }
    .map-placeholder { max-width:860px; margin:28px auto 0; }

    /* FAQ */
    .faq-section { background:white; padding:64px 40px; }
    .faq-inner   { max-width:720px; margin:0 auto; }
    .faq-item    { background:var(--offwhite); border:1.5px solid var(--border); border-radius:10px; margin-bottom:10px; overflow:hidden; }
    .faq-q       { padding:15px 20px; font-size:14.5px; font-weight:600; color:var(--navy); cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
    .faq-q .arrow { font-size:18px; transition:transform 0.3s; color:var(--royal); flex-shrink:0; }
    .faq-item.open .faq-q .arrow { transform:rotate(180deg); }
    .faq-a       { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
    .faq-item.open .faq-a { max-height:180px; }
    .faq-a p     { padding:0 20px 16px; font-size:13.5px; color:var(--text-mid); line-height:1.7; }

    @media(max-width:860px) {
      .contact-wrap { grid-template-columns:1fr; }
      .form-row-2   { grid-template-columns:1fr; }
      .contact-section,.faq-section,.map-section { padding:48px 20px; }
    }
  
    /* ── Photo background hero (replaces solid gradient) ── */
    @media(max-width:768px){ }
