/*
Theme Name: Wudgate
Description: Custom WordPress theme for Wudgate Premium Wooden Doors
Version: 1.0
*/

:root {
  --navy: #0a1930;
  --navy-light: #12274a;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.7);
  --grey-light: #f4f4f6;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- Top info bar ---------- */

.top-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}

.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-tagline {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--white-muted);
  letter-spacing: 0.02em;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.top-bar-link .icon {
  color: var(--gold-light);
  flex-shrink: 0;
}

.top-bar-link:hover {
  color: var(--gold-light);
}

/* ---------- Site header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.site-header-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled .site-header-inner {
  padding: 8px 24px;
}

.site-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.header-logo {
  width: 100%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
  transition: max-width 0.3s ease;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  position: relative;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--gold-light);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ---------- Collections mega menu ---------- */

.nav-link-mega {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-caret {
  color: var(--gold-light);
  transition: transform 0.2s ease;
}

.nav-item.has-mega-menu:hover .mega-caret,
.nav-item.has-mega-menu:focus-within .mega-caret,
.nav-item.has-mega-menu.is-open .mega-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(560px, calc(100vw - 48px));
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item.has-mega-menu:hover .mega-menu,
.nav-item.has-mega-menu:focus-within .mega-menu,
.nav-item.has-mega-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  background: var(--navy-light);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  padding: 20px 28px;
}

.mega-menu-col {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mega-menu-col a {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white-muted);
  text-decoration: none;
  padding: 9px 6px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mega-menu-col a:hover,
.mega-menu-col a:focus-visible {
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.08);
  transform: translateX(4px);
}

/* ---------- Hamburger ---------- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger-bar {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Mobile menu drawer ---------- */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(320px, 85vw);
  background: var(--navy-light);
  border-left: 1px solid rgba(201, 162, 75, 0.25);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.35);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 24px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link.is-active {
  color: var(--gold-light);
}

.mobile-nav-accordion {
  display: flex;
  flex-direction: column;
}

.mobile-accordion-toggle {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.accordion-caret {
  color: var(--gold-light);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mobile-accordion-toggle[aria-expanded="true"] .accordion-caret {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  list-style: none;
  max-height: 44vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 4px 0 4px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-accordion-panel[hidden] {
  display: none;
}

.mobile-collection-link {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white-muted);
  text-decoration: none;
  padding: 9px 4px;
}

.mobile-collection-link:hover,
.mobile-collection-link:focus-visible {
  color: var(--gold-light);
}

.mobile-menu-catalogue {
  width: 100%;
  justify-content: center;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-icon {
  font-size: 1.05rem;
}

.btn-call {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 75, 0.4);
}

.btn-whatsapp {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-catalogue {
  background: var(--navy-light);
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}

.btn-catalogue:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(201, 162, 75, 0.3);
}

.btn-catalogue-header {
  border-color: rgba(201, 162, 75, 0.6);
}

/* ---------- Home hero ---------- */

.eyebrow {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 25%, rgba(201, 162, 75, 0.1), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 90px
  );
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.home-hero-content {
  flex: 0 1 48%;
  max-width: 48%;
}

.home-hero-showcase {
  flex: 0 1 52%;
  max-width: 52%;
  display: flex;
  justify-content: center;
}

.hero-heading {
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--white);
}

.text-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  margin-top: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  color: var(--white-muted);
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.hero-trust-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.hero-trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.hero-trust-row .icon {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ---------- Door showcase slider ---------- */

.door-slider {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.door-slider::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.22), transparent 65%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.door-slider-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1.05;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(201, 162, 75, 0.25);
  overflow: hidden;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.4);
}

.door-slider-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  z-index: 2;
}

.door-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
}

.door-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px 22px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.door-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.door-slide-visual {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.door-slide-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 55%;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), transparent 70%);
  filter: blur(2px);
  z-index: 0;
}

.door-slide-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.35));
}

.door-slide-name {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.door-slide-hint {
  margin-top: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.door-slide-counter {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--white-muted);
  background: rgba(10, 25, 48, 0.6);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.door-slider-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.4);
  background: rgba(10, 25, 48, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.door-slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.door-slider-prev {
  left: 10px;
}

.door-slider-next {
  right: 10px;
}

.door-slider-dots {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.door-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.door-slider-dot.is-active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 162, 75, 0.3);
}

.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 0;
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 100%;
  max-width: 170px;
  height: auto;
}

.footer-text {
  margin-top: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white-muted);
}

.footer-tagline {
  margin-top: 14px;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
}

.footer-heading {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

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

.footer-list a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--gold-light);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-contact-list .icon {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-whatsapp {
  width: 100%;
  justify-content: center;
}

.site-footer-catalogue {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}

.site-footer-bottom {
  margin-top: 32px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.25);
}

.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .main-nav,
  .btn-catalogue-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-logo {
    max-width: 180px;
  }

  .site-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .home-hero-inner {
    padding: 48px 24px;
    gap: 32px;
  }

  .door-slider {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .top-bar-tagline {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .home-hero-inner {
    flex-direction: column;
    padding: 40px 24px;
  }

  .home-hero-content,
  .home-hero-showcase {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .home-hero-content {
    order: 1;
  }

  .home-hero-showcase {
    order: 2;
    margin-top: 40px;
  }

  .hero-description {
    max-width: 100%;
  }

  .door-slider {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .site-footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer-col-brand {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-list a {
    justify-content: center;
  }

  .footer-list {
    align-items: center;
  }

  .site-footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .header-logo {
    max-width: 150px;
  }

  .site-header-inner {
    padding: 10px 16px;
  }

  .home-hero-inner {
    padding: 32px 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-trust-row {
    gap: 14px 20px;
  }

  .door-slider {
    max-width: 290px;
  }

  .door-slider-arrow {
    width: 32px;
    height: 32px;
  }

  .door-slider-prev {
    left: 4px;
  }

  .door-slider-next {
    right: 4px;
  }

  .door-slide-counter {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .door-slide-name {
    font-size: 0.95rem;
  }

  .site-footer-inner {
    padding: 40px 16px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .door-slide {
    transition: opacity 0.3s ease;
    transform: none !important;
  }

  .site-header,
  .site-header-inner,
  .mobile-menu,
  .mega-menu,
  .btn,
  .door-slider-arrow,
  .door-slider-dot,
  .mega-menu-col a {
    transition: none !important;
  }
}
