
/* =================================================
   CSS VARIABLES
================================================= */



* {
  padding: 0;
  margin: 0;
}


:root {
  --primary: #143a1d;
  --secondary: #c79a2b;
  --accent: #d4af37;
  --background: #fbf8f3;
  --background-light: #f6f8f5;
  --text-primary: #1c1c1c;
  --text-muted: #6b6b6b;
  --rustic-brown: #6b4423;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* =================================================
   RESET
================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* =================================================
   TYPOGRAPHY
================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

/* =================================================
   LAYOUT
================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 

/* =================================================
   HEADER & NAVIGATION
================================================= */
.site-header {
  background: rgba(165, 169, 153, 0.90);
  border-bottom: 1px solid rgba(20, 58, 29, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  position: relative;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 102;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);

}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 102;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* =================================================
   BUTTONS
================================================= */
.btn {
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1f5a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 58, 29, 0.2);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: #ddb14a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 154, 43, 0.3);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  background: #f5f5f5;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
}

/* =================================================
   HERO SECTION - FULL BACKGROUND IMAGE WITH BOTTOM FADE
================================================= */
.hero-modern {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
  background-image: url('images/home-background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.hero-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 245, 230, 0.08) 0%,
      rgba(255, 245, 230, 0.08) 40%,
      rgba(255, 229, 204, 0.02) 60%,
      rgba(255, 217, 179, 0.02) 80%,
      transparent 100%);
  z-index: 1;
}


.hero-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(255, 229, 204, 0.1) 30%,
      rgba(255, 229, 204, 0.2) 60%,
      #ffe5cc 100%);
  z-index: 1;
  pointer-events: none;
}


/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* ===== LEFT SIDE: Text Content ===== */
.hero-text {
  max-width: 600px;
  padding-right: 2rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}


.hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 4px 8px rgba(0, 0, 0, 0.9);
}


.hero-headline {
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #FFB800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow:
    0 4px 8px rgba(0, 0, 0, 1),
    0 8px 16px rgba(0, 0, 0, 0.9);
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.4);
}


.hero-description {
  font-family: "Cinzel", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #F4E4C1;
  margin-bottom: 2.5rem;
  max-width: 540px;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 4px 8px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* =================================================
   RESPONSIVE - TABLETS
================================================= */
@media (max-width: 1024px) {
  .hero-modern::before {
    background: linear-gradient(to right,
        rgba(255, 245, 230, 0.05) 0%,
        rgba(255, 229, 204, 0.05) 50%,
        rgba(255, 217, 179, 0.05) 100%);
  }

}

/* =================================================
   RESPONSIVE - MOBILE
================================================= */
@media (max-width: 768px) {
  .hero-modern {
    background-position: 85% center;
  }

  .hero-modern::before {
    background: linear-gradient(to right,
        rgba(255, 245, 230, 0.05) 0%,
        rgba(255, 229, 204, 0.05) 50%,
        rgba(255, 217, 179, 0.05) 100%);
  }


    .hero-modern::before {
    background: linear-gradient(to right,
        rgba(255, 245, 230, 0.01) 0%,
        rgba(255, 229, 204, 0.01) 50%,
        rgba(255, 217, 179, 0.01) 100%);
  }


  .hero-modern::after {
    height: 100px;
  }


  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    max-width: 100%;
    order: 2;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: 1;
    min-height: 350px;
    margin-bottom: 1rem;
  }

  .hero-image img {
    max-width: 300px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {

  .hero-modern {
    min-height: 100vh;
    padding: 3rem 0;
    background-position: 85% center;
  }

  .hero-image img {
    max-width: 260px;
  }

  .hero-image {
    min-height: 300px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =================================================
   PRODUCTS SECTION
================================================= */
.home-products {
  padding: 6rem 0;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(to bottom,
      #ffe5cc 0%,
      #fff8f0 20%,
      #fffbf7 40%,
      #ffffff 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f9f9f9;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.75rem;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.product-info p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.product-link:hover {
  gap: 0.75rem;
}

.product-link svg {
  width: 16px;
  height: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-products {
    padding: 4rem 0;
  }

  .product-grid {
    gap: 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* =================================================
   TRADITION SECTION (Background Image)
================================================= */
.tradition-section {
  position: relative;
  overflow-x: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url('images/Kehwa_kashmiri.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.tradition-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(20, 58, 29, 0.85) 0%,
      rgba(107, 68, 35, 0.75) 100%);
  z-index: 1;
}

.tradition-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 4rem 0;
}

.tradition-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.tradition-content>p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.tradition-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  font-size: 2.5rem;
}

.feature-item span:last-child {
  color: #fff;
  font-weight: 500;
}

/* =================================================
   WHY CHOOSE US
================================================= */
.why-us {
  background: var(--background-light);
  padding: 6rem 0;
  overflow-x: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.why-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =================================================
   PROMOTIONAL BANNERS (Background Images)
================================================= */
.promo-banners {
  padding: 4rem 0;
  background: var(--background);
  overflow-x: hidden;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-card {
  position: relative;
  min-height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
}

/* Background Images for Promo Cards */
.promo-card-1 {
  background-image: url('images/pickle-bg.webp');
}

.promo-card-2 {
  background-image: url('images/Kehwa_kashmiri2.jpeg');
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 58, 29, 0.85) 0%,
      rgba(20, 58, 29, 0.3) 50%,
      transparent 100%);
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: #fff;
}

.promo-content h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.promo-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #ddb14a;
  transform: translateX(4px);
}

/* =================================================
   CTA STRIP
================================================= */
.cta-strip {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-content h3 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =================================================
   FOOTER
================================================= */
.site-footer {
  background: #102c17;
  color: #dfe7e2;
  padding: 4rem 0 0;
}

.footer-content {
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h4,
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #dfe7e2;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--secondary);
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: #dfe7e2;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #dfe7e2;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* =================================================
   FLOATING WHATSAPP
================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* =================================================
   RESPONSIVE - TABLETS
================================================= */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    gap: 2rem;
  }

  .hero-image img {
    max-width: 400px;
  }
}

/* =================================================
   RESPONSIVE - MOBILE
================================================= */
@media (max-width: 900px) {

  /* Mobile Menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(251, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .menu-toggle:checked~.nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle:checked~.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle:checked~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked~.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Hero Section */
  .hero-modern {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-image img {
    max-width: 320px;
  }

  /* Sections */
  .home-products,
  .why-us,
  .promo-banners {
    padding: 4rem 0;
  }

  .tradition-section {
    background-attachment: scroll;
  }

  .tradition-features {
    gap: 2rem;
  }

  /* CTA Strip */
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .product-grid {
    gap: 1.5rem;
  }

  .promo-card {
    min-height: 300px;
  }
}

/* =================================================
   NAVBAR SCROLL EFFECT
================================================= */
.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: rgba(251, 248, 243, 1);
}

/* =================================================
   ADVANCED ANIMATIONS
================================================= */

/* Fade In Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  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-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide In Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.fade-in-visible,
.slide-in-right.fade-in-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.fade-in-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

/* =================================================
   BACK TO TOP BUTTON
================================================= */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1f5a2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* =================================================
   MOBILE MENU FIX
================================================= */
@media (max-width: 900px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* =================================================
   LOADER STYLES
================================================= */
.skip-loader #loader {
  display: none !important;
  visibility: hidden !important;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1d6c37;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

/* Logo animation */
.fade-in-logo {
  width: 150px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}