:root {
  --dealify-blue: #0cc4e9;
  --dealify-blue-dark: #08afd0;
  --ink: #061323;
  --text: #243243;
  --muted: #677383;
  --line: #e7edf2;
  --soft: #f4f7f9;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(12, 30, 42, 0.09);
  --shadow-soft: 0 8px 22px rgba(12, 30, 42, 0.06);
  --radius: 22px;
  --content: min(1120px, calc(100vw - 56px));
  --phone-content: calc(100vw - 32px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
button, input, textarea, select, a { font-family: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.contact-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 19, 35, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--content);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { width: 142px; height: auto; object-fit: contain; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}
.desktop-nav a {
  color: #3b4755;
  font-size: 13.5px;
  font-weight: 850;
  transition: color 0.18s ease;
}
.desktop-nav a:hover { color: var(--dealify-blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-pill, .icon-button {
  border: 1px solid #dbe5eb;
  background: #fff;
  color: var(--dealify-blue);
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.language-pill { min-width: 44px; height: 40px; border-radius: 999px; font-size: 13px; }
.icon-button { width: 40px; height: 40px; border-radius: 50%; }
.post-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--dealify-blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(12, 196, 233, 0.22);
}
.mobile-only { display: none; }

.contact-page { position: relative; }
.help-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fcfe 0%, #fff 100%);
  border-bottom: 1px solid #eef3f6;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(12,196,233,0.14), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(12,196,233,0.08), transparent 28%),
    linear-gradient(135deg, rgba(12,196,233,0.045), transparent 55%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  width: var(--content);
  min-height: 270px;
  margin: 0 auto;
  padding: 58px 0 46px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow, .panel-label {
  color: var(--dealify-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.01em;
}
.hero-content h1 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.055em;
}
.hero-content p {
  max-width: 580px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}
.hero-search {
  width: min(620px, 100%);
  height: 56px;
  padding: 0 18px;
  border: 1px solid #d7e2e8;
  border-radius: 999px;
  background: white;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-search i { color: var(--dealify-blue); font-size: 17px; }
.hero-search input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
}
.hero-search input::placeholder { color: #94a1ac; }

.quick-help {
  width: var(--content);
  margin: -28px auto 26px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quick-card {
  min-height: 110px;
  padding: 18px;
  border: 1px solid #e8f0f4;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.quick-card:hover { transform: translateY(-2px); border-color: rgba(12, 196, 233, 0.38); }
.quick-icon, .method-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #eafdff;
  color: var(--dealify-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.quick-card strong { color: var(--ink); font-size: 15px; font-weight: 950; }
.quick-card small { color: var(--muted); font-size: 12.5px; font-weight: 750; }

.contact-shell {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(290px, 0.86fr) minmax(500px, 1.14fr);
  gap: 18px;
  align-items: start;
}
.left-panel { display: grid; gap: 16px; }
.panel-card, .form-card, .faq-section, .download-strip {
  background: #fff;
  border: 1px solid #e8f0f4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.intro-panel { padding: 24px; }
.intro-panel h2 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 33px;
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.045em;
}
.intro-panel p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; font-weight: 650; }
.contact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.contact-stats div { padding: 14px; border-radius: 16px; background: #f7fbfd; border: 1px solid #edf4f7; }
.contact-stats strong { display:block; color: var(--dealify-blue); font-size: 20px; font-weight: 950; }
.contact-stats span { display:block; margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 800; }
.contact-methods { padding: 20px; }
.contact-methods h3 { margin: 0 0 14px; color: var(--ink); font-size: 17px; font-weight: 950; }
.method-row {
  min-height: 66px;
  padding: 12px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.16s ease;
}
.method-row:hover { background: #f7fbfd; }
.method-icon.whatsapp { color: #18b85f; background: #effcf4; }
.method-icon.email { color: var(--dealify-blue); background: #eafdff; }
.method-row strong { display:block; color: var(--ink); font-size: 14px; font-weight: 950; }
.method-row small { display:block; margin-top: 2px; color: var(--muted); font-size: 12.5px; font-weight: 750; }

.form-card { padding: 22px; }
.form-row.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 15px; }
label { display:block; margin: 0 0 8px; color: var(--ink); font-size: 13.5px; font-weight: 900; }
input, textarea, select {
  width: 100%;
  border: 1px solid #dbe6ec;
  border-radius: 14px;
  background: #fbfdfe;
  color: var(--text);
  outline: none;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
input, select { height: 48px; }
textarea { min-height: 128px; resize: vertical; line-height: 1.45; }
input::placeholder, textarea::placeholder { color: #91a0aa; }
input:focus, textarea:focus, select:focus { border-color: var(--dealify-blue); background:#fff; box-shadow: 0 0 0 4px rgba(12,196,233,0.10); }
.input-error { border-color: #ef4444 !important; box-shadow: 0 0 0 4px rgba(239,68,68,0.08) !important; }
.error-text { display:block; min-height: 16px; margin-top: 5px; color: #ef4444; font-size: 12px; font-weight: 800; }
.file-upload {
  min-height: 90px;
  border: 1.4px dashed rgba(12,196,233,0.42);
  border-radius: 17px;
  background: #f8fdff;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.file-upload input { position:absolute; inset:0; opacity:0; cursor:pointer; }
.upload-icon-circle, .file-preview {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:#eafdff;
  color: var(--dealify-blue);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink: 0;
  overflow:hidden;
}
.file-preview img { width:100%; height:100%; object-fit: cover; }
.file-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.file-main-text { color: var(--ink); font-size: 14px; font-weight: 950; }
.file-hint { color: var(--muted); font-size: 12.5px; font-weight: 750; white-space: nowrap; overflow:hidden; text-overflow: ellipsis; }
.remove-file-button { margin-top: 8px; border:none; background:transparent; color:#ef4444; font-size:13px; font-weight:900; display:inline-flex; align-items:center; gap:6px; }
.submit-button {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: var(--dealify-blue);
  color: white;
  font-size: 15px;
  font-weight: 950;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 26px rgba(12,196,233,0.22);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.submit-button:active { transform: scale(0.985); }
.submit-button:disabled { opacity: 0.75; }
.submit-spinner { width:22px; height:22px; border:3px solid rgba(255,255,255,0.42); border-top-color:#fff; border-radius:50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.required-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 700; text-align:center; }

.faq-section { width: var(--content); margin: 22px auto 0; padding: 22px; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap: 14px; margin-bottom: 16px; }
.section-head h2 { margin:0; color:var(--ink); font-size: 24px; font-weight: 950; letter-spacing: -0.035em; }
.section-head a { color: var(--dealify-blue); font-size: 13px; font-weight: 950; }
.faq-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
details { border: 1px solid #edf3f7; border-radius: 17px; background: #fbfdfe; padding: 15px; }
summary { list-style:none; cursor:pointer; color:var(--ink); font-size: 14px; line-height: 1.35; font-weight: 950; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; float:right; color: var(--dealify-blue); font-size: 18px; line-height: 16px; }
details[open] summary::after { content:"–"; }
details p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; font-weight: 650; }

.download-strip {
  width: var(--content);
  margin: 22px auto 0;
  padding: 22px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}
.download-strip span { color: var(--dealify-blue); font-size: 12.5px; font-weight: 950; }
.download-strip h2 { margin: 5px 0 0; color:var(--ink); font-size: 24px; line-height: 1.15; font-weight: 950; letter-spacing: -0.035em; }
.store-buttons { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.store-buttons img { height: 42px; width: auto; border-radius: 8px; }

.site-footer { margin-top: 28px; background: #f2f4f6; border-top: 1px solid #e3e8ec; }
.footer-inner { width: var(--content); margin: 0 auto; padding: 34px 0; display:grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 40px; }
.footer-brand img { width: 132px; margin-bottom: 12px; }
.footer-brand p { max-width: 390px; margin:0; color: #405060; font-size: 14px; line-height: 1.55; font-weight: 650; }
.footer-col { display:flex; flex-direction:column; gap: 10px; }
.footer-col h3 { margin:0 0 4px; color: var(--ink); font-size: 15px; font-weight: 950; }
.footer-col a, .footer-col a:visited, .footer-col a:active { color: #005fd1; font-size: 14px; font-weight: 800; }
.footer-col a:hover { color: var(--dealify-blue); }

.animate-in { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .icon-button i { transform: scaleX(-1); }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] label { text-align: right; }
[dir="rtl"] input[type="email"] { direction: ltr; text-align: left; }
[dir="rtl"] summary::after { float: left; }

@media (max-width: 920px) {
  :root { --content: min(760px, calc(100vw - 32px)); }
  .desktop-nav, .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }
  .header-inner { width: var(--phone-content); height: max(66px, calc(58px + env(safe-area-inset-top))); padding-top: env(safe-area-inset-top); gap: 8px; }
  .brand-logo { width: 122px; }
  .header-actions { margin-left: 0; }

  .hero-content { width: var(--phone-content); min-height: 242px; padding: 32px 0 42px; }
  .eyebrow { font-size: 12px; }
  .hero-content h1 { font-size: 36px; line-height: 0.98; margin: 12px 0 10px; }
  .hero-content p { font-size: 14.5px; line-height: 1.48; margin-bottom: 18px; max-width: 330px; }
  .hero-search { height: 50px; padding: 0 16px; box-shadow: none; }

  .quick-help { width: var(--phone-content); margin: -26px auto 18px; grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .quick-card { min-height: 92px; padding: 12px 8px; align-items: center; text-align: center; border-radius: 16px; }
  .quick-icon { width: 34px; height: 34px; border-radius: 13px; }
  .quick-card strong { font-size: 12.5px; }
  .quick-card small { display:none; }

  .contact-shell { width: var(--phone-content); grid-template-columns: 1fr; gap: 14px; }
  .left-panel { gap: 12px; }
  .intro-panel { padding: 18px; text-align: center; }
  .intro-panel h2 { font-size: 27px; }
  .intro-panel p { font-size: 14px; line-height: 1.52; }
  .contact-stats { gap: 8px; }
  .contact-methods { padding: 16px; }
  .method-row { min-height: 58px; padding: 10px; }

  .form-card { padding: 16px; border-radius: 20px; }
  .form-row.two-cols { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 13px; }
  input, select { height: 46px; }
  input, textarea, select { font-size: 14.5px; border-radius: 13px; }
  textarea { min-height: 116px; }
  .file-upload { min-height: 78px; border-radius: 15px; }
  .submit-button { height: 50px; border-radius: 15px; }

  .faq-section { width: var(--phone-content); margin-top: 18px; padding: 16px; border-radius: 20px; }
  .section-head { align-items:flex-start; }
  .section-head h2 { font-size: 21px; }
  .section-head a { font-size: 12.5px; text-align: right; }
  .faq-grid { grid-template-columns: 1fr; gap: 9px; }

  .download-strip { width: var(--phone-content); margin-top: 18px; padding: 16px; border-radius: 20px; flex-direction: column; text-align: center; }
  .download-strip h2 { font-size: 19px; }
  .store-buttons img { height: 38px; }

  .footer-inner { width: var(--phone-content); padding: 26px 0 calc(28px + env(safe-area-inset-bottom)); grid-template-columns: 1fr 1fr; gap: 22px; text-align: center; }
  .footer-brand { grid-column: 1 / -1; display:flex; flex-direction:column; align-items:center; }
  .footer-brand img { width: 128px; }
  .footer-brand p { max-width: 320px; font-size: 13.5px; }
  .footer-col { align-items: center; gap: 8px; }
}

@media (max-width: 380px) {
  :root { --phone-content: calc(100vw - 28px); }
  .brand-logo { width: 114px; }
  .hero-content h1 { font-size: 32px; }
  .quick-card { min-height: 86px; }
  .store-buttons { gap: 7px; }
  .store-buttons img { height: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}


/* v5.2.0 contact page fixes */
body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Helvetica Neue",Arial,sans-serif!important;
  font-weight:400!important;
  color:#111827!important;
}
body.menu-open{overflow:hidden!important}

/* lighter typography */
.desktop-nav a,.post-button,.language-pill,.quick-card strong,label,.submit-button,.footer-col a,.footer-col h3,
.hero-search input,.file-main-text,.section-head a,summary{
  font-weight:600!important;
}
.hero-content h1,.intro-panel h2,.section-head h2,.download-strip h2,.footer-download-copy h3{
  font-weight:650!important;
  letter-spacing:-.035em!important;
}
.hero-content p,.intro-panel p,.required-note,details p,.footer-download-copy p{
  font-weight:400!important;
}

/* header profile dropdown + mobile drawer */
.contact-profile-menu{position:relative}
.contact-profile-pill{
  height:42px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 8px 0 0;
  border:0;
  background:#fff;
  color:#111827;
  font-weight:600;
  border-radius:999px;
}
.contact-profile-pill img{width:36px;height:36px;border-radius:50%;object-fit:cover;background:#e8fbff;border:2px solid #d8f7ff}
.contact-profile-pill span{max-width:88px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.contact-profile-pill i{font-size:11px;color:#667085}
.contact-profile-dropdown{
  position:absolute;
  right:0;
  top:50px;
  width:230px;
  background:#fff;
  border:1px solid #e7edf2;
  border-radius:13px;
  box-shadow:0 20px 50px rgba(15,23,42,.16);
  padding:6px 0;
  display:none;
  z-index:200;
}
.contact-profile-menu:hover .contact-profile-dropdown,
.contact-profile-menu.active .contact-profile-dropdown{display:block}
.contact-profile-dropdown a,
.dropdown-language-toggle{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 15px;
  border:0;
  border-bottom:1px solid #f1f4f7;
  background:#fff;
  color:#1f2937;
  text-align:left;
  font-size:14px;
  font-weight:500!important;
}
.contact-profile-dropdown a:hover,
.dropdown-language-toggle:hover{background:#f5fcff;color:#078fb0}
.contact-profile-dropdown i,.dropdown-language-toggle i{width:18px;text-align:center;color:#667085}
.dropdown-language-toggle strong{
  margin-left:auto;
  min-width:58px;
  height:26px;
  border-radius:999px;
  background:#eafbff;
  color:#078fb0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
}

.login-link{color:#0cc4e9;font-weight:600}

.mobile-menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.38);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:300;
}
.mobile-menu-overlay.active{opacity:1;pointer-events:auto}
.mobile-side-menu{
  position:fixed;
  top:0;
  bottom:0;
  right:0;
  width:min(330px,86vw);
  background:#fff;
  z-index:310;
  transform:translateX(105%);
  transition:transform .28s cubic-bezier(.2,.8,.2,1);
  box-shadow:-20px 0 50px rgba(15,23,42,.18);
  padding:18px;
  display:flex;
  flex-direction:column;
}
.mobile-side-menu.active{transform:translateX(0)}
.mobile-menu-top{display:flex;align-items:center;justify-content:space-between;padding-bottom:14px;border-bottom:1px solid #eef2f6}
.mobile-menu-top img{width:130px;height:auto}
.mobile-menu-top button{width:38px;height:38px;border-radius:50%;border:1px solid #dbe5eb;background:#fff;color:#0cc4e9}
.mobile-menu-links{padding-top:12px;display:grid;gap:4px}
.mobile-menu-links a,.mobile-language-row{
  min-height:48px;
  border:0;
  border-radius:12px;
  background:#fff;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 10px;
  color:#1f2937;
  font-size:14px;
  font-weight:500;
}
.mobile-menu-links a i,.mobile-language-row i{width:20px;text-align:center;color:#667085}
.mobile-menu-links a:hover,.mobile-language-row:hover{background:#f5fcff}
.mobile-language-row strong{margin-left:auto;background:#eafbff;color:#078fb0;border-radius:999px;padding:6px 10px;font-size:11px}

/* remove quick cards cleanly */
.quick-help{display:none!important}
.help-hero{border-bottom:0}
.hero-content{min-height:235px;padding-bottom:34px}

/* useful search */
.search-help-note{
  margin-top:10px;
  color:#667085;
  font-size:13px;
  font-weight:500;
}
.help-search-match{
  color:#0b9ec0!important;
  background:linear-gradient(transparent 62%, rgba(12,196,233,.14) 62%);
}

/* select/dropdown styling */
.form-group select{
  appearance:none;
  -webkit-appearance:none;
  background-color:#fbfdfe;
  background-image:
    linear-gradient(45deg, transparent 50%, #667085 50%),
    linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size:5px 5px, 5px 5px;
  background-repeat:no-repeat;
  padding-right:44px!important;
  border-radius:14px!important;
  font-weight:500!important;
}
.form-group select:focus{
  border-color:#0cc4e9!important;
  background-color:#fff;
  box-shadow:0 0 0 4px rgba(12,196,233,.10)!important;
}
.form-group select option{
  color:#111827;
  background:#fff;
  font-weight:400;
  padding:10px;
}

/* attachment upload fix */
.file-upload{
  min-height:86px!important;
  border:1.5px dashed rgba(12,196,233,.38)!important;
  background:#f8fdff!important;
  border-radius:17px!important;
  display:flex!important;
  align-items:center!important;
  gap:13px!important;
  padding:14px!important;
}
.file-preview[hidden]{display:none!important}
.file-preview{
  width:52px!important;
  height:52px!important;
  border-radius:14px!important;
  background:#eafdff!important;
  flex:0 0 auto!important;
  overflow:hidden!important;
}
.file-preview img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}
.upload-icon-circle{
  width:46px!important;
  height:46px!important;
  border-radius:15px!important;
  flex:0 0 auto!important;
}
.file-copy{min-width:0!important;flex:1!important}
.file-main-text{font-size:14px!important;color:#111827!important}
.file-hint{font-size:12.5px!important;color:#667085!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.remove-file-button{
  margin-top:8px!important;
  color:#ef4444!important;
  font-size:13px!important;
  font-weight:600!important;
  padding:0!important;
}

/* success box */
.form-success{
  border:1px solid rgba(12,196,233,.28);
  background:#f3fcff;
  color:#111827;
  border-radius:18px;
  padding:16px;
  margin-bottom:16px;
  text-align:center;
}
.form-success i{color:#0cc4e9;font-size:24px;margin-bottom:8px}
.form-success strong{display:block;font-size:16px;font-weight:650}
.form-success p{margin:6px 0 0;color:#475467;font-size:14px}

/* FAQ: only opened card grows */
.faq-grid{
  align-items:start!important;
}
details{
  align-self:start!important;
  min-height:76px;
}
details:not([open]){
  height:76px!important;
  overflow:hidden!important;
}
details[open]{
  height:auto!important;
}

/* home-style app footer, no quick links */
.contact-app-footer{
  margin-top:28px;
  background:#f3f5f7;
  border-top:1px solid #e3e8ec;
  padding:34px 20px 42px;
  display:flex;
  justify-content:center;
}
.footer-download-card{
  width:min(720px, calc(100vw - 40px));
  background:#fff;
  border:1px solid #e3ebf2;
  border-radius:20px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:0 8px 22px rgba(12,30,42,.04);
}
.footer-download-copy span{display:block;color:#0cc4e9;font-size:12px;font-weight:600;margin-bottom:6px}
.footer-download-copy h3{margin:0 0 6px;color:#101828;font-size:22px;line-height:1.15}
.footer-download-copy p{margin:0;color:#475467;font-size:14px;line-height:1.5}
.footer-download-side{display:flex;align-items:center;gap:16px}
.footer-app-logo-preview{width:66px;height:66px;border-radius:18px;overflow:hidden;flex:0 0 auto}
.footer-app-logo-preview img{width:100%;height:100%;object-fit:cover}
.footer-download-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.store-badge-link{display:block;line-height:0}
.store-badge-link img{height:46px;width:auto;border-radius:8px}

/* mobile */
@media (max-width:920px){
  .contact-header .header-inner{height:max(66px,calc(58px + env(safe-area-inset-top)))}
  .brand-logo{width:130px!important}
  .hero-content{padding-top:30px!important;min-height:210px}
  .hero-content h1{font-size:34px!important;font-weight:650!important}
  .hero-search{height:50px;border-radius:999px}
  .contact-shell{margin-top:0!important}
  .footer-download-card{
    width:min(340px, calc(100vw - 32px));
    flex-direction:column;
    text-align:center;
    padding:18px 16px;
  }
  .footer-download-side{flex-direction:column;width:100%}
  .footer-app-logo-preview{width:64px;height:64px}
  .footer-download-actions{flex-direction:column;width:100%}
  .store-badge-link img{height:48px}
}

/* RTL menu */
[dir="rtl"] .contact-profile-dropdown{right:auto;left:0}
[dir="rtl"] .contact-profile-dropdown a,
[dir="rtl"] .dropdown-language-toggle,
[dir="rtl"] .mobile-menu-links a,
[dir="rtl"] .mobile-language-row{direction:rtl;text-align:right}
[dir="rtl"] .dropdown-language-toggle strong,
[dir="rtl"] .mobile-language-row strong{margin-left:0;margin-right:auto}
[dir="rtl"] .mobile-side-menu{right:auto;left:0;transform:translateX(-105%)}
[dir="rtl"] .mobile-side-menu.active{transform:translateX(0)}
[dir="rtl"] .form-group select{
  background-position:20px 50%, 15px 50%;
  padding-right:14px!important;
  padding-left:44px!important;
}


/* v5.3.0 requested contact fixes */

/* remove search bar / compact hero */
.hero-search{display:none!important}
.hero-content{min-height:190px!important;padding-bottom:28px!important}
.hero-content h1{margin-top:0!important}

/* remove intro panel and let form breathe */
.intro-panel{display:none!important}
.contact-shell{
  grid-template-columns:minmax(260px,.75fr) minmax(520px,1.25fr)!important;
}
.left-panel{align-self:start!important}

/* direct support email */
.contact-methods{height:auto!important}

/* logged-in locked email */
input[readonly],
.locked-email{
  background:#f5f8fa!important;
  color:#344054!important;
  cursor:not-allowed!important;
}

/* remove file button only when selected */
.remove-file-button[hidden],
.remove-file-button[style*="display: none"]{
  display:none!important;
}

/* FAQ compact closed items + view more */
.faq-grid{
  align-items:start!important;
}
details{
  min-height:0!important;
  height:auto!important;
}
details:not([open]){
  height:auto!important;
  min-height:52px!important;
  padding:15px 16px!important;
}
details:not([open]) p{
  display:none!important;
}
details[open]{
  height:auto!important;
}
summary{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
}
summary::after{
  float:none!important;
  flex:0 0 auto!important;
}
.faq-extra{display:none!important}
.faq-grid.expanded .faq-extra{display:block!important}
.faq-view-more{
  margin:16px auto 0;
  min-height:40px;
  padding:0 18px;
  border:1px solid #cfe3ea;
  border-radius:999px;
  background:#fff;
  color:#0cc4e9;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faq-view-more:hover{border-color:#0cc4e9;background:#f8fdff}

/* success state hides form */
.form-success[hidden]{display:none!important}
.send-another-button{
  margin-top:12px;
  min-height:40px;
  padding:0 16px;
  border:1px solid #cfe3ea;
  background:#fff;
  color:#0cc4e9;
  border-radius:999px;
  font-weight:600;
}

/* Footer app download: no white box, grey background, left/right layout */
.contact-app-footer{
  background:#f3f5f7!important;
  padding:36px 24px 44px!important;
}
.contact-app-footer .footer-download-card{
  width:min(900px, calc(100vw - 48px))!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  padding:0!important;
  display:grid!important;
  grid-template-columns:minmax(280px,1fr) auto!important;
  align-items:center!important;
  gap:34px!important;
}
.contact-app-footer .footer-download-copy{text-align:left!important}
.contact-app-footer .footer-download-copy h3{
  max-width:420px;
  font-size:24px!important;
}
.contact-app-footer .footer-download-copy p{
  max-width:420px;
}
.contact-app-footer .footer-download-side{
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
}
.contact-app-footer .footer-app-logo-preview{
  width:72px!important;
  height:72px!important;
}
.contact-app-footer .footer-download-actions{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
}
.contact-app-footer .store-badge-link{line-height:0!important}
.contact-app-footer .store-badge-link img{
  height:46px!important;
  width:auto!important;
  border-radius:8px!important;
}

/* SEO doesn't need styling, but keep font consistent */
body,button,input,textarea,select,a{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Helvetica Neue",Arial,sans-serif!important;
}

/* Mobile layout */
@media (max-width:920px){
  .contact-shell{
    grid-template-columns:1fr!important;
  }
  .left-panel{
    order:2;
  }
  .form-card{
    order:1;
  }
  .contact-app-footer{
    padding:28px 16px 34px!important;
  }
  .contact-app-footer .footer-download-card{
    width:min(340px, calc(100vw - 32px))!important;
    grid-template-columns:1fr!important;
    text-align:center!important;
    gap:18px!important;
  }
  .contact-app-footer .footer-download-copy{text-align:center!important}
  .contact-app-footer .footer-download-copy h3,
  .contact-app-footer .footer-download-copy p{
    margin-left:auto!important;
    margin-right:auto!important;
  }
  .contact-app-footer .footer-download-side{
    flex-direction:column!important;
    justify-content:center!important;
  }
  .contact-app-footer .footer-download-actions{
    flex-direction:column!important;
  }
  .contact-app-footer .store-badge-link img{
    height:48px!important;
  }
}


/* v5.4.0 final contact polish */

/* mobile hero: less gap below subtitle */
@media (max-width:920px){
  .hero-content{
    min-height:178px!important;
    padding-top:28px!important;
    padding-bottom:18px!important;
  }
  .hero-content p{
    margin-bottom:0!important;
  }
}

/* PC hero title smaller */
@media (min-width:921px){
  .hero-content{
    min-height:210px!important;
    padding:48px 0 34px!important;
  }
  .hero-content h1{
    font-size:46px!important;
    line-height:1.05!important;
    margin:0 0 10px!important;
  }
  .hero-content p{
    font-size:16px!important;
    margin-bottom:0!important;
  }
}

/* nicer desktop top bar with icons */
@media (min-width:921px){
  .contact-header{
    background:rgba(255,255,255,.96)!important;
    border-bottom:1px solid #e8eef3!important;
    box-shadow:0 1px 0 rgba(16,24,40,.02)!important;
  }
  .header-inner{
    height:72px!important;
  }
  .desktop-nav{
    gap:12px!important;
  }
  .desktop-nav a{
    height:38px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:0 12px;
    border-radius:999px;
    color:#344054!important;
    font-size:13.5px!important;
    font-weight:600!important;
  }
  .desktop-nav a:hover{
    background:#f1fbfe!important;
    color:#078fb0!important;
  }
  .desktop-nav a:nth-child(1)::before{
    content:"\\f015";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#0cc4e9;
    font-size:13px;
  }
  .desktop-nav a:nth-child(2)::before{
    content:"\\2b";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#0cc4e9;
    font-size:13px;
  }
  .desktop-nav a:nth-child(3)::before{
    content:"\\f3ed";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#0cc4e9;
    font-size:13px;
  }
}

/* remove hero search if any remains */
.hero-search{display:none!important}

/* contact layout after removing intro panel */
.intro-panel{display:none!important}
.contact-shell{
  grid-template-columns:minmax(260px,.72fr) minmax(520px,1.28fr)!important;
}
@media (max-width:920px){
  .contact-shell{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
}

/* logged in email readonly style */
input[readonly],
input[data-locked="true"]{
  background:#f5f8fa!important;
  color:#344054!important;
  cursor:not-allowed!important;
}

/* Remove-file button should never appear without selected file */
.remove-file-button[hidden],
.remove-file-button[style*="display: none"]{
  display:none!important;
}

/* FAQ compact and consistent */
.faq-grid{
  align-items:start!important;
}
details{
  align-self:start!important;
  height:auto!important;
  min-height:0!important;
}
details:not([open]){
  min-height:58px!important;
  height:58px!important;
  padding:0 16px!important;
  display:flex!important;
  align-items:center!important;
  overflow:hidden!important;
}
details:not([open]) p{
  display:none!important;
}
details[open]{
  height:auto!important;
  min-height:58px!important;
}
summary{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  width:100%!important;
}
summary::after{
  float:none!important;
  flex:0 0 auto!important;
}
.faq-extra{display:none!important}
.faq-grid.expanded .faq-extra{display:block!important}
@media (min-width:921px){
  .faq-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  details:not([open]){
    height:64px!important;
    min-height:64px!important;
  }
}
.faq-view-more{
  margin:16px auto 0;
  min-height:40px;
  padding:0 18px;
  border:1px solid #cfe3ea;
  border-radius:999px;
  background:#fff;
  color:#0cc4e9;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faq-view-more:hover{
  border-color:#0cc4e9;
  background:#f8fdff;
}

/* success hides form */
.form-success[hidden]{display:none!important}
.send-another-button{
  margin-top:12px;
  min-height:40px;
  padding:0 16px;
  border:1px solid #cfe3ea;
  background:#fff;
  color:#0cc4e9;
  border-radius:999px;
  font-weight:600;
}

/* Footer app download: grey background, no white card */
.contact-app-footer{
  background:#f3f5f7!important;
  padding:36px 24px 44px!important;
}
.contact-app-footer .footer-download-card{
  width:min(900px, calc(100vw - 48px))!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  padding:0!important;
  display:grid!important;
  grid-template-columns:minmax(280px,1fr) auto!important;
  align-items:center!important;
  gap:34px!important;
}
.contact-app-footer .footer-download-copy{
  text-align:left!important;
}
.contact-app-footer .footer-download-copy h3{
  max-width:420px;
  font-size:24px!important;
}
.contact-app-footer .footer-download-copy p{
  max-width:420px;
}
.contact-app-footer .footer-download-side{
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
}
.contact-app-footer .footer-app-logo-preview{
  width:72px!important;
  height:72px!important;
}
.contact-app-footer .footer-download-actions{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
}
.contact-app-footer .store-badge-link{
  line-height:0!important;
}
.contact-app-footer .store-badge-link img{
  height:46px!important;
  width:auto!important;
  border-radius:8px!important;
}

/* Mobile: left/right app download too */
@media (max-width:920px){
  .contact-app-footer{
    padding:24px 14px 34px!important;
  }
  .contact-app-footer .footer-download-card{
    width:100%!important;
    max-width:470px!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    gap:14px!important;
    text-align:left!important;
    align-items:center!important;
  }
  .contact-app-footer .footer-download-copy{
    text-align:left!important;
  }
  .contact-app-footer .footer-download-copy span{
    font-size:11px!important;
  }
  .contact-app-footer .footer-download-copy h3{
    font-size:17px!important;
    line-height:1.16!important;
    margin:4px 0 5px!important;
  }
  .contact-app-footer .footer-download-copy p{
    font-size:12.5px!important;
    line-height:1.35!important;
  }
  .contact-app-footer .footer-download-side{
    flex-direction:column!important;
    gap:8px!important;
  }
  .contact-app-footer .footer-app-logo-preview{
    width:54px!important;
    height:54px!important;
  }
  .contact-app-footer .footer-download-actions{
    flex-direction:column!important;
    gap:7px!important;
  }
  .contact-app-footer .store-badge-link img{
    height:34px!important;
  }
}
@media (max-width:380px){
  .contact-app-footer .footer-download-card{
    gap:10px!important;
  }
  .contact-app-footer .footer-download-copy h3{
    font-size:15.5px!important;
  }
  .contact-app-footer .footer-download-copy p{
    font-size:11.5px!important;
  }
  .contact-app-footer .footer-app-logo-preview{
    width:48px!important;
    height:48px!important;
  }
  .contact-app-footer .store-badge-link img{
    height:30px!important;
  }
}

/* Direct support email updated and normal text */
.contact-methods small{
  color:#475467!important;
}

/* font consistency */
body,button,input,textarea,select,a{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Helvetica Neue",Arial,sans-serif!important;
}


/* v5.5.0 final contact fixes */

/* Remove separate top language pill */
.contact-header .language-pill.desktop-only{
  display:none!important;
}

/* Desktop nav: real inline icons, no pseudo glyph codes */
.desktop-nav a::before{
  content:none!important;
  display:none!important;
}
.desktop-nav a{
  gap:8px!important;
}
.desktop-nav a i{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:15px!important;
  font-size:13px!important;
  color:#0cc4e9!important;
  line-height:1!important;
}
.desktop-nav a span{
  line-height:1!important;
}

/* Remove hero gradient */
.help-hero{
  background:#ffffff!important;
  border-bottom:1px solid #eef3f6!important;
}
.hero-bg{
  display:none!important;
}

/* PC hero title balanced */
@media (min-width:921px){
  .hero-content{
    min-height:185px!important;
    padding:40px 0 28px!important;
  }
  .hero-content h1{
    font-size:40px!important;
    line-height:1.08!important;
    margin:0 0 8px!important;
    font-weight:650!important;
  }
  .hero-content p{
    font-size:15px!important;
    line-height:1.45!important;
  }
}

/* Desktop: form on left, direct support on right */
@media (min-width:921px){
  .contact-shell{
    grid-template-columns:minmax(560px, 1.25fr) minmax(300px, .75fr)!important;
    align-items:start!important;
  }
  .form-card{
    grid-column:1!important;
    grid-row:1!important;
  }
  .left-panel{
    grid-column:2!important;
    grid-row:1!important;
  }
  .contact-methods{
    position:sticky;
    top:92px;
  }
}

/* Mobile: form first, direct support after */
@media (max-width:920px){
  .form-card{
    order:1!important;
  }
  .left-panel{
    order:2!important;
  }
  .hero-content{
    min-height:160px!important;
    padding-top:24px!important;
    padding-bottom:12px!important;
  }
}

/* FAQ View More/ Less robust behavior */
.faq-section .faq-grid:not(.expanded) details:nth-of-type(n+4){
  display:none!important;
}
.faq-section .faq-grid.expanded details{
  display:block!important;
}
.faq-section .faq-view-more{
  cursor:pointer!important;
  user-select:none!important;
}

/* FAQ boxes consistent when closed, even if question wraps */
.faq-section details:not([open]){
  height:64px!important;
  min-height:64px!important;
  padding:0 16px!important;
  display:flex!important;
  align-items:center!important;
}
.faq-section details:not([open]) summary{
  min-height:64px!important;
}
.faq-section details:not([open]) summary span,
.faq-section details:not([open]) summary{
  line-height:1.25!important;
}
@media (max-width:920px){
  .faq-section details:not([open]){
    height:58px!important;
    min-height:58px!important;
  }
  .faq-section details:not([open]) summary{
    min-height:58px!important;
  }
}

/* Form locked email still readable */
input[readonly],
input[data-locked="true"]{
  background:#f6f8fa!important;
  color:#344054!important;
}
