/* ═══════════════════════════════════════
   SHINE REFLECT PROJECTS — Main Stylesheet
   Palette: Deep sand, warm off-white, aged gold, charcoal
   Type: Cormorant Garamond (display) + DM Sans (body)
═══════════════════════════════════════ */

:root {
  --bg:        #0d0c0a;
  --bg-2:      #131210;
  --bg-card:   #181613;
  --gold:      #c9a96e;
  --gold-dim:  rgba(201,169,110,0.15);
  --gold-line: rgba(201,169,110,0.25);
  --white:     #f5f0e8;
  --white-dim: rgba(245,240,232,0.55);
  --muted:     #7a7570;
  --border:    rgba(245,240,232,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --trans:    0.3s cubic-bezier(0.22,1,0.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION DEFAULTS ── */
.section { padding: 7rem 0; }

.section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section__desc {
  margin-top: 1rem;
  color: var(--white-dim);
  font-size: 1rem;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: #0d0c0a;
}
.btn--primary:hover {
  background: #dbbf82;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold-line);
  color: var(--white);
  background: var(--gold-dim);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
}
.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}

.nav.scrolled {
  background: rgba(13,12,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}

.logo-shine {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.logo-reflect {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 0.5rem;
  align-self: center;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color var(--trans);
  font-weight: 400;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  padding: 0.55rem 1.3rem !important;
  background: var(--gold) !important;
  color: #0d0c0a !important;
  border-radius: 8px;
  font-weight: 500 !important;
  transition: all var(--trans) !important;
}
.nav__cta:hover {
  background: #dbbf82 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.25);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--trans);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

canvas#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb--1 {
  width: 500px; height: 500px;
  top: 5%; left: 10%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
}
.orb--2 {
  width: 400px; height: 400px;
  top: 40%; right: 5%;
  background: radial-gradient(circle, rgba(245,240,232,0.04) 0%, transparent 70%);
}
.orb--3 {
  width: 300px; height: 300px;
  bottom: 10%; left: 30%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1.1s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--white-dim);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about { background: var(--bg-2); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about__frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.about__frame-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.icon-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: all var(--trans);
  cursor: default;
}

.icon-card:hover {
  background: var(--gold-dim);
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.icon-card svg {
  width: 36px; height: 36px;
  color: var(--gold);
  stroke: var(--gold);
}

.icon-card span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  text-transform: uppercase;
}

.about__stat-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #0d0c0a;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 40px rgba(201,169,110,0.35);
}

.about__stat-float strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.about__stat-float span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 3px;
}

.about__text { padding-left: 1rem; }

.about__body {
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about__text .section__title { margin-bottom: 1.5rem; text-align: left; }
.about__text .section__label { text-align: left; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--trans);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.07);
  line-height: 1;
  pointer-events: none;
  transition: color var(--trans);
}

.service-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: #1a1714;
}

.service-card:hover::before {
  color: rgba(201,169,110,0.15);
}

.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: auto;
  transition: gap var(--trans), opacity var(--trans);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--trans);
}

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats {
  background: var(--gold);
  padding: 4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.stat-item > div { display: flex; align-items: baseline; gap: 2px; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #0d0c0a;
  line-height: 1;
}

.stat-item > strong:last-of-type {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #0d0c0a;
}

.stat-item span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,12,10,0.65);
}

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.process { background: var(--bg-2); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.step__number {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  flex-shrink: 0;
  transition: all var(--trans);
}

.process__step:hover .step__number {
  background: var(--gold);
  color: #0d0c0a;
  box-shadow: 0 0 24px rgba(201,169,110,0.3);
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step__content p {
  font-size: 0.88rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

.process__connector {
  flex: 0 0 2px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  margin-top: 26px;
  min-width: 2rem;
}

/* ══════════════════════════════════
   CONTACT & BOOKING
══════════════════════════════════ */
.contact { background: var(--bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__info .section__title { text-align: left; margin: 0.5rem 0 1.25rem; }
.contact__info .section__label { text-align: left; }

.contact__body {
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity var(--trans);
}

.contact__item:hover { opacity: 0.8; }

.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
}

.contact__item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact__item-value {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

/* FORM CARD */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.form-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.form-card__sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.booking-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form__group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-dim);
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: #3a3832; }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}

.form__group input[type="date"] { color-scheme: dark; }

.form__group textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }

.select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-wrap select option { background: #1a1714; }

.select-arrow {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  stroke: var(--muted);
  pointer-events: none;
}

/* Form feedback states */
.form__success,
.form__error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  animation: fadeSlideUp 0.4s ease forwards;
}

.form__success {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
}

.form__error {
  background: rgba(248,113,113,0.06);
  border: 1px solid rgba(248,113,113,0.2);
}

.form__success svg,
.form__error svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }

.form__success strong { color: #4ade80; font-size: 0.9rem; }
.form__success p,
.form__error p { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.form__error strong { color: #f87171; font-size: 0.9rem; }
.form__error a { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 2rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer__links a,
.footer__contact a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--trans);
}

.footer__links a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__contact a {
  display: block;
  font-size: 0.85rem;
  word-break: break-all;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 3rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .process__steps { flex-direction: column; align-items: center; max-width: 420px; }
  .process__connector { width: 1px; height: 2rem; min-width: unset; background: linear-gradient(to bottom, var(--gold-line), transparent); margin-top: 0; }
  .step__content p { max-width: unset; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav__links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: rgba(13,12,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .about__grid { grid-template-columns: 1fr; }
  .about__text { padding-left: 0; }
  .about__stat-float { right: 0; bottom: -1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 1.5rem; }
}

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