/* ============================================================
   DrenajYalitim — Site CSS
   Konum: assets/css/site.css
   Tailwind CDN ile birlikte çalışır.
   Endüstriyel Renk Paleti: Okyanus Mavisi + Antrasit + Kehribar
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   :root = Gece Modu KAPALI (Light)
   .dark = Gece Modu AÇIK

   Renk Sistemi:
   --color-ocean  : Okyanus Mavisi (#00507d) — Birincil marka rengi
   --color-anthracite: Antrasit (#1e293b)   — Ağır endüstriyel ton
   --color-amber  : Kehribar Sarısı (#f59e0b) — Uyarı / aksiyon vurgusu
   ───────────────────────────────────────────────────────────── */
:root {
  /* Marka renkleri */
  --color-ocean:       #00507d;
  --color-ocean-light: #0369a1;
  --color-ocean-dark:  #003d5c;
  --color-anthracite:  #1e293b;
  --color-anthracite-soft: #334155;
  --color-amber:       #f59e0b;
  --color-amber-light: #fbbf24;
  --color-amber-dark:  #d97706;

  /* Yüzey renkleri — Gündüz */
  --surface:           #f8fafc;
  --surface-container: #f0f4f8;
  --surface-card:      #ffffff;
  --surface-nav:       rgba(255, 255, 255, 0.80);
  --surface-footer:    #f1f5f9;

  /* Metin renkleri — Gündüz */
  --text-primary:      #0f172a;
  --text-secondary:    #475569;
  --text-muted:        #94a3b8;
  --text-on-ocean:     #ffffff;

  /* Sınır renkleri */
  --border-default:    #e2e8f0;
  --border-subtle:     #f1f5f9;

  /* Gölge */
  --shadow-nav:        0 4px 32px rgba(0, 80, 125, 0.08);
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 40px rgba(0, 80, 125, 0.14);
  --shadow-whatsapp:   0 8px 32px rgba(37, 211, 102, 0.30);

  /* Geçiş */
  --transition-base:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Yazı tipleri */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Köşe yarıçapları */
  --radius-sm:    0.25rem;   /* 4px  */
  --radius-md:    0.5rem;    /* 8px  */
  --radius-lg:    0.75rem;   /* 12px */
  --radius-xl:    1rem;      /* 16px */
  --radius-full:  9999px;
}

/* ── Gece Modu (Dark) — html.dark sınıfı aktif olduğunda ── */
.dark {
  --surface:           #0f172a;
  --surface-container: #1e293b;
  --surface-card:      #1e293b;
  --surface-nav:       rgba(15, 23, 42, 0.85);
  --surface-footer:    #0a1120;

  --text-primary:      #e2e8f0;
  --text-secondary:    #94a3b8;
  --text-muted:        #64748b;

  --border-default:    #334155;
  --border-subtle:     #1e293b;

  --shadow-nav:        0 4px 32px rgba(0, 0, 0, 0.40);
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.30);
  --shadow-card-hover: 0 8px 40px rgba(0, 80, 125, 0.30);
}

/* ─────────────────────────────────────────────────────────────
   2. RESET & TEMEL
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-medium), color var(--transition-medium);
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─────────────────────────────────────────────────────────────
   3. NAVİGASYON — Glass + Sticky
   ───────────────────────────────────────────────────────────── */
.glass-header {
  background: var(--surface-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-nav);
  transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

/* Scroll'da nav hafifçe küçülür */
.nav-scrolled {
  box-shadow: 0 8px 48px rgba(0, 80, 125, 0.12);
}

/* Mobile menü açma/kapama animasyonu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}
.mobile-menu.open {
  max-height: 600px;
}

/* Hamburger ikonunun X'e dönüşümü */
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}
.menu-open .hamburger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-open .hamburger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Dark mode toggle ikonu */
#theme-toggle-icon {
  transition: transform var(--transition-medium);
}
.dark #theme-toggle-icon {
  transform: rotate(180deg);
}

/* ─────────────────────────────────────────────────────────────
   4. BUTONLAR
   ───────────────────────────────────────────────────────────── */

