/* Klinik Pergigian Arasu — refined healthcare layout */

:root {
  --cream: #faf7f2;
  --cream-deep: #f3ebe0;
  --brown: #5d4037;
  --brown-soft: #7a5a4e;
  --orange: #c24e33;
  --orange-hover: #a8422b;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --charcoal: #1f1a17;
  --muted: #5c534c;
  --white: #ffffff;
  --border: rgba(93, 64, 55, 0.14);
  --shadow-soft: 0 8px 24px rgba(31, 26, 23, 0.06);

  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  /* Fluid layout: full-width sections with proportional edge padding */
  --page-pad: clamp(1rem, 4.5vw, 4.5rem);
  --text-measure: 40rem;
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --space-section: clamp(2.75rem, 5vw, 4.25rem);
  --space-tight: 1.25rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--charcoal);
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(201, 162, 39, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 15%, rgba(194, 78, 51, 0.04), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 50%, var(--cream) 100%);
  min-height: 100vh;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown);
  margin: 0 0 0.65rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-pad), var(--safe-left))
    max(var(--page-pad), var(--safe-right));
  margin-inline: auto;
}

.section {
  padding: var(--space-section) 0;
  width: 100%;
}

.section-header {
  max-width: var(--text-measure);
  margin-bottom: 1.75rem;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
}

.section-header p {
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

.btn-secondary:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
}

/* Media placeholders */
.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px dashed rgba(93, 64, 55, 0.25);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(93, 64, 55, 0.03),
      rgba(93, 64, 55, 0.03) 8px,
      transparent 8px,
      transparent 16px
    ),
    rgba(255, 255, 255, 0.6);
  color: var(--brown-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.media-placeholder--portrait {
  aspect-ratio: 4 / 5;
}

.media-placeholder--team {
  aspect-ratio: 21 / 9;
  min-height: 220px;
}

.media-placeholder--exterior {
  aspect-ratio: 16 / 9;
  margin-top: 1.25rem;
  min-height: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-h) + var(--safe-top));
  display: flex;
  align-items: center;
  padding-top: var(--safe-top);
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding-inline: max(var(--page-pad), var(--safe-left))
    max(var(--page-pad), var(--safe-right));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 1;
  min-width: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background:
    radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 55%),
    var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  color: var(--brown);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.15;
}

.logo-text span {
  display: block;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--muted);
  cursor: pointer;
}

.lang-toggle button.is-active {
  background: var(--brown);
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown);
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--orange);
}

.header-book {
  white-space: nowrap;
}

.nav-book-mobile {
  display: none;
  margin-top: 1rem;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero (full-bleed banner) ========== */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 85vh, 900px);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201, 162, 39, 0.18), transparent 50%),
    linear-gradient(135deg, #6b4f45 0%, #3e2a24 45%, #5d4037 100%);
  color: rgba(250, 247, 242, 0.55);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  padding: 2rem;
  line-height: 1.45;
}

/* Swap this for a real photo later:
   .hero-banner-media { background: url(...) center / cover no-repeat; color: transparent; } */

.hero-banner-dim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(31, 26, 23, 0.78) 0%,
      rgba(31, 26, 23, 0.62) 42%,
      rgba(31, 26, 23, 0.4) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: max(var(--page-pad), var(--safe-left))
    max(var(--page-pad), var(--safe-right));
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 0.85rem;
  max-width: 14ch;
  color: var(--cream);
}

.hero-support {
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  max-width: min(40ch, 100%);
  margin-bottom: 1.5rem;
  color: rgba(250, 247, 242, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ========== Trust strip ========== */
.trust-strip {
  padding: 1.25rem 0 1.75rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.trust-list li {
  padding: 0.95rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown);
  text-align: center;
  line-height: 1.35;
}

.trust-list li + li {
  border-left: 1px solid var(--border);
}

/* ========== Services ========== */
.services {
  background: rgba(255, 255, 255, 0.4);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.35rem);
}

.service-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-accent {
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin-bottom: 0.9rem;
}

.service-tile h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-tile p {
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.services-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.services-cta a {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.services-cta a:hover {
  border-bottom-color: var(--orange);
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about-copy {
  max-width: var(--text-measure);
}

.about-points {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.about-points li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== Doctors ========== */
.doctors {
  background: rgba(255, 255, 255, 0.45);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.75rem);
  width: min(100%, 72rem);
  margin-inline: auto;
}

.doctor-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.doctor-tile .media-placeholder {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}

.doctor-info {
  padding: 1.1rem 1.2rem 1.35rem;
  text-align: center;
}

.doctor-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.doctor-info p {
  font-size: 0.92rem;
  margin: 0;
}

/* ========== Facilities ========== */
.facility-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}

.facility-main {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.facility-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}

.facility-side .media-placeholder {
  aspect-ratio: auto;
  min-height: 140px;
  height: 100%;
}

/* ========== Team ========== */
.team-block {
  width: 100%;
  margin-inline: auto;
}

.team-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.5rem;
  margin-top: 1.15rem;
}

.team-names li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown-soft);
  position: relative;
  padding-left: 0.85rem;
}

