/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #12344d;
  --secondary: #4f6f85;
  --bg: #f7f9fb;
  --accent: #caa86a;
  --accent-dark: #a8893f;
  --white: #ffffff;
  --text: #1a2e3b;
  --text-light: #5a7080;
  --border: #dce6ed;
  --shadow: 0 4px 24px rgba(18,52,77,0.10);
  --shadow-lg: 0 8px 40px rgba(18,52,77,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', 'Assistant', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  font-size: 17px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Heebo', 'Rubik', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-secondary { color: var(--text-light); }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }

.section-tag {
  display: inline-block;
  background: rgba(202,168,106,0.15);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202,168,106,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1eab54;
  border-color: #1eab54;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  padding: 0 20px;
  box-shadow: 0 2px 16px rgba(18,52,77,0.18);
}

.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
}

.navbar-brand .name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.navbar-brand .tagline {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.22s;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--accent);
  color: var(--primary);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.top-bar a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4d6e 60%, #2a6489 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(202,168,106,0.07);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 350px; height: 350px;
  background: rgba(202,168,106,0.05);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202,168,106,0.2);
  border: 1px solid rgba(202,168,106,0.4);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 24px;
  backdrop-filter: blur(6px);
}

.hero-phone .phone-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-phone .phone-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.hero-phone .phone-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  direction: ltr;
  display: block;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
}

.hero-card ul li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-item .icon {
  font-size: 1.4rem;
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.22s;
  text-align: center;
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--secondary);
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== SERVICES ===== */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-icon {
  width: 56px; height: 56px;
  background: rgba(18,52,77,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  flex: 1;
}

.service-card .btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* ===== PROCESS ===== */
.process-section { background: var(--primary); }

.process-section .section-tag {
  background: rgba(202,168,106,0.2);
  color: var(--accent);
}

.process-section h2 {
  color: var(--white);
}

.process-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(to left, rgba(202,168,106,0.3), var(--accent), rgba(202,168,106,0.3));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(202,168,106,0.3);
}

.process-step h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  margin: 0;
}

/* ===== WHY RACHEL ===== */
.why-rachel-section { background: var(--bg); }

.why-rachel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rachel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rachel-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rachel-feature .feat-icon {
  width: 42px; height: 42px;
  background: rgba(202,168,106,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rachel-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.rachel-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.rachel-visual {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
}

.rachel-visual .big-stat {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.rachel-visual .stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.rachel-visual .divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 24px auto;
  border-radius: 2px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: right;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.18s;
}

.faq-question:hover { background: var(--bg); }
.faq-question.open { background: var(--bg); color: var(--secondary); }

.faq-arrow {
  width: 28px; height: 28px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.22s;
}

.faq-question.open .faq-arrow {
  background: var(--secondary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #b8923d 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--primary);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(18,52,77,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-cta-primary:hover {
  background: #0d2638;
  border-color: #0d2638;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,52,77,0.4);
}

/* ===== CONTACT FORM ===== */
.lead-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.lead-form h3 {
  margin-bottom: 8px;
}

.lead-form .form-sub {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  direction: rtl;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.18s;
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary);
  background: var(--white);
}

.form-control::placeholder { color: #aab6be; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.18s;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-contact-item .ic {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.22s;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.float-wa { background: #25D366; color: var(--white); }
.float-phone { background: var(--accent); color: var(--primary); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 70px 0 60px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin: 0; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--accent); }

/* ===== ABOUT ===== */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.22s;
}

.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-item .ci-icon {
  width: 50px; height: 50px;
  background: rgba(18,52,77,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { color: var(--secondary); margin: 0; }
.contact-info-item a:hover { color: var(--primary); }

.map-placeholder {
  background: linear-gradient(135deg, #e8edf2, #dce6ed);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-light);
  margin-top: 24px;
  border: 1px solid var(--border);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 70px 0 60px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .why-rachel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0; left: 0;
    background: var(--primary);
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .hamburger { display: flex; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .rachel-features { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .hero { padding: 50px 0 50px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
