 :root {
      --purple: #cb2c2c;
      --purple-dark: #5b21b6;
      --purple-light: #ede9fe;
      --purple-border: #ddd6fe;
      --gray-100: #f9fafb;
      --gray-200: #e5e7eb;
      --gray-400: #9ca3af;
      --gray-600: #6b7280;
      --gray-800: #1f2937;
      --green: #16a34a;
      --radius: 14px;
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Manrope', sans-serif; color: var(--gray-800); background: #fff; min-height: 100vh; }

    /* ===== NAVBAR ===== */
    .navbar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 12px 0; position: sticky; top: 0; z-index: 100; }
    .brand-icon { width: 38px; height: 38px; background: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
    .brand-text .top { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1rem; color: var(--purple); line-height: 1.2; }
    .brand-text .bot { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
    .nav-links a { color: var(--gray-800); font-weight: 600; font-size: 0.9rem; padding: 6px 14px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
    .nav-links a:hover { background: var(--purple-light); color: var(--purple); }
    .lang-btn { border: 2px solid var(--gray-200); background: #fff; border-radius: 8px; padding: 4px 10px; font-weight: 700; font-size: 0.8rem; cursor: pointer; color: var(--gray-800); transition: all 0.2s; }
    .lang-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
    .call-btn-nav { background: var(--purple); color: #fff !important; border: none; border-radius: 10px; padding: 8px 16px; font-weight: 700; font-size: 0.86rem; display: flex; align-items: center; gap: 6px; text-decoration: none; transition: background 0.2s; }
    .call-btn-nav:hover { background: var(--purple-dark); }

    /* ===== MAIN ===== */
    .main-wrap { padding: 56px 0 80px; background: #fff; }

    .page-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 900;
      text-align: center;
      color: var(--gray-800);
      margin-bottom: 8px;
    }
    .page-subtitle { text-align: center; color: var(--gray-600); font-size: 0.97rem; margin-bottom: 48px; }

    /* ===== CONTACT FORM CARD ===== */
    .form-card {
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px 28px 24px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      height: 100%;
    }
    .form-card h3 { font-weight: 800; font-size: 1.08rem; color: var(--gray-800); margin-bottom: 4px; }
    .form-card .sub { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 22px; }

    .field-group { margin-bottom: 16px; }
    .field-group label { font-size: 0.86rem; font-weight: 700; color: var(--gray-800); display: block; margin-bottom: 6px; }
    .field-group input,
    .field-group textarea {
      width: 100%;
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      padding: 11px 14px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.9rem;
      color: var(--gray-800);
      background: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      resize: vertical;
    }
    .field-group input:focus,
    .field-group textarea:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
    }
    .field-group input::placeholder,
    .field-group textarea::placeholder { color: var(--gray-400); }
    .field-group.has-error input,
    .field-group.has-error textarea { border-color: #dc2626; }
    .err-msg { font-size: 0.76rem; color: #dc2626; margin-top: 4px; display: none; }
    .field-group.has-error .err-msg { display: block; }

    .btn-send {
      width: 100%;
      background: var(--purple);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 13px;
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 0.97rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 4px;
    }
    .btn-send:hover { background: #911616; }

    /* ===== INFO CARDS ===== */
    .info-card {
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 24px 22px;
      margin-bottom: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .info-card:last-child { margin-bottom: 0; }
    .info-card:hover {
      border-color: var(--purple-border);
      box-shadow: 0 4px 20px rgba(124,58,237,0.1);
      transform: translateY(-2px);
    }
    .info-card .icon {
      width: 42px; height: 42px;
      background:#e8e8e8;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--purple);
      font-size: 20px;
      margin-bottom: 14px;
    }
    .info-card h5 { font-weight: 800; font-size: 1rem; margin-bottom: 10px; color: var(--gray-800); }
    .info-card p, .info-card a {
      font-size: 0.88rem;
      color: var(--gray-600);
      text-decoration: none;
      line-height: 1.6;
      display: block;
    }
    .info-card a { color: var(--purple); font-weight: 700; }
    .info-card a:hover { color: var(--purple-dark); }
    .info-card .hours { font-size: 0.8rem; color: var(--gray-400); margin-top: 3px; }

    /* ===== SUCCESS TOAST ===== */
    .toast-wrap {
      position: fixed; top: 80px; right: 24px; z-index: 9999;
      display: none;
    }
    .toast-wrap.show { display: block; }
    .toast-msg {
      background: #fff;
      border: 1.5px solid #bbf7d0;
      border-radius: 12px;
      padding: 16px 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      display: flex; align-items: center; gap: 12px;
      min-width: 280px;
      animation: slideIn 0.3s ease;
    }
    .toast-msg .tick { color: var(--green); font-size: 22px; }
    .toast-msg .msg-text { font-size: 0.88rem; font-weight: 700; color: var(--gray-800); }
    .toast-msg .msg-sub { font-size: 0.78rem; color: var(--gray-600); }
    @keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

    /* ===== SCROLL TOP ===== */
    .scroll-top {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px; background: var(--purple); color: #fff;
      border: none; border-radius: 50%; font-size: 18px; cursor: pointer;
      display: none; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(124,58,237,0.3);
      transition: background 0.2s, transform 0.2s; z-index: 200;
    }
    .scroll-top:hover { background: var(--purple-dark); transform: translateY(-2px); }
    .scroll-top.show { display: flex; }

    /* ===== FOOTER ===== */
    footer { background: #fff; border-top: 1px solid var(--gray-200); padding: 50px 0 24px; }
    .footer-brand { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 900; color: var(--purple); margin-bottom: 6px; }
    .footer-tagline { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 14px; }
    .footer-contact a { display: flex; align-items: center; gap: 8px; color: var(--purple); font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; text-decoration: none; }
    .footer-contact .femail { color: var(--gray-600); font-weight: 500; }
    .footer-social { display: flex; gap: 8px; margin-top: 14px; }
    .soc-icon { width: 34px; height: 34px; background: var(--purple-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: 14px; text-decoration: none; transition: all 0.2s; }
    .soc-icon:hover { background: var(--purple); color: #fff; }
    footer h6 { font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-800); margin-bottom: 14px; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: var(--gray-600); font-size: 0.85rem; text-decoration: none; font-weight: 500; transition: color 0.2s; }
    footer ul li a:hover { color: var(--purple); }
    .footer-bottom { border-top: 1px solid var(--gray-200); margin-top: 36px; padding-top: 18px; text-align: center; font-size: 0.8rem; color: var(--gray-600); }

    @media (max-width: 768px) {
      .main-wrap { padding: 36px 0 60px; }
      .form-card { margin-bottom: 24px; }
    }