/* =========================================================
   Villa Siros - Luxury Villa Website
   Art direction: tropical luxury resort with Bali atmosphere
   Palette: white, beige, dark green, gold
   Typography: Cormorant Garamond + Manrope
========================================================= */

:root,
[data-theme="light"] {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', Arial, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.24vw, 1.08rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.7rem, 1.2rem + 1.6vw, 2.8rem);
  --text-2xl: clamp(2.6rem, 1.5rem + 3vw, 5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --color-bg: #f7f1e8;
  --color-surface: #fffdf9;
  --color-surface-2: #efe4d2;
  --color-surface-3: #e3d3bc;
  --color-text: #21362d;
  --color-text-muted: #5b6f66;
  --color-text-faint: #819088;
  --color-primary: #1f4d3c;
  --color-primary-2: #2b6350;
  --color-gold: #c8a96b;
  --color-gold-dark: #a8884f;
  --color-white: #ffffff;
  --color-border: rgba(31, 77, 60, 0.12);
  --color-shadow: rgba(24, 35, 28, 0.14);
  --color-overlay: rgba(16, 28, 24, 0.45);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 999px;

  --shadow-sm: 0 10px 30px rgba(31, 51, 40, 0.08);
  --shadow-md: 0 16px 40px rgba(24, 35, 28, 0.12);
  --shadow-lg: 0 24px 60px rgba(24, 35, 28, 0.18);

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --color-bg: #11231d;
  --color-surface: #173128;
  --color-surface-2: #1d3b31;
  --color-surface-3: #23473a;
  --color-text: #f6f1e8;
  --color-text-muted: #d7cfbf;
  --color-text-faint: #b8af9d;
  --color-primary: #e8dcc6;
  --color-primary-2: #d8c6a1;
  --color-gold: #d7b67a;
  --color-gold-dark: #c29d5e;
  --color-white: #ffffff;
  --color-border: rgba(255, 248, 236, 0.12);
  --color-shadow: rgba(0, 0, 0, 0.25);
  --color-overlay: rgba(7, 12, 10, 0.58);
}

/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
button,
input,
textarea,
select {
  transition: var(--transition);
}

a {
  text-decoration: none;
}

section {
  position: relative;
}

.section-padding {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 14ch;
}

.section-text {
  color: var(--color-text-muted);
  max-width: 60ch;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-full);
}

.skip-link:focus {
  left: 20px;
  top: 20px;
}

