/**
 * Jellylashes - Main Stylesheet
 * Version: 2.1.0
 * Responsive booking website with dark mode support and scroll animations
 */

/* Base styles & reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #000000;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

body.dark-theme {
  background: #2b2623;
  color: #eae2d8;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.3s;
}

body.dark-theme header {
  background: rgba(43, 38, 35, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.logo-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease;
}

.logo-with-icon:hover {
  opacity: 0.9;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #d4a373;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  transition: transform 0.3s, border-color 0.3s;
}

.icon-circle:hover {
  transform: scale(1.08);
  border-color: #c37a50;
}

.icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

body.dark-theme .icon-circle {
  background: #cda679;
  border-color: #cda679;
}

.logo {
  font-weight: 700;
  font-size: 1.6rem;
}

body.dark-theme .logo {
  color: #cda679;
}

.theme-hint {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
}

.logo-with-icon:hover .theme-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

body.dark-theme .theme-hint {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a373;
  transition: width 0.3s;
}

.desktop-nav a:hover {
  color: #d4a373;
}

.desktop-nav a:hover::after {
  width: 100%;
}

body.dark-theme .desktop-nav a:hover {
  color: #cda679;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #000;
  transition: all 0.3s;
}

body.dark-theme .burger span {
  background: #fff;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  max-height: 300px;
  opacity: 1;
}

.mobile-nav a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

body.dark-theme .mobile-nav {
  background: #2f2925;
}

body.dark-theme .mobile-nav a {
  color: #eae2d8;
}

/* Hero section */
.hero {
  height: 100vh;
  background: url('images/master-photo.jpg') center 8% / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero button {
  background: #d4a373;
  border: none;
  color: #fff;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.hero button:hover {
  background: #cda679;
  transform: translateY(-2px);
}

body.dark-theme .hero button {
  background: #cda679;
  color: #2b2623;
}

body.dark-theme .hero button:hover {
  background: #d9b98f;
}

/* Content sections */
.content-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 50px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fdf8f4 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.3s, box-shadow 0.3s;
}

body.dark-theme .content-section {
  background: linear-gradient(180deg, #332f2b 0%, #2a2522 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
}

.content-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 35px;
  position: relative;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #e1306c, #ff7abf);
  border-radius: 2px;
}

body.dark-theme .content-section h2::after {
  background: linear-gradient(135deg, #b95b8a, #e2a2c2);
}

/* About section */
.about ul {
  list-style: none;
  margin-top: 20px;
}

.about li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
}

.about li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1306c, #ff7abf);
}

/* Portfolio section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.portfolio.visible .portfolio-grid img {
  opacity: 1;
  transform: scale(1);
}

.portfolio.visible .portfolio-grid img:nth-child(1) { transition-delay: 0.05s; }
.portfolio.visible .portfolio-grid img:nth-child(2) { transition-delay: 0.1s; }
.portfolio.visible .portfolio-grid img:nth-child(3) { transition-delay: 0.15s; }
.portfolio.visible .portfolio-grid img:nth-child(4) { transition-delay: 0.2s; }
.portfolio.visible .portfolio-grid img:nth-child(5) { transition-delay: 0.25s; }
.portfolio.visible .portfolio-grid img:nth-child(6) { transition-delay: 0.3s; }
.portfolio.visible .portfolio-grid img:nth-child(7) { transition-delay: 0.35s; }
.portfolio.visible .portfolio-grid img:nth-child(8) { transition-delay: 0.4s; }
.portfolio.visible .portfolio-grid img:nth-child(9) { transition-delay: 0.45s; }

.portfolio-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Services section */
.services-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.services-columns ul {
  flex: 1;
  min-width: 250px;
  list-style: none;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #fff7f1);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.services-columns ul:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.services-columns li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-price {
  color: #e1306c;
  font-weight: 600;
  margin-left: 6px;
}