/* Birincil buton — Okyanus Mavisi */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--color-ocean);
  color: var(--text-on-ocean);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  /* Ripple efekti için */
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-base);
}
.btn-primary:hover {
  background: var(--color-ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 80, 125, 0.30);
}
.btn-primary:hover::before {
  background: rgba(255, 255, 255, 0.06);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Kehribar / Aksiyon butonu */
.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--color-amber);
  color: #1a1a1a;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.btn-amber:hover {
  background: var(--color-amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* İkincil/Outline butonu */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--color-ocean);
  border: 2px solid var(--color-ocean);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}
.btn-outline:hover {
  background: var(--color-ocean);
  color: white;
  transform: translateY(-1px);
}
.dark .btn-outline {
  color: #7dd3fc;
  border-color: #7dd3fc;
}
.dark .btn-outline:hover {
  background: #0369a1;
  color: white;
  border-color: #0369a1;
}

/* ─────────────────────────────────────────────────────────────
   5. HERO ANİMASYONLARI
   ───────────────────────────────────────────────────────────── */

/* Yukarıdan aşağı belirir */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aşağıdan yukarı belirir */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soldan gelir */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sağdan gelir */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Ölçekten büyür */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Sayı sayacı için yazı efekti */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Endüstriyel dalgalanma — Arka plan süsü */
@keyframes industrialWave {
  0%   { transform: translateX(0) scaleY(1); }
  50%  { transform: translateX(-30px) scaleY(1.05); }
  100% { transform: translateX(0) scaleY(1); }
}

/* Işık tarama efekti (shimmer-on-load) */
@keyframes shimmerSweep {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Nabız atışı */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* Döngüsel dönüş — loading spinner */
@keyframes spinFast {
  to { transform: rotate(360deg); }
}

/* Animasyon yardımcı sınıfları */
.animate-fade-up        { animation: fadeInUp    0.6s ease forwards; }
.animate-fade-left      { animation: fadeInLeft  0.6s ease forwards; }
.animate-fade-right     { animation: fadeInRight 0.6s ease forwards; }
.animate-scale-in       { animation: scaleIn     0.5s ease forwards; }
.animate-hero-down      { animation: heroFadeDown 0.7s ease forwards; }
.animate-count          { animation: countUp     0.5s ease forwards; }
.animate-spin           { animation: spinFast    0.8s linear infinite; }

/* Gecikme sınıfları */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Başlangıçta gizle, animasyon sonrası görünür */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   6. ENDÜSTRİYEL GRİD & ARKA PLAN EFEKTLERİ
   ───────────────────────────────────────────────────────────── */

/* Nokta ızgarası — hero bölümü dekorasyonu */
.industrial-grid {
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(0, 80, 125, 0.07) 1px,
    transparent 0
  );
  background-size: 40px 40px;
}
.dark .industrial-grid {
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(125, 211, 252, 0.05) 1px,
    transparent 0
  );
}

/* Gradient overlay — hero görseli üzerine */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 80, 125, 0.92) 0%,
    rgba(0, 61, 92, 0.85) 50%,
    rgba(245, 158, 11, 0.15) 100%
  );
}

/* Kehribar vurgu çizgisi */
.amber-accent {
  position: relative;
}
.amber-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-amber);
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────
   7. KARTLAR
   ───────────────────────────────────────────────────────────── */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 80, 125, 0.20);
}
.dark .card {
  background: var(--surface-card);
  border-color: var(--border-default);
}
.dark .card:hover {
  border-color: rgba(125, 211, 252, 0.20);
}

/* Hizmet kartı — Sol kenarda kayarken açılan renk çubuğu */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-ocean);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-medium);
}
.service-card:hover::before {
  transform: scaleY(1);
}

/* ─────────────────────────────────────────────────────────────
   8. FORM ELEMENTLERİ
   ───────────────────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface-card);
  color: var(--text-primary);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: var(--color-ocean);
  box-shadow: 0 0 0 3px rgba(0, 80, 125, 0.12);
}
.dark input[type="text"],
.dark input[type="email"],
.dark input[type="tel"],
.dark input[type="password"],
.dark textarea,
.dark select {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}
.dark input:focus,
.dark textarea:focus,
.dark select:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.10);
}

/* Hata durumu */
.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10) !important;
}

/* ─────────────────────────────────────────────────────────────
   9. WHATSAPP WİDGET
   ───────────────────────────────────────────────────────────── */

/* WhatsApp butonunun sürekli nabız efekti */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.50); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0); }
}