/* Navbar */
.navbar-custom {
  padding: 1rem 0;
  background: transparent;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  background: rgba(247, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(17, 35, 29, 0.07);
}

[data-theme="dark"] .navbar-custom.scrolled {
  background: rgba(17, 35, 29, 0.88);
}

.navbar-brand,
.footer-brand {
  font-weight: 800;
  color: var(--color-text);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-logo {
  width: 38px;
  height: 38px;
  color: var(--color-gold);
}

.nav-link {
  color: var(--color-text) !important;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.7rem 0.95rem !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  bottom: 0.35rem;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.9rem);
}

.nav-actions {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .nav-actions {
    margin-top: 0;
  }
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
  border-radius: var(--radius-full);
  padding: 0.95rem 1.55rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-lg-custom {
  min-height: 48px;
  padding: 1rem 1.7rem;
}

.btn-sm-custom {
  min-height: 44px;
  padding: 0.75rem 1.25rem;
}

.btn-gold {
  background: var(--color-gold);
  color: #14231d;
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: #14231d;
  transform: translateY(-2px);
}

.btn-outline-lux {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  background: transparent;
}

.btn-outline-lux:hover {
  background: var(--color-white);
  color: #14231d;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #18b657;
  color: #fff;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(12, 18, 14, 0.65), rgba(24, 47, 38, 0.35)),
    url('https://picsum.photos/seed/villa-siros-hero/1920/1200') center/cover no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 9, 0.5), rgba(7, 11, 9, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 0.95;
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

.hero-text {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.8rem;
}

.hero-stats .stat-card,
.hero-side-card,
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

.stat-card {
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.stat-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.84);
}

.hero-side-card {
  padding: 1.8rem;
  color: var(--color-white);
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--text-xs);
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.hero-side-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-side-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-side-list i {
  color: var(--color-gold);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 9px;
  background: var(--color-white);
  border-radius: 50px;
  transform: translateX(-50%);
  animation: scrollMove 1.8s infinite;
}

@keyframes scrollMove {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* About */
.about-section {
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.about-image-wrap {
  position: relative;
  padding-right: 2rem;
}

.about-main-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 560px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: 0;
  bottom: 2rem;
  background: var(--color-white);
  color: var(--color-text);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .floating-badge {
  background: var(--color-surface-2);
}

.floating-badge span {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
}

.floating-badge strong {
  display: block;
  margin-top: 0.3rem;
}

.info-panel,
.luxury-note {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.info-panel h3,
.luxury-note h3 {
  font-family: var(--font-display);
  margin-bottom: 0.7rem;
  font-size: 1.7rem;
}

/* Villas */
.villas-section {
  background: var(--color-surface);
}

.villa-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(32, 52, 42, 0.08);
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .villa-card {
  background: var(--color-surface-2);
}

.villa-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.villa-image {
  overflow: hidden;
}

.villa-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.villa-card:hover .villa-image img {
  transform: scale(1.06);
}

.villa-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.villa-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(31, 77, 60, 0.08);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(200, 169, 107, 0.18);
  color: #7d6333;
}

.villa-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.villa-content p {
  color: var(--color-text-muted);
}

.villa-features {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.villa-features li {
  color: var(--color-text);
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.villa-features i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.villa-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.villa-footer small {
  display: block;
  color: var(--color-text-faint);
  margin-bottom: 0.25rem;
}

.villa-footer strong {
  font-size: var(--text-base);
}

.featured-villa {
  border: 1px solid rgba(200, 169, 107, 0.3);
}

/* Facilities */
.facilities-section {
  background:
    linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.45)),
    url('https://picsum.photos/seed/villa-siros-facilities/1600/1100') center/cover fixed no-repeat;
}

[data-theme="dark"] .facilities-section {
  background:
    linear-gradient(rgba(17,35,29,0.7), rgba(17,35,29,0.7)),
    url('https://picsum.photos/seed/villa-siros-facilities/1600/1100') center/cover fixed no-repeat;
}

.facility-card {
  height: 100%;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(31, 77, 60, 0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .facility-card {
  background: rgba(23, 49, 40, 0.9);
}

.facility-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-2));
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.facility-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.facility-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* Gallery */
.gallery-section {
  background: var(--color-bg);
}

.masonry-gallery {
  column-count: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  width: 100%;
  margin-bottom: 1.25rem;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 1.3rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  border-radius: 1.3rem;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item::after {
  content: "\F52A";
  font-family: bootstrap-icons;
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 8, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: none;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(to bottom, var(--color-surface), var(--color-surface-2));
}

.testimonial-card {
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

[data-theme="dark"] .testimonial-card {
  background: var(--color-surface-2);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-head img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(200, 169, 107, 0.35);
}

.testimonial-head h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 0.15rem;
}

.testimonial-head p {
  margin: 0 0 0.4rem;
  color: var(--color-text-muted);
}

.rating {
  color: var(--color-gold);
}

.testimonial-text {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-gold);
}

/* Location */
.location-section {
  background: var(--color-bg);
}

.nearby-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.nearby-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.nearby-item h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold-dark);
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 100%;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* Contact */
.contact-section {
  background: linear-gradient(to bottom, var(--color-surface), var(--color-bg));
}

.contact-info-grid {
  display: grid;
  gap: 1rem;
}

.contact-card,
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .contact-card,
[data-theme="dark"] .contact-form-card {
  background: var(--color-surface-2);
}

.contact-card {
  padding: 1.2rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-card i {
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-top: 0.15rem;
}

.contact-card span {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--color-text-faint);
  margin-bottom: 0.25rem;
}

.contact-card a,
.contact-card p {
  color: var(--color-text);
  margin: 0;
  word-break: break-word;
}

.contact-form-card {
  padding: 2rem;
}

.form-label {
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.custom-input {
  min-height: 52px;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 0.9rem 1rem;
  box-shadow: none !important;
}

.custom-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 0.2rem rgba(200, 169, 107, 0.15) !important;
  background: var(--color-white);
  color: var(--color-text);
}

textarea.custom-input {
  min-height: 140px;
  resize: none;
}

.form-alert {
  display: none;
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
}

.form-alert.show {
  display: block;
}

.form-alert.success {
  background: rgba(47, 118, 67, 0.12);
  color: #1d6d37;
}

.form-alert.error {
  background: rgba(176, 68, 56, 0.12);
  color: #a43b2e;
}

/* Footer */
.footer-section {
  background: #13231d;
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 1.3rem;
}

.footer-section .brand-logo,
.footer-brand,
.footer-title {
  color: var(--color-white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    max-width: 12ch;
  }
}

@media (max-width: 991.98px) {
  .navbar-custom {
    background: rgba(247, 241, 232, 0.95);
    backdrop-filter: blur(12px);
  }

  [data-theme="dark"] .navbar-custom {
    background: rgba(17, 35, 29, 0.94);
  }

  .hero-section {
    text-align: left;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .about-image-wrap {
    padding-right: 0;
  }

  .floating-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .hero-buttons,
  .villa-footer,
  .contact-card,
  .testimonial-head {
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .villa-image img {
    height: 240px;
  }

  .masonry-gallery {
    column-count: 1;
  }

  .contact-form-card {
    padding: 1.3rem;
  }

  .btn-lg-custom,
  .btn-sm-custom,
  .theme-toggle {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}