body.dark-theme .services-columns ul {
  background: linear-gradient(180deg, #3a322d, #2a2522);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}

body.dark-theme .service-price {
  color: #ff73b9;
}

/* Booking form */
.booking form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking label {
  font-weight: 600;
  font-size: 0.95rem;
}

.booking label[for]:not([for="phone"]):not([for="message"])::after {
  content: ' *';
  color: #e1306c;
  font-weight: bold;
  margin-left: 3px;
}

body.dark-theme .booking label[for]:not([for="phone"]):not([for="message"])::after {
  color: #ff73b9;
}

.booking input,
.booking select,
.booking textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid rgba(0,0,0,0.15);
  background: #ffffff;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.booking select:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

body.dark-theme .booking select:disabled {
  background: #2a2522;
  color: #666;
}

.booking textarea {
  resize: vertical;
  min-height: 100px;
}

.booking input:focus,
.booking select:focus,
.booking textarea:focus {
  border-color: #d4a373;
  box-shadow: 0 0 0 3px rgba(212,163,115,0.15);
  outline: none;
}

.booking select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

body.dark-theme .booking select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f3ece4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.booking select option:disabled {
  color: #999;
  font-style: italic;
  background: #f5f5f5;
}

body.dark-theme .booking select option:disabled {
  color: #666;
  background: #1a1816;
}

body.dark-theme .booking input,
body.dark-theme .booking select,
body.dark-theme .booking textarea {
  background: #3a322d;
  color: #f3ece4;
  border-color: rgba(255,255,255,0.2);
}

body.dark-theme .booking input:focus,
body.dark-theme .booking select:focus,
body.dark-theme .booking textarea:focus {
  border-color: #cda679;
  box-shadow: 0 0 0 3px rgba(205,166,121,0.2);
}

/* Form validation states */
.invalid {
  border-color: #e1306c !important;
  background-color: #fff0f5 !important;
  animation: shake 0.4s ease-in-out;
}

body.dark-theme .invalid {
  background-color: #3d2730 !important;
  border-color: #ff73b9 !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.valid {
  border-color: #4caf50 !important;
  background-color: #f6fcf4 !important;
  position: relative;
  padding-right: 45px !important;
}

body.dark-theme .valid {
  border-color: #66bb6a !important;
  background-color: #273127 !important;
}

.valid::after {
  content: '✓';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4caf50;
  font-weight: bold;
  font-size: 1.3rem;
  animation: checkmarkPop 0.3s ease-out;
  pointer-events: none;
}

body.dark-theme .valid::after {
  color: #66bb6a;
}

@keyframes checkmarkPop {
  0% { transform: translateY(-50%) scale(0); }
  50% { transform: translateY(-50%) scale(1.2); }
  100% { transform: translateY(-50%) scale(1); }
}

.booking textarea.valid::after {
  top: 20px;
  transform: translateY(0);
}

/* Form messages */
.inline-warning {
  display: block;
  color: #e1306c;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(225, 48, 108, 0.08);
  border-left: 3px solid #e1306c;
  animation: slideDown 0.3s ease-out;
  order: 3;
}

body.dark-theme .inline-warning {
  background: rgba(225, 48, 108, 0.15);
  border-left-color: #ff73b9;
  color: #ff9fcf;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
  }
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
  font-weight: normal;
  font-style: italic;
  order: 2;
}

body.dark-theme .form-hint {
  color: #aaa;
}

.working-hours-hint {
  display: block;
  color: #666;
  font-weight: normal;
  margin-top: 4px;
  font-size: 0.85rem;
  animation: fadeInHint 0.3s ease-in;
}

body.dark-theme .working-hours-hint {
  color: #aaa;
}

@keyframes fadeInHint {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit button */
.btn-submit {
  background: linear-gradient(135deg, #d4a373 0%, #c68c5d 100%);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #c68c5d 0%, #b87a4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 163, 115, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

body.dark-theme .btn-submit {
  background: linear-gradient(135deg, #cda679 0%, #d9b98f 100%);
  color: #2b2623;
}

body.dark-theme .btn-submit:hover {
  background: linear-gradient(135deg, #d9b98f 0%, #e5c9a5 100%);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
  transform: none !important;
}

.btn-submit:disabled::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Form status */
.form-status {
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  animation: fadeIn 0.3s ease-in;
}

.form-status:empty {
  display: none;
  padding: 0;
  margin: 0;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(-5px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Success message templates */
.form-success {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: successPulse 0.6s ease-out;
}

.form-success h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 15px;
}

.form-success p {
  font-size: 1.05rem;
  color: #1b5e20;
  margin-bottom: 10px;
  line-height: 1.6;
}

.form-success strong {
  color: #2e7d32;
  font-weight: 600;
}

.form-success .subtitle {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.form-success .details {
  color: #388e3c;
}

.form-success .contact-info {
  margin-top: 20px;
  color: #2e7d32;
}

.form-success .test-mode {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

body.dark-theme .form-success {
  background: linear-gradient(135deg, #2d4a2e 0%, #1f3520 100%);
}

body.dark-theme .form-success h2 {
  color: #81c784;
}

body.dark-theme .form-success p {
  color: #a5d6a7;
}

body.dark-theme .form-success strong {
  color: #81c784;
}

@keyframes successPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Warning/partial success variant */
.form-warning {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.form-warning h2 {
  color: #e65100;
}

.form-warning p {
  color: #bf360c;
}

.form-warning .details {
  color: #d84315;
}

.form-warning .contact-info {
  color: #e65100;
  font-size: 0.95rem;
}

body.dark-theme .form-warning {
  background: linear-gradient(135deg, #4a3d2e 0%, #3d2f20 100%);
}

body.dark-theme .form-warning h2 {
  color: #ffb74d;
}

body.dark-theme .form-warning p {
  color: #ffcc80;
}

/* Highlight animation */
#bookingForm.highlight {
  box-shadow: 0 0 0 3px rgba(212,163,115,0.6);
  border-radius: 12px;
  padding: 8px;
  animation: highlightPulse 1.5s ease-out;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 163, 115, 0);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(212, 163, 115, 0.4);
  }
}

/* Contact section */
.contact-socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: inherit;
  transition: transform 0.3s, opacity 0.3s;
}

.social-link svg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.social-link:hover svg {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(0,0,0,0.25);
}

.social-link.whatsapp svg {
  background-color: #25D366;
  fill: #fff;
  box-shadow: 0 0 6px rgba(37,211,102,0.4);
}

body.dark-theme .social-link.whatsapp svg {
  background-color: #25D366 !important;
}

a[href^="tel:"] {
  color: #e1306c;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a[href^="tel:"]:hover {
  color: #ff4fa3;
  text-shadow: 0 0 6px rgba(255, 122, 191, 0.4);
}

body.dark-theme a[href^="tel:"] {
  color: #ff9fcf;
}

body.dark-theme a[href^="tel:"]:hover {
  color: #ffb7d6;
  text-shadow: 0 0 6px rgba(255, 183, 214, 0.3);
}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

body.dark-theme .map-container {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 25px;
  background: #f8f8f8;
  color: #000000;
  margin-top: 80px;
}

body.dark-theme footer {
  background: #26221f;
  color: #eae2d8;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.js-fade {
  opacity: 0;
  transform: translateY(50px);
}

.fade-in.js-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive design */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .content-section {
    margin: 60px 20px;
    padding: 40px 25px;
  }
  
  header {
    padding: 15px 30px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .services-columns {
    flex-direction: column;
  }
  
  .booking form {
    padding: 0 10px;
  }
  
  .form-success h2 {
    font-size: 1.6rem !important;
  }
  
  .form-success p {
    font-size: 1rem !important;
  }
  
  .working-hours-hint {
    font-size: 0.8rem !important;
  }
  
  .content-section h2 {
    font-size: 1.8rem;
  }
  
  header {
    padding: 15px 20px;
  }
  
  /* Reduce animation distance on mobile */
  .fade-in.js-fade {
    transform: translateY(30px);
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid #d4a373;
  outline-offset: 2px;
}

body.dark-theme *:focus-visible {
  outline-color: #cda679;
}

.booking select option:checked {
  background: #d4a373;
  color: white;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fade-in.js-fade {
    opacity: 1;
    transform: none;
  }
  
  .portfolio-grid img {
    opacity: 1;
    transform: none;
  }
}