/*
Theme Name: ServiceCenter Landing
Theme URI: https://servicecenter.az/
Author: ServiceCenter
Version: 1.0.0
Text Domain: servicecenter-landing
*/

:root {
  --bg: #ffffff;
  --bg-light: #f5f7fb;
  --border: #e2e8f4;
  --border-light: #edf0f7;
  --text: #1a1f36;
  --text-secondary: #4a5578;
  --text-muted: #7b849e;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff4ff;
  --primary-bg: rgba(37,99,235,0.06);
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-primary: 0 8px 30px rgba(37,99,235,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light); transition: all 0.3s;
}
nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px; color: #fff;
}
.nav-logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 19px; color: var(--text); }
.nav-logo-text span { color: var(--primary); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary); font-weight: 500; font-size: 14px;
  padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-bg); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
}
.lang-switch select {
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 0 10px;
  outline: none;
  cursor: pointer;
}
.lang-switch select:focus { border-color: rgba(37,99,235,0.35); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.nav-phone {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--text); font-weight: 600; font-size: 14px; transition: color 0.2s;
}
.nav-phone:hover { color: var(--primary); }
.nav-phone svg { color: var(--primary); }
.nav-cta {
  display: inline-flex; align-items: center; padding: 10px 22px;
  background: var(--primary); color: #fff; font-weight: 600; font-size: 14px;
  border-radius: 10px; text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(36px,4.5vw,52px);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--primary); position: relative; }
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 8px;
  background: rgba(37,99,235,0.15); border-radius: 4px; z-index: -1;
}
.hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 480px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-visual { position: relative; }
.hero-img-wrapper {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex; align-items: center; justify-content: center;
}
.hero-floating-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: -20px; left: -20px; }
.hero-floating-card.card-2 { top: 20px; right: -20px; animation-delay: -3s; }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
.hf-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hf-icon.blue { background: var(--primary-light); }
.hf-icon.green { background: rgba(16,185,129,0.1); }
.hf-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; }
.hf-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 15px; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }

.trust-bar { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.trust-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.trust-icon.green { background: rgba(16,185,129,0.12); color: var(--success); }

.stats-bar { padding: 0 0 80px; background: var(--bg-light); }
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s; }
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

section { padding: 80px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.section-label::before, .section-label::after { content: ''; width: 20px; height: 2px; background: var(--primary); border-radius: 1px; opacity: 0.3; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px,3.5vw,38px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

.services-section { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  display: flex;
  align-items: center;
  padding: 12px;
}
.svc:hover { box-shadow: var(--shadow-lg); }
.svc:hover .svc-icon { transform: scale(1.1); }
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 12px;
  transition: transform 0.3s ease;
}
.svc-content { flex: 1; }
.svc-title { font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.4; margin-bottom: 4px; }
.svc-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.svc-theme-blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.svc-theme-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.svc-theme-green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.svc-theme-orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); }
.svc-theme-pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.svc-theme-cyan { background: linear-gradient(135deg, #cffafe, #a5f3fc); }
.svc-theme-amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.svc-theme-slate { background: linear-gradient(135deg, #e2e8f0, #cbd5e1); }
.svc-theme-teal { background: linear-gradient(135deg, #ccfbf1, #99f6e4); }
.svc-theme-rose { background: linear-gradient(135deg, #ffe4e6, #fecdd3); }
.svc-theme-indigo { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 16px; transition: all 0.3s;
  display: flex;
  align-items: center;
  cursor: default;
}
.why-card:hover { background: #fff; box-shadow: var(--shadow); }
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-right: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card:hover .why-icon { transform: scale(1.1); }
.why-content { flex: 1; }
.why-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.process-section { background: var(--bg-light); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-line { position: absolute; top: 40px; left: 13%; right: 13%; height: 2px; background: var(--border); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  border: 2.5px solid var(--primary); display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px;
  color: var(--primary); margin: 0 auto 18px; transition: all 0.3s;
}
.step:hover .step-num { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.step-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 220px; margin: 0 auto; }

.brands-section { padding: 48px 0; overflow: hidden; }
.brands-track {
  display: flex; align-items: center; gap: 48px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brands-inner { display: flex; gap: 48px; align-items: center; animation: scrollBrands 35s linear infinite; }
.brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 20px; color: var(--text); opacity: 0.15; white-space: nowrap; transition: opacity 0.3s; }
.brand-name:hover { opacity: 0.4; }
@keyframes scrollBrands { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }

.reviews-section { background: var(--bg-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star { color: var(--warning); font-size: 16px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--primary); }
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--text-muted); }

.cta-section { padding: 80px 0; }
.cta-box { background: var(--primary); border-radius: 24px; padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-box::after { content: ''; position: absolute; bottom: -150px; left: -50px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(26px,3.5vw,38px); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.btn-whatsapp:hover {
  background: #1fb85a;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

/* CONTACT */
.contact-section { background: var(--bg-light); }
.contact-grid { display: flex !important; flex-direction: column !important; gap: 16px; }
.contact-row { display: grid !important; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-row.center { display: flex !important; justify-content: center; }
.contact-row.center .schedule-box { width: 100%; max-width: 520px; margin-top: 0; }
.contact-info { display: none; } /* hide legacy wrapper if present */
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); transition: all 0.3s; }
.contact-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(37,99,235,0.2); }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 2px; }
.contact-value { font-weight: 600; font-size: 15px; }
.contact-value a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--primary); }
.schedule-box { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 24px; margin-top: 0; }
.schedule-title { font-weight: 700; font-size: 15px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.schedule-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.schedule-row:last-child { border-bottom: none; }
.schedule-day { color: var(--text-secondary); }
.schedule-time { font-weight: 600; color: var(--primary); }

.form-box { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 32px; }
.form-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.form-box .form-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: all 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.form-field textarea { min-height: 90px; resize: vertical; }

footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about .nav-logo-text { color: #fff; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.2s; }
.footer-social a:hover { background: rgba(37,99,235,0.3); border-color: rgba(37,99,235,0.5); }

.mobile-menu { display: none; position: fixed; inset: 0; top: 72px; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 999; padding: 32px 24px; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-size: 18px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border-light); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-line { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-row { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  section { padding: 64px 0; }
  .hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.wpcf7 form { margin: 0; }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%; background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: all 0.2s;
}
.wpcf7 textarea { min-height: 90px; resize: vertical; }
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.wpcf7 input[type="submit"],
.wpcf7 button {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 15px; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
  background: var(--primary); color: #fff;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.wpcf7-not-valid-tip { font-size: 12px; margin-top: 6px; }
.wpcf7-response-output { margin: 16px 0 0; border-radius: 12px; padding: 12px 14px; }