#wa-btn {
  box-shadow: var(--shadow-whatsapp);
  animation: waPulse 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  transition: transform var(--transition-base);
}
#wa-btn:hover {
  transform: scale(1.12);
}

/* Tooltip balonunun giriş animasyonu */
#wa-tooltip {
  animation: fadeInUp 0.3s ease forwards;
}

/* ─────────────────────────────────────────────────────────────
   10. COOKIE BANNER
   ───────────────────────────────────────────────────────────── */
#cookie-banner {
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
#cookie-banner.banner-hide {
  transform: translateY(100%);
  opacity: 0;
}

/* ─────────────────────────────────────────────────────────────
   11. ÖZEL SCROLLBAR (Masaüstü)
   ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar         { width: 6px; height: 6px; }
::-webkit-scrollbar-track   { background: transparent; }
::-webkit-scrollbar-thumb   { background: rgba(0, 80, 125, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 80, 125, 0.50); }
.dark ::-webkit-scrollbar-thumb { background: rgba(125, 211, 252, 0.20); }

/* ─────────────────────────────────────────────────────────────
   12. BLOG / ARTICLE TİPOGRAFYA
   ───────────────────────────────────────────────────────────── */
.article-content h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--color-ocean);
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.75rem 0 0.75rem;
}
.article-content p {
  margin-bottom: 1.4rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--text-secondary);
}
.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}
.article-content blockquote {
  border-left: 4px solid var(--color-amber);
  padding: 1rem 1.5rem;
  background: rgba(245, 158, 11, 0.06);
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
}
.article-content a {
  color: var(--color-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content strong {
  color: var(--text-primary);
  font-weight: 700;
}
.article-content code {
  font-family: 'Courier New', monospace;
  background: rgba(0, 80, 125, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.875em;
  color: var(--color-ocean);
}
.dark .article-content code {
  background: rgba(125, 211, 252, 0.10);
  color: #7dd3fc;
}

/* ─────────────────────────────────────────────────────────────
   13. İKON SİSTEMİ (Material Symbols)
   ───────────────────────────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
  user-select: none;
}
.icon-filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ─────────────────────────────────────────────────────────────
   14. ETİKET / PILL
   ───────────────────────────────────────────────────────────── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.tag-pill:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ─────────────────────────────────────────────────────────────
   15. FAQ / ACCORDION
   ───────────────────────────────────────────────────────────── */
details > summary::-webkit-details-marker { display: none; }
details > summary { list-style: none; cursor: pointer; }
.expand-icon {
  transition: transform var(--transition-medium);
  flex-shrink: 0;
}
details[open] summary .expand-icon {
  transform: rotate(180deg);
}

/* ─────────────────────────────────────────────────────────────
   16. VIDEO EMBED
   ───────────────────────────────────────────────────────────── */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ─────────────────────────────────────────────────────────────
   17. LOADING SKELETON
   ───────────────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -500px 0; }
  100% { background-position: 500px 0; }
}
.skeleton {
  background: linear-gradient(
    90deg,
    var(--surface-container) 25%,
    var(--border-default)     50%,
    var(--surface-container) 75%
  );
  background-size: 1000px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────────────────────
   18. YARDIMCI SINIFLAR
   ───────────────────────────────────────────────────────────── */

/* Kırpılmış metin — tek satır */
.truncate-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* 2 satırda kes */
.truncate-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 3 satırda kes */
.truncate-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Görüntü zoom hover efekti */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-zoom:hover img {
  transform: scale(1.06);
}

/* Gölge ile beliren kart */
.lift-card {
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.lift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 80, 125, 0.14);
}

/* Endüstriyel çizgi ayraç */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-default) 20%,
    var(--color-amber) 50%,
    var(--border-default) 80%,
    transparent
  );
  margin: 3rem 0;
}

/* Bölüm başlığı alt çizgisi */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--color-ocean), var(--color-amber));
  border-radius: 2px;
  transition: width 0.4s ease;
}
.section-title:hover::after {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   19. RESPONSİF — Küçük ekran ayarları
   ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .btn-primary,
  .btn-amber,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
  }

  .article-content h2 {
    font-size: 1.375rem;
  }
}

/* Yazdırma — Dark mode iptal, gereksiz elementleri gizle */
@media print {
  nav, footer, #wa-btn, #cookie-banner, .no-print {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
}
