    body { line-height: 1.7; }

    /* ===== PAGE HERO ===== */
    .page-hero {
      margin: 28px 0 40px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      min-height: 260px;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--teal-dark) 100%);
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      overflow: hidden;
    }
    .page-hero-bg .blob {
      position: absolute;
      border-radius: 50%;
      opacity: 0.12;
      background: var(--teal-light);
    }
    .page-hero-bg .blob1 { width: 320px; height: 320px; top: -80px; left: -60px; }
    .page-hero-bg .blob2 { width: 200px; height: 200px; bottom: -50px; right: 200px; }
    .page-hero-bg .blob3 { width: 140px; height: 140px; top: 20px; right: 60px; opacity: 0.08; }
    .page-hero-body {
      position: relative; z-index: 2;
      padding: 48px 52px;
      display: flex; align-items: center; gap: 28px;
    }
    .hero-icon-wrap {
      width: 90px; height: 90px; flex-shrink: 0;
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 28px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.8rem;
      backdrop-filter: blur(8px);
    }
    .page-hero-body h1 {
      font-size: 2.2rem; font-weight: 800;
      color: white; line-height: 1.3; margin-bottom: 10px;
    }
    .page-hero-body h1 span { color: var(--teal-light); }
    .page-hero-body p { font-size: 0.95rem; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.7; }
    .hero-stats-row {
      display: flex; gap: 32px; margin-top: 20px;
    }
    .hero-stat { display: flex; align-items: center; gap: 8px; }
    .hero-stat i { color: var(--teal-light); font-size: 1rem; }
    .hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.78); }

    /* ===== INFO CARDS ===== */
    .info-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 44px;
    }
    .info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .info-card::before {
      content: '';
      position: absolute; top: 0; right: 0; left: 0;
      height: 4px;
      background: var(--teal);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: right;
    }
    .info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
    .info-card:hover::before { transform: scaleX(1); }
    .ic-icon {
      width: 64px; height: 64px; border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin: 0 auto 16px;
    }
    .ic-icon.teal { background: linear-gradient(135deg,var(--teal-pale),var(--teal-light)); color: var(--teal-dark); }
    .ic-icon.accent { background: linear-gradient(135deg,#fff0eb,#ffd4c4); color: var(--accent); }
    .ic-icon.gold { background: linear-gradient(135deg,#fffae6,#ffe9a0); color: #a07000; }
    .ic-icon.navy { background: linear-gradient(135deg,#e8eff5,#c8dce8); color: var(--navy); }
    .info-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .info-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
    .info-card a { color: var(--teal-dark); font-weight: 700; text-decoration: none; font-size: 1rem; }
    .info-card a:hover { color: var(--teal); }
    .info-card .hours-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 4px 0; border-bottom: 1px dashed var(--border); }
    .info-card .hours-row:last-child { border-bottom: none; }
    .hours-open { color: #2e7d32; font-weight: 600; }
    .hours-closed { color: #c62828; font-weight: 600; }

    /* ===== MAIN LAYOUT ===== */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 28px;
      margin-bottom: 60px;
      align-items: start;
    }

    /* ===== CONTACT FORM ===== */
    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      box-shadow: var(--shadow-sm);
    }
    .form-card-head {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 28px; padding-bottom: 22px;
      border-bottom: 2px solid var(--teal-pale);
    }
    .fch-icon {
      width: 52px; height: 52px; border-radius: 16px;
      background: linear-gradient(135deg,var(--teal),var(--teal-dark));
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.3rem;
      box-shadow: 0 6px 18px rgba(14,159,165,0.3);
    }
    .fch-text h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
    .fch-text p { font-size: 0.82rem; color: var(--text-muted); }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.84rem; font-weight: 600;
      color: var(--navy-light); margin-bottom: 8px;
    }
    .form-group label i { color: var(--teal); font-size: 0.78rem; }
    .form-group label .req { color: var(--accent); margin-right: 2px; }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: 'Vazir',sans-serif;
      font-size: 0.88rem;
      color: var(--text);
      background: var(--teal-pale);
      outline: none;
      transition: all 0.25s;
    }
    .form-control:focus { border-color: var(--teal); background: white; box-shadow: 0 0 0 4px rgba(14,159,165,0.1); }
    .form-control.error { border-color: #e74c3c; background: #fff5f5; }
    .form-control.success { border-color: #27ae60; background: #f0fff4; }
    textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.7; }
    select.form-control { cursor: pointer; }
    .field-err { font-size: 0.75rem; color: #e74c3c; margin-top: 5px; display: none; }
    .field-err.show { display: block; }

    .subject-pills {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
    }
    .subj-pill {
      padding: 7px 16px; border-radius: 50px;
      border: 2px solid var(--border); background: white;
      font-family: 'Vazir',sans-serif; font-size: 0.8rem;
      font-weight: 600; color: var(--navy-light);
      cursor: pointer; transition: all 0.2s;
    }
    .subj-pill:hover { border-color: var(--teal); color: var(--teal); }
    .subj-pill.active { background: var(--teal); border-color: var(--teal); color: white; }

    .file-upload-wrap {
      border: 2px dashed var(--border); border-radius: var(--radius-sm);
      padding: 20px; text-align: center;
      background: var(--teal-pale); cursor: pointer;
      transition: all 0.25s; margin-bottom: 18px;
    }
    .file-upload-wrap:hover { border-color: var(--teal); background: #daf7f8; }
    .file-upload-wrap i { font-size: 1.8rem; color: var(--teal); margin-bottom: 8px; display: block; }
    .file-upload-wrap p { font-size: 0.82rem; color: var(--text-muted); }
    .file-upload-wrap span { color: var(--teal); font-weight: 600; }
    .file-upload-wrap input[type="file"] { display: none; }

    .form-submit-btn {
      width: 100%; padding: 15px;
      background: linear-gradient(135deg,var(--teal),var(--teal-dark));
      color: white; border: none; border-radius: var(--radius-sm);
      font-family: 'Vazir',sans-serif; font-size: 1rem; font-weight: 700;
      cursor: pointer; transition: all 0.3s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      box-shadow: 0 6px 20px rgba(14,159,165,0.3);
    }
    .form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,159,165,0.4); }
    .form-submit-btn:active { transform: translateY(0); }
    .form-submit-btn.loading { opacity: 0.8; pointer-events: none; }

    .form-success {
      display: none; text-align: center;
      padding: 40px 20px;
    }
    .form-success.show { display: block; }
    .success-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg,#d4edda,#a8d5b5);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin: 0 auto 20px;
      animation: popIn 0.5s cubic-bezier(.17,.67,.52,1.3);
    }
    @keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }
    .form-success h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
    .form-success p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; }
    .send-again-btn {
      background: none; border: 2px solid var(--teal); color: var(--teal);
      padding: 10px 24px; border-radius: 50px;
      font-family: 'Vazir',sans-serif; font-size: 0.88rem; font-weight: 600;
      cursor: pointer; transition: all 0.2s;
    }
    .send-again-btn:hover { background: var(--teal); color: white; }

    /* ===== RIGHT PANEL ===== */
    .right-panel { display: flex; flex-direction: column; gap: 22px; }

    /* Map card */
    .map-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .map-frame {
      height: 240px;
      background: linear-gradient(135deg,#cde8e9 0%,#a0d4d6 50%,#7ac4c7 100%);
      position: relative; overflow: hidden;
    }
    .map-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.25) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .map-road-h { position: absolute; top: 50%; left: 0; right: 0; height: 12px; background: rgba(255,255,255,0.5); transform: translateY(-50%); border-radius: 6px; }
    .map-road-v { position: absolute; top: 0; bottom: 0; left: 40%; width: 10px; background: rgba(255,255,255,0.5); border-radius: 6px; }
    .map-road-v2 { position: absolute; top: 0; bottom: 0; right: 25%; width: 8px; background: rgba(255,255,255,0.4); border-radius: 6px; }
    .map-block { position: absolute; border-radius: 6px; background: rgba(7,90,100,0.18); }
    .map-pin {
      position: absolute; top: 50%; left: 40%;
      transform: translate(-50%, -100%);
      display: flex; flex-direction: column; align-items: center;
    }
    .pin-body {
      width: 44px; height: 44px; border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      background: linear-gradient(135deg,var(--teal),var(--teal-dark));
      box-shadow: 0 4px 16px rgba(14,159,165,0.5);
      display: flex; align-items: center; justify-content: center;
      animation: pinBounce 2.5s ease-in-out infinite;
    }
    .pin-body i { transform: rotate(45deg); color: white; font-size: 1rem; }
    .pin-shadow { width: 16px; height: 6px; background: rgba(0,0,0,0.2); border-radius: 50%; margin-top: 3px; }
    @keyframes pinBounce { 0%,100%{transform:rotate(-45deg) translateY(0)} 50%{transform:rotate(-45deg) translateY(-6px)} }
    .map-label {
      position: absolute; top: 12px; right: 12px;
      background: white; padding: 6px 14px; border-radius: 50px;
      font-size: 0.75rem; font-weight: 700; color: var(--navy);
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      display: flex; align-items: center; gap: 6px;
    }
    .map-label i { color: var(--teal); }
    .map-zoom { position: absolute; bottom: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; }
    .mz-btn {
      width: 32px; height: 32px; background: white; border: none;
      border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1rem; color: var(--navy);
      font-weight: 700; transition: background 0.2s;
    }
    .mz-btn:hover { background: var(--teal-pale); }
    .map-address-bar {
      padding: 14px 18px;
      display: flex; align-items: center; gap: 12px;
      border-top: 1px solid var(--border);
    }
    .mab-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 0.9rem; flex-shrink: 0; }
    .mab-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
    .mab-text strong { color: var(--navy); font-size: 0.85rem; }
    .map-directions-btn {
      display: block; text-align: center;
      margin: 0 18px 14px;
      padding: 10px;
      background: var(--teal-pale); color: var(--teal-dark);
      border-radius: var(--radius-sm); font-size: 0.82rem;
      font-weight: 700; text-decoration: none; transition: all 0.2s;
      border: 1.5px solid var(--teal-light);
    }
    .map-directions-btn:hover { background: var(--teal); color: white; }

    /* Quick contact card */
    .quick-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px 24px;
      box-shadow: var(--shadow-sm);
    }
    .quick-card-head {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 18px; padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .qch-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1rem; }
    .quick-card-head h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
    .quick-contact-list { display: flex; flex-direction: column; gap: 10px; }
    .qc-item {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 14px; border-radius: var(--radius-sm);
      background: var(--teal-pale); border: 1px solid var(--teal-light);
      text-decoration: none; transition: all 0.22s;
    }
    .qc-item:hover { background: var(--teal-light); transform: translateX(-3px); }
    .qci-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .qci-icon.phone { background: linear-gradient(135deg,#d4edda,#a8d5b5); color: #2e7d32; }
    .qci-icon.email { background: linear-gradient(135deg,#dbeafe,#bfdbfe); color: #1e40af; }
    .qci-icon.wa    { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: #166534; }
    .qci-icon.tg    { background: linear-gradient(135deg,#e0f2fe,#bae6fd); color: #0369a1; }
    .qci-label { font-size: 0.75rem; color: var(--text-muted); }
    .qci-val { font-size: 0.88rem; font-weight: 700; color: var(--navy); }

    /* Social card */
    .social-card {
      background: linear-gradient(135deg,var(--navy),var(--navy-light));
      border-radius: var(--radius);
      padding: 24px;
      text-align: center;
    }
    .social-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .social-card p { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin-bottom: 18px; }
    .social-icons { display: flex; justify-content: center; gap: 12px; }
    .soc-btn {
      width: 46px; height: 46px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; text-decoration: none;
      transition: all 0.25s; border: 2px solid transparent;
    }
    .soc-btn.ig  { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: white; }
    .soc-btn.tg  { background: #0088cc; color: white; }
    .soc-btn.wa  { background: #25d366; color: white; }
    .soc-btn.yt  { background: #ff0000; color: white; }
    .soc-btn.ap  { background: linear-gradient(135deg,#e8f5e9,#a5d6a7); color: #2e7d32; }
    .soc-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

    /* ===== FAQ ===== */
    .faq-section { margin-bottom: 60px; }
    .section-head {
      text-align: center; margin-bottom: 32px;
    }
    .section-head h2 {
      font-size: 1.8rem; font-weight: 800; color: var(--navy);
      display: flex; align-items: center; justify-content: center; gap: 12px;
      margin-bottom: 10px;
    }
    .section-head h2 span { color: var(--teal); }
    .section-head p { font-size: 0.9rem; color: var(--text-muted); }

    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s;
    }
    .faq-item.open { box-shadow: var(--shadow-md); border-color: var(--teal-light); }
    .faq-q {
      display: flex; align-items: center; gap: 14px;
      padding: 18px 22px; cursor: pointer;
      transition: background 0.2s;
    }
    .faq-q:hover { background: var(--teal-pale); }
    .faq-num {
      width: 30px; height: 30px; border-radius: 10px;
      background: var(--teal-pale); color: var(--teal-dark);
      font-size: 0.8rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .faq-item.open .faq-num { background: var(--teal); color: white; }
    .faq-q-text { flex: 1; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
    .faq-chevron { color: var(--text-muted); font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--teal); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      padding: 0 22px;
    }
    .faq-a-inner { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; padding-bottom: 18px; border-top: 1px solid var(--border); padding-top: 14px; }
    .faq-item.open .faq-a { max-height: 260px; }

    /* ===== VISIT US BANNER ===== */
    .visit-banner {
      background: linear-gradient(135deg,var(--teal-pale),#d0f3f5);
      border: 2px solid var(--teal-light);
      border-radius: var(--radius-lg);
      padding: 40px 52px;
      display: flex; align-items: center; gap: 32px;
      margin-bottom: 60px; overflow: hidden; position: relative;
    }
    .visit-banner::after {
      content: '🐾';
      position: absolute; right: -20px; top: -20px;
      font-size: 9rem; opacity: 0.06; transform: rotate(-20deg);
    }
    .vb-icon { font-size: 3.5rem; flex-shrink: 0; }
    .vb-body { flex: 1; }
    .vb-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .vb-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
    .vb-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
    .vb-btn {
      display: flex; align-items: center; gap: 8px;
      padding: 12px 24px; border-radius: 50px;
      font-family: 'Vazir',sans-serif; font-size: 0.88rem; font-weight: 700;
      cursor: pointer; text-decoration: none; white-space: nowrap;
      transition: all 0.2s;
    }
    .vb-btn.primary { background: var(--teal); color: white; border: none; box-shadow: 0 4px 16px rgba(14,159,165,0.3); }
    .vb-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,159,165,0.4); }
    .vb-btn.outline { background: white; color: var(--teal-dark); border: 2px solid var(--teal-light); }
    .vb-btn.outline:hover { background: var(--teal-pale); }

    /* ===== CART ===== */
    .cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(3px); }
    .cart-overlay.show { opacity: 1; visibility: visible; }
    .cart-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 360px; background: white; z-index: 2100; box-shadow: -8px 0 40px rgba(0,0,0,0.15); transform: translateX(-100%); transition: transform 0.38s cubic-bezier(.77,0,.18,1); display: flex; flex-direction: column; }
    .cart-sidebar.open { transform: translateX(0); }
    .cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
    .cart-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
    .cart-close-btn { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-muted); transition: color 0.2s; }
    .cart-close-btn:hover { color: var(--accent); }
    .cart-items-wrap { flex: 1; overflow-y: auto; padding: 16px 22px; }
    .cart-footer { flex-shrink: 0; padding: 20px 22px; border-top: 1px solid var(--border); }
    .cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
    .cart-total-label { font-weight: 600; color: var(--text-muted); }
    .cart-total-val { font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .checkout-btn { width: 100%; padding: 14px; background: linear-gradient(135deg,var(--teal),var(--teal-dark)); color: white; border: none; border-radius: var(--radius-sm); font-family: 'Vazir',sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; }
    .checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,159,165,0.35); }

    /* ===== LOGIN MODAL ===== */
    .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(4px); }
    .modal-overlay.show { opacity: 1; visibility: visible; }
    .modal-wrap { animation: slideUp 0.35s cubic-bezier(.17,.67,.52,1.3); }
    @keyframes slideUp { from{transform:translateY(40px) scale(0.95);opacity:0} to{transform:none;opacity:1} }
    .modal-box { background: white; border-radius: var(--radius-lg); padding: 36px 40px; width: 360px; max-width: calc(100vw - 40px); box-shadow: var(--shadow-lg); position: relative; }
    .modal-close { position: absolute; top: 16px; left: 16px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--text-muted); transition: color 0.2s; }
    .modal-close:hover { color: var(--accent); }
    .modal-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
    .modal-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
    .modal-input { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: 'Vazir',sans-serif; font-size: 0.88rem; background: var(--teal-pale); outline: none; margin-bottom: 12px; transition: all 0.25s; color: var(--text); }
    .modal-input:focus { border-color: var(--teal); background: white; }
    .modal-submit { width: 100%; padding: 13px; background: linear-gradient(135deg,var(--teal),var(--teal-dark)); color: white; border: none; border-radius: var(--radius-sm); font-family: 'Vazir',sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 4px; }
    .modal-submit:hover { box-shadow: 0 6px 20px rgba(14,159,165,0.35); }
    .modal-msg { font-size: 0.82rem; margin-top: 10px; min-height: 20px; text-align: center; }

    /* ===== TOAST ===== */
    .toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--navy); color: white; padding: 14px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 10px; z-index: 9999; box-shadow: 0 8px 30px rgba(0,0,0,0.25); transition: all 0.4s cubic-bezier(.17,.67,.52,1.3); white-space: nowrap; }
    .toast.show { transform: translateX(-50%) translateY(0); }
    .toast i { color: #4ade80; font-size: 1rem; }

    /* ===== MOBILE ===== */
    @media (max-width: 1024px) {
      .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .faq-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 860px) {
      .contact-layout { grid-template-columns: 1fr; }
      .right-panel { order: -1; }
      .page-hero-body { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
      .hero-stats-row { flex-wrap: wrap; gap: 16px; }
      .visit-banner { flex-direction: column; text-align: center; padding: 30px 24px; }
      .vb-actions { flex-direction: row; justify-content: center; }
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 24px 20px; }
    }
    @media (max-width: 560px) {
      .info-cards-grid { grid-template-columns: 1fr 1fr; }
      .page-hero-body h1 { font-size: 1.6rem; }
      .vb-actions { flex-direction: column; }
    }
    @media (max-width: 400px) {
      .info-cards-grid { grid-template-columns: 1fr; }
    }