.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.contact-form-card { background: #ffffff; border: 1px solid #e8e8ee; border-radius: 12px; padding: 28px; }
.contact-form-card h2 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
.contact-form-card .form-intro { font-size: 14px; color: #5a5a6e; margin: 0 0 20px; line-height: 1.5; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form .form-group-message { display: flex; flex-direction: column; margin-bottom: 20px; }
.contact-form label { font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 5px; }
.contact-form label .required { color: #e05555; margin-left: 2px; }
.contact-form label .optional { font-weight: 400; color: #8a8a9e; }
.contact-form input, .contact-form select, .contact-form textarea { font-family: inherit; font-size: 16px; color: #1a1a2e; background: #f8f8fc; border: 1px solid #e0e0e8; border-radius: 8px; padding: 12px 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: #1a8a4a; box-shadow: 0 0 0 3px rgba(26, 138, 74, 0.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form 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 fill='%235a5a6e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.contact-form .form-submit { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #1a8a4a, #146b3a); color: #ffffff; font-size: 15px; font-weight: 700; padding: 12px 28px; border: none; border-radius: 8px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.contact-form .form-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26, 138, 74, 0.3); }
.contact-form .form-submit svg { flex-shrink: 0; }
.contact-form .form-note { font-size: 12px; color: #8a8a9e; margin-top: 12px; }
.contact-form .form-note .required { color: #e05555; }
.contact-sidebar-card { background: #f8f8fc; border: 1px solid #e8e8ee; border-radius: 12px; padding: 24px; }
.contact-sidebar-card + .contact-sidebar-card { margin-top: 20px; }
.contact-sidebar-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.contact-sidebar-card h3 svg { flex-shrink: 0; }
.contact-sidebar-card p { font-size: 14px; line-height: 1.6; color: #3a3a4e; margin: 0 0 10px; }
.contact-sidebar-card p:last-child { margin-bottom: 0; }
.contact-sidebar-card a { color: #1a8a4a; font-weight: 600; text-decoration: none; }
.contact-sidebar-card a:hover { color: #0d6e3a; text-decoration: underline; }
.contact-sidebar-card .contact-detail { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #e8e8ee; font-size: 14px; color: #3a3a4e; }
.contact-sidebar-card .contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
.contact-sidebar-card .contact-detail svg { flex-shrink: 0; color: #1a8a4a; }
.contact-editor { display: flex; align-items: center; gap: 14px; padding: 16px 0 0; border-top: 1px solid #e8e8ee; margin-top: 14px; }
.contact-editor img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #1a8a4a; flex-shrink: 0; }
.contact-editor-info { flex: 1; }
.contact-editor-name { font-size: 15px; font-weight: 700; color: #1a1a2e; }
.contact-editor-role { font-size: 13px; color: #5a5a6e; }
.contact-topics { list-style: none; padding: 0; margin: 0; }
.contact-topics li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #3a3a4e; padding: 6px 0; line-height: 1.5; }
.contact-topics li svg { flex-shrink: 0; margin-top: 3px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success svg { margin-bottom: 16px; }
.form-success h3 { font-size: 20px; font-weight: 700; color: #1a8a4a; margin: 0 0 8px; }
.form-success p { font-size: 15px; color: #3a3a4e; margin: 0; line-height: 1.6; }
.gambling-help-notice { background: #fff8e1; border: 1px solid #ffe082; border-radius: 10px; padding: 20px 24px; margin-top: 32px; display: flex; align-items: flex-start; gap: 14px; }
.gambling-help-notice svg { flex-shrink: 0; margin-top: 2px; }
.gambling-help-notice p { font-size: 14px; line-height: 1.6; color: #3a3a4e; margin: 0; }
.gambling-help-notice a { color: #f57c00; font-weight: 600; }
.nav-dropdown .dropdown-link-all { border-top: 1px solid rgba(255, 255, 255, 0.1); font-weight: 700; }
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 32px; }
}
