/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLOBAL STYLES & VARIABLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

:root {
    --color-primary-dark:   #1C3A0E;   /* dark forest green — backgrounds, footer */
    --color-primary:        #2D5A1B;   /* main brand green — buttons, borders */
    --color-accent:         #8DC63F;   /* lime/yellow-green — highlight text, hover states */
    --color-accent-light:   #A8D95C;   /* lighter accent — icon glows */
    --color-bg-light:       #F2F2F0;   /* off-white sections */
    --color-bg-white:       #FFFFFF;
    --color-text-dark:      #1A1A1A;
    --color-text-body:      #3D3D3D;
    --color-text-muted:     #6B7280;
    --color-border:         #E0E0DC;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
}

/* Responsive heading sizes */
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* Responsive body text */
p, span, li, a {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.accent-italic {
    font-style: italic;
    color: var(--color-accent);
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
}

.btn-outline {
    border-color: white;
    color: white;
    padding: 8px 20px;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text-dark);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.btn-outline-white:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline-accent {
    border-color: var(--color-accent);
    color: var(--color-accent);
    padding: 15px 40px;
}

.btn-outline-accent:hover {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
}

/* Mobile buttons */
@media (max-width: 768px) {
    .btn {
        min-width: 120px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

#navbar.scrolled {
  background: rgba(28, 58, 14, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

#navbar.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
  border-radius: 8px;
  padding: 4px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* When navbar is scrolled (has .scrolled class), show logo in original colors */
#navbar.scrolled .nav-logo-img {
  filter: none;
}


/* Focus ring for accessibility */
.nav-logo:focus-visible {
  outline: 2px solid #8DC63F;
  outline-offset: 6px;
  border-radius: 8px;
}

/* Hover: subtle scale */
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8DC63F;
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: #8DC63F; }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon button container */
.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  overflow: visible;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Icon image */
.nav-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: translateY(0px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease, opacity 0.4s ease;
}

/* HOVER: Golden/bronze icon swap effect (cross-fade + vertical swap) */
.nav-icon-btn:hover .nav-icon-img {
  transform: translateY(-4px) scale(1.05);
  filter: sepia(0.8) saturate(4) hue-rotate(35deg) brightness(1.2) drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
  opacity: 0.95;
}

/* Tooltip that appears on hover */
.nav-icon-tooltip {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(28, 58, 14, 0.95);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 0.5px solid rgba(141, 198, 63, 0.4);
}

/* Tooltip arrow */
.nav-icon-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(28, 58, 14, 0.95);
}

/* Show tooltip on hover */
.nav-icon-btn:hover .nav-icon-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}

/* Hover: circle glow */
.nav-icon-btn:hover {
  border-color: #8DC63F;
  background: rgba(141, 198, 63, 0.12);
  transform: scale(1.08);
}

/* WhatsApp specific glow color */
#whatsapp-btn:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.12);
}

/* GET A QUOTE button */
.btn-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
  padding: 9px 22px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-quote:hover {
  background: #8DC63F;
  border-color: #8DC63F;
  color: #1A1A1A;
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
}

.hamburger svg {
  display: block;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(28, 58, 14, 0.97);
  padding: 16px 32px 24px;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
  cursor: pointer;
}

.mobile-menu a:hover {
  color: #8DC63F;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-container {
    padding: 0 16px;
  }
  .nav-links { display: none; }
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5vw;
}

.hero-text {
    max-width: 620px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: white;
    margin-bottom: 0;
}

.hero-text .subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.06rem);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

/*
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WELCOME SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.welcome {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text .label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 8px;
}

.welcome-heading {
    font-size: 46px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.welcome-text p {
    margin-bottom: 20px;
}

.welcome-images {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.welcome-img-back {
  width: 48%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.welcome-img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) scale(1.03);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.welcome-img-back img.loaded {
  filter: blur(0) scale(1);
}

.welcome-img-front {
  width: 48%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  border: 4px solid #ffffff;
}

.welcome-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) scale(1.03);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.welcome-img-front img.loaded {
  filter: blur(0) scale(1);
}

/* Scroll entrance animation */
.welcome-img-back {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.6s ease, box-shadow 0.3s ease;
}

.welcome-img-front {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s, filter 0.6s ease, box-shadow 0.3s ease;
}

.welcome-img-back.is-visible,
.welcome-img-front.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover parallax on images */
.welcome-img-back:hover img,
.welcome-img-front:hover img {
  transform: scale(1.06);
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .welcome-images {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }
  .welcome-img-back,
  .welcome-img-front {
    width: 100%;
    height: 220px;
  }
  .welcome-grid {
    gap: 30px;
  }
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO / PRODUCTS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

/*
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  PORTFOLIO SECTION
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.portfolio {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2ea146; /* لون مقارب للصورة */
}

.section-header .subtitle {
    max-width: 480px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* خليناهم 4 كروت جنب بعض عشان تبقى زي الصورة بالظبط */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* إعدادات الكارت عشان الكلام يبقى جواه (position: relative) */
.product-card {
    cursor: pointer;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    /* transition عشان نعومة الحركة في الـ Hover */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* الكارت لما يتعمل عليه Hover (الدوران + اللون السائد) */
.product-card:hover {
    transform: rotate(3deg) scale(1.03); /* الدوران والتكبير الخفيف */
    box-shadow: 0 15px 30px rgba(45, 90, 27, 0.4); /* ظل بلون الموقع #2D5A1B */
}

/* خلينا النسبة 3/4 عشان الكروت تبقى طويلة زي الصورة */
.product-img {
    aspect-ratio: 3/4;
    width: 100%;
    height: 100%;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* زووم للصورة نفسها مع الـ Hover */
.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* الكلام اللي هيظهر فوق الصورة من تحت */
.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    /* تدرج أسود افتراضي عشان الكلام الأبيض يبان */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.4s ease;
    z-index: 2;
}

/* التدرج الأسود هيتحول للون الموقع السائد (#2D5A1B) في الـ Hover */
.product-card:hover .product-info {
    background: linear-gradient(to top, #2D5A1B 0%, transparent 100%);
}

/* تنسيق اسم القسم (الخط كبير ولونه أبيض) */
.category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 36px; /* حجم الخط زي الصورة */
    color: #ffffff;
    margin-bottom: 5px;
}

/* لو مش عاوز الأيقونة تظهر شيل السطرين دول، لو عاوزها خليها بيضا */
.category svg {
    color: #ffffff;
    display: none; /* أنا خافيها هنا عشان تبقى زي الصورة، لو عاوزها غيرها لـ block */
}

/* تنسيق الجملة الصغيرة (View Products) */
.product-info .sub-label {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
    display: block;
    margin-top: 4px;
}

/* ريسبونسيف عشان الشاشات الصغيرة */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PARTNER CTA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.partner-cta {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10,30,5,0.82), rgba(10,30,5,0.82));
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 52px;
    color: white;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    margin: 20px 0 40px;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 34px;
    }
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* RESPONSIVE FOOTER FIX - Keep desktop layout */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo .logo-img {
        height: 80px;
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4 {
        text-align: center;
    }
    .footer-col ul {
        align-items: center;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: -10px;
}

.footer-logo .logo-img {
    height: 250px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-col ul li:not(a) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}