:root {
  /* === PRIMARY - Elegant Purple === */
  --primary: #9333ea;
  --primary-light: #a855f7;
  --primary-dark: #7e22ce;
  --primary-muted: rgba(147, 51, 234, 0.15);

  /* === ACCENT - Luxurious Gold (Use Sparingly) === */
  --gold: #d4a853;
  --gold-light: #e5c179;
  --gold-dark: #b8923d;
  --gold-muted: rgba(212, 168, 83, 0.12);

  /* === SECONDARY === */
  --secondary: #c4b5fd;
  --success: #22c55e;

  /* === BACKGROUNDS - Rich Blacks === */
  --dark: #0c0a14;
  --darker: #06050a;
  --card-bg: #13111d;
  --card-bg-hover: #1a1726;
  --surface: #1e1b2e;

  /* === TEXT & NEUTRALS === */
  --light: #faf9fc;
  --light-muted: #e8e6f0;
  --gray: #9896a8;
  --gray-dark: #6b6980;
  --light-gray: #d4d2e0;

  /* === BORDERS === */
  --border: rgba(148, 130, 180, 0.12);
  --border-gold: rgba(212, 168, 83, 0.3);
  --border-purple: rgba(147, 51, 234, 0.25);

  /* === GRADIENTS === */
  --gradient-primary: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6d28d9 100%);
  --gradient-gold: linear-gradient(135deg, #d4a853 0%, #c9a227 100%);
  --gradient-premium: linear-gradient(135deg, #9333ea 0%, #d4a853 100%);
  --gradient-dark: linear-gradient(180deg, #0c0a14 0%, #13111d 100%);

  /* === SHADOWS === */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow-purple: 0 0 30px rgba(147, 51, 234, 0.25);
  --shadow-glow-gold: 0 0 25px rgba(212, 168, 83, 0.2);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--darker);
  color: var(--light);
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== HERO SLIDER ========== */
.image-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  /* Reduced from 100vh for better usability */
  overflow: hidden;
  background: #000;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  display: block;
  opacity: 1;
  z-index: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 5, 10, 0.4) 0%, rgba(6, 5, 10, 0.8) 100%);
}

.content {
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 1;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-family: "Outfit", sans-serif;
  max-width: 600px;
}

.content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content p {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: var(--light-gray);
}

/* New Banner Content */
.banner-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 650px;
}

.main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.main-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-title {
  font-size: 1.25rem;
  color: var(--light-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.banner-btns {
  display: flex;
  gap: 20px;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn.primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow-purple);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

.cta-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}

@media (max-width: 768px) {
  .banner-content {
    left: 5%;
    right: 5%;
    text-align: center;
    bottom: 20%;
    top: auto;
    transform: none;
  }

  .banner-btns {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  /* Increased z-index */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
}

.slider-arrow i {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(147, 51, 234, 0.6);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
    left: auto;
  }
}

.dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dots span:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dots span.active {
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

/* ========== DESKTOP BANNER ========== */
.desktop-banner {
  display: block;
}

/* ========== MOBILE BANNER ========== */
.mobile-banner {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Mobile banner specific styles */
.mobile-banner .slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-banner .slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mobile-banner .slide.active {
  display: block;
  opacity: 1;
  z-index: 0;
}

.mobile-banner .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mobile-banner .dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.mobile-banner .dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-banner .dots span:hover {
  background: rgba(255, 255, 255, 0.6);
}

.mobile-banner .dots span.active {
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablets and Mobile Devices (≤768px) */
@media (max-width: 768px) {

  /* Hide desktop banner */
  .desktop-banner {
    display: none;
  }

  /* Show mobile banner */
  .mobile-banner {
    display: block;
    height: 41.67vw;
    /* maintain 1920x800 ratio */
    max-height: none;
  }

  .image-banner {
    height: 41.67vw;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
  .mobile-banner {
    height: 41.67vw;
    max-height: none;
  }

  .image-banner {
    height: 41.67vw;
  }

  .content h1 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .dots {
    bottom: 15px;
  }

  .mobile-banner .dots {
    bottom: 15px;
    gap: 8px;
  }

  .mobile-banner .dots span {
    width: 8px;
    height: 8px;
  }
}

/* Extra Small Phones (≤375px) */
@media (max-width: 375px) {
  .mobile-banner {
    height: 41.67vw;
    max-height: none;
  }
}

/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.mainheading {
  font-size: clamp(2rem, 6vw, 3rem);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.mainheading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ========== PRODUCTS SECTION ========== */
.ourproducts {
  width: 100%;
  min-height: 80vh;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.cardsdiv {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  padding: 50px 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.cards {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  width: 320px;
  min-height: 520px;
  padding: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cards:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  background: var(--gradient-gold);
  color: var(--darker);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.card-image {
  width: 100%;
  height: 260px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cards:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(147, 51, 234, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards:hover .card-overlay {
  opacity: 1;
}

.card-overlay span {
  background: #fff;
  color: var(--darker);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transform: translateY(20px);
  transition: transform 0.33s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cards:hover .card-overlay span {
  transform: translateY(0);
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content .edition {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: transparent;
  padding: 0;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--light);
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 20px;
}

.current-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.old-price {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
}

.discount-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.card-footer .btnbuynow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
}

.btn {
  margin-top: 10px;
}

.btnbuynow {
  width: 100%;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btnbuynow::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;
}

.btnbuynow:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
}

.btnbuynow:hover::before {
  left: 100%;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 100px 20px;
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #fff;
}

.feature-card h3 {
  color: var(--light);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== STATS SECTION ========== */
.stats-section {
  padding: 80px 20px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-glow-purple);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.author-info h4 {
  color: var(--light);
  font-size: 1rem;
  margin-bottom: 3px;
}

.author-info span {
  color: var(--gold);
  font-size: 0.85rem;
}

.rating {
  color: var(--gold);
  margin-top: 15px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 20px;
  background: var(--darker);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--light);
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
}

.cta-content p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gradient-gold);
  color: var(--darker);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-gold);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-family: "Outfit", sans-serif;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--gray);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--gold);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.social-links a:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-bottom span {
  color: var(--gold);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .cards {
    width: 100%;
    max-width: 320px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}