.team-names li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== Location ========== */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
}

.location-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.address {
  margin-bottom: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.hours-block {
  margin-bottom: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.hours-block .label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brown);
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  min-height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ========== Final CTA ========== */
.final-cta {
  padding: 2rem 0 var(--space-section);
}

.final-cta-inner {
  background: linear-gradient(135deg, var(--brown) 0%, #4a322c 100%);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: var(--cream);
}

.final-cta-inner h2 {
  color: var(--cream);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}

.final-cta-inner p {
  color: rgba(250, 247, 242, 0.85);
  max-width: min(36rem, 100%);
  margin: 0 auto 1.1rem;
  font-size: 1rem;
}

.final-cta-note {
  margin-top: 0.85rem !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-soft) !important;
}

/* ========== Footer ========== */
.site-footer {
  background: #3e2a24;
  color: rgba(250, 247, 242, 0.88);
  padding: 2.5rem 0 1.35rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: 1.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin: 0 0 0.7rem;
}

.footer-grid a {
  display: block;
  padding: 0.18rem 0;
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-contact p,
.footer-brand + p {
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.55);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero {
    min-height: clamp(400px, 65vh, 640px);
  }

  .hero h1 {
    max-width: 16ch;
  }

  .hero-banner-dim {
    background: linear-gradient(
      180deg,
      rgba(31, 26, 23, 0.72) 0%,
      rgba(31, 26, 23, 0.58) 100%
    );
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list li {
    font-size: 0.82rem;
    padding: 0.85rem 0.9rem;
  }

  .trust-list li:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-list li:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .trust-list li + li {
    border-left: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .location-grid,
  .facility-gallery {
    grid-template-columns: 1fr;
  }

  .facility-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .facility-side .media-placeholder {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-frame iframe {
    min-height: 260px;
  }

  .media-placeholder--exterior {
    aspect-ratio: 16 / 9;
    max-height: 160px;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + var(--safe-top)) 0 auto 0;
    background: rgba(250, 247, 242, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem max(1.25rem, var(--safe-right))
      calc(1.5rem + var(--safe-bottom)) max(1.25rem, var(--safe-left));
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - var(--header-h) - var(--safe-top));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav .nav-book-mobile {
    display: inline-flex;
    border-bottom: 0;
    opacity: 1;
    color: var(--white);
  }

  .site-nav .nav-book-mobile:hover {
    color: var(--white);
    opacity: 1;
  }

  .header-book {
    display: none;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .header-actions {
    gap: 0.5rem;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad: 1rem;
    --space-section: 2.25rem;
    --header-h: 64px;
  }

  .hero {
    min-height: clamp(340px, 52vh, 480px);
    padding: 2.25rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    max-width: none;
  }

  .hero-support {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .trust-list,
  .service-grid,
  .facility-side,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li:nth-child(odd) {
    border-right: 0;
  }

  .trust-list li + li,
  .trust-list li:nth-child(n + 2) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .trust-list li {
    text-align: left;
    padding: 0.8rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .location-actions .btn,
  .final-cta-inner .btn {
    width: 100%;
  }

  .media-placeholder--team {
    aspect-ratio: 16 / 10;
    min-height: 140px;
  }

  .media-placeholder--exterior {
    max-height: 140px;
  }

  .logo-text {
    font-size: 0.78rem;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .section-header {
    margin-bottom: 1.35rem;
  }

  .final-cta-inner {
    padding: 1.4rem 1.15rem;
  }

  .site-footer {
    padding: 2rem 0 calc(1.25rem + var(--safe-bottom));
  }
}

@media (max-width: 380px) {
  .logo-text {
    display: none;
  }

  .logo {
    flex-shrink: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .site-nav,
  .nav-toggle span,
  .site-header {
    transition: none;
  }
}
