/* ==========================================================================
   Bournemouth Boating & Tuckton Tea Gardens - Main Stylesheet
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Cabin:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  #--sage: #6C9072;
  #--sage-dark: #5a7a60;
  --sage: #9ebabf;
  --sage-dark: #778c8f;
  --charcoal: #252525;
  --gold: #C59D5F;
  --gold-light: #d4b27a;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light-grey: #f5f5f3;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Cabin', sans-serif;
  --max-width: 1140px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes waveBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(1deg); }
  75% { transform: translateY(3px) rotate(-1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(108, 144, 114, 0.2); }
  50% { box-shadow: 0 4px 25px rgba(108, 144, 114, 0.4); }
}

@keyframes slideInStagger {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 50px; }
}

/* ---------- Scroll-triggered animation classes ---------- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--sage); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 { font-size: 2.8rem; font-weight: 300; letter-spacing: -0.5px; }
h2 { font-size: 2rem; font-weight: 300; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
h5 { font-size: 1.1rem; font-weight: 300; }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), transform 0.4s ease;
}

.site-header--transparent {
  background: transparent;
}

.site-header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo img {
  height: 80px;
  width: auto;
  transition: transform 0.4s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav { display: flex; align-items: center; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}

/* Animated underline on nav links */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.site-header--scrolled .nav-links a {
  color: var(--charcoal);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(108, 144, 114, 0.15);
  color: var(--sage);
}

.site-header--scrolled .nav-links a:hover,
.site-header--scrolled .nav-links a.active {
  background: rgba(108, 144, 114, 0.1);
  color: var(--sage);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-header--scrolled .hamburger span {
  background: var(--charcoal);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Sections ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero--home {
  min-height: 85vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(37, 37, 37, 0.25) 0%,
    rgba(37, 37, 37, 0.35) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
  max-width: 700px;
}

.hero-content h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content h5 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-content .btn-group {
  animation: fadeInUp 0.8s ease 0.9s both;
}

/* Decorative wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Parallax-style effect on hero */
.hero-bg {
  will-change: transform;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section--grey {
  background: var(--light-grey);
}

.section--sage {
  background: var(--sage);
  color: var(--white);
}

.section--sage h2,
.section--sage h3,
.section--sage h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .divider {
  display: block;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

/* Animated divider */
.section-header .divider.anim-visible {
  animation: drawLine 0.6s ease forwards;
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__text h2,
.two-col__text h3 {
  margin-bottom: 1rem;
}

.two-col__text p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- Image Grid ---------- */
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.image-pair img,
.image-trio img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.image-pair img:hover,
.image-trio img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn--primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 144, 114, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}

.btn--secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 157, 95, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--sage);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card__body {
  padding: 1.75rem;
}

.card__body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card__body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Logo Showcase ---------- */
.logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.logo-showcase img {
  max-height: 120px;
  width: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(0.2);
}

.logo-showcase img:hover {
  transform: scale(1.08);
  filter: grayscale(0);
}

/* ---------- Fares Table ---------- */
.fares-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.fares-table thead {
  background: var(--sage);
  color: var(--white);
}

.fares-table th,
.fares-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.fares-table tbody tr:nth-child(even) {
  background: var(--light-grey);
}

.fares-table tbody tr:hover {
  background: rgba(108, 144, 114, 0.06);
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  background: var(--off-white);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(108, 144, 114, 0.12);
  transform: translateY(-1px);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b5b5b5;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
}

.contact-info p {
  color: var(--text-light);
  font-size: 1rem;
}

.contact-info a {
  font-weight: 600;
  color: var(--sage);
}

/* ---------- Checklist Animation ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e8e8e8;
  transition: transform 0.3s ease, padding-left 0.3s ease;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li:hover {
  padding-left: 8px;
  transform: translateX(4px);
}

.check-list .check-icon {
  color: var(--sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}

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

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  transition: color var(--transition), padding-left 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Feature highlights on homepage */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.feature-item {
  padding: 2rem 1.5rem;
  transition: transform 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(108, 144, 114, 0.1);
  color: var(--sage);
  font-size: 1.5rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(108, 144, 114, 0.18);
  animation: float 2s ease-in-out infinite;
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Inline icon */
.icon-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/* Badge row */
.badge-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.badge-row img {
  height: 70px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition), transform 0.4s ease;
}

.badge-row img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Pricing card */
.pricing-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-left: 4px solid var(--sage);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card h4 {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--sage);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--charcoal);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-content h1 { font-size: 2.2rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .logo-showcase {
    gap: 2rem;
  }

  .logo-showcase img {
    max-height: 90px;
  }
}

@media (max-width: 780px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .image-trio {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 55vh;
  }

  .hero--home {
    min-height: 65vh;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .image-pair,
  .image-trio {
    grid-template-columns: 1fr;
  }

  .image-pair img,
  .image-trio img {
    height: 200px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .logo-showcase img {
    max-height: 70px;
  }
}

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

  .hero-bg {
    animation: none;
  }

  .anim-fade-up,
  .anim-fade-left,
  .anim-fade-right,
  .anim-scale-in {
    opacity: 1;
    transform: none;
  }
}
