/* ========================================
   ROOT VARIABLES – BLOOD RED, CHERRY RED & GOLD THEME
======================================== */
:root {
  --blood-red: #8B0000;
  --cherry-red: #B22222;
  --deep-crimson: #7A0D0D;
  --royal-red: #A52A2A;
  --primary-gold: #C9A84C;
  --dark-gold: #B8922E;
  --light-gold: #D4AF37;
  --pale-gold: #E8D5A3;
  --primary-cream: #FDF6EC;
  --primary-dark: #1A0A0A;
  --shadow-gold: 0 15px 40px rgba(201, 168, 76, 0.3);
  --shadow-red: 0 15px 40px rgba(139, 0, 0, 0.3);
  --gradient-hero: linear-gradient(135deg, rgba(139, 0, 0, 0.92), rgba(178, 34, 34, 0.88), rgba(44, 24, 16, 0.95));
  --gradient-primary: linear-gradient(145deg, #8B0000, #B22222);
  --gradient-gold: linear-gradient(145deg, #C9A84C, #B8922E, #D4AF37);
  --gradient-red-gold: linear-gradient(135deg, #8B0000, #B22222, #C9A84C);
  --gradient-dark-red: linear-gradient(145deg, #6B0000, #8B0000);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary-cream);
  color: var(--primary-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .playfair {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.text-gold { color: var(--primary-gold); }
.text-light-gold { color: var(--light-gold); }
.text-blood-red { color: var(--blood-red); }
.text-cherry-red { color: var(--cherry-red); }

.bg-blood-red { background: var(--blood-red); }
.bg-cherry-red { background: var(--cherry-red); }
.bg-cream { background: var(--primary-cream); }
.bg-gradient-primary { background: var(--gradient-primary); }

.btn-gold {
  background: var(--gradient-gold);
  color: #1A0A0A;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.6);
  color: #1a0f0a;
}

.btn-red {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.btn-red:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(139, 0, 0, 0.5);
  color: #fff;
}

.btn-red-gold {
  background: var(--gradient-red-gold);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
  transition: all 0.3s ease;
}
.btn-red-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.glass-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.5);
}

.glass-card-red {
  background: rgba(139, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.glass-card-red:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-red);
  border-color: rgba(139, 0, 0, 0.4);
}

.navbar-custom {
  background: linear-gradient(135deg, rgba(107, 0, 0, 0.97), rgba(139, 0, 0, 0.98), rgba(178, 34, 34, 0.95)) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}
.navbar-custom .nav-link {
  color: #f5e6d3 !important;
  font-weight: 500;
  margin: 0 12px;
  letter-spacing: 0.5px;
  transition: 0.3s;
  position: relative;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: 0.3s;
}
.navbar-custom .nav-link:hover::after {
  width: 100%;
}
.navbar-custom .nav-link:hover {
  color: var(--light-gold) !important;
}
.navbar-custom .nav-link.active {
  color: var(--light-gold) !important;
}
.navbar-custom .nav-link.active::after {
  width: 100%;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.navbar-brand i {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cultural-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.08);
  height: 100%;
}
.cultural-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}
.cultural-card .icon-wrap {
  font-size: 2.8rem;
  color: var(--primary-gold);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  padding: 16px;
  border-radius: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(212, 175, 55, 0.08);
}
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(201, 168, 76, 0.25);
  border-color: var(--primary-gold);
}
.product-card .img-wrapper {
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  position: relative;
}
.product-card .img-wrapper img {
  transition: transform 0.7s ease;
  height: 280px;
  width: 100%;
  object-fit: cover;
}
.product-card:hover .img-wrapper img {
  transform: scale(1.1);
}

.badge-category {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.7rem;
}
.badge-category-red {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.7rem;
}

.stats-section {
  background: var(--gradient-dark-red);
  position: relative;
  overflow: hidden;
}
.stats-section .stat-item h2 {
  font-size: 3.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
}
.stats-section .stat-item p {
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-premium {
  background: linear-gradient(135deg, rgb(123,17,19), rgb(74,11,13)) !important;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
  border-top: 3px solid var(--primary-gold);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}
.footer-premium h5, .footer-premium h6 {
  color: rgb(212, 175, 55);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-premium a {
  color: #ffffffd7;
  text-decoration: none;
  transition: 0.3s;
}
.footer-premium a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  color: var(--primary-gold);
  transition: 0.3s;
  margin-right: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.social-icon:hover {
  background: var(--primary-gold);
  color: #1a0e0a;
  transform: translateY(-4px);
  border-color: var(--primary-gold);
}

#backTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#backTop:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), #f5d97e);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 6px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-badge-red {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 6px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.divider-gold {
  text-align: center;
  font-size: 2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 15px;
  opacity: 0.6;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .stats-section h2 { font-size: 2.4rem; }
  .navbar-custom .nav-link { margin: 0 4px; font-size: 0.9rem; }
}
 /* timeline + modal same as original */
        .timeline-item {
            background: white;
            padding: 1.2rem 1.8rem;
            border-radius: 60px 20px 20px 60px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
            border-left: 6px solid #b8860b;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            backdrop-filter: blur(2px);
            background: rgba(255, 255, 255, 0.75);
            position: relative;
            overflow: hidden;
        }
        .timeline-item:hover {
            transform: translateX(12px) scale(1.02);
            background: rgba(255, 245, 225, 0.92);
            box-shadow: 0 12px 28px rgba(184, 134, 11, 0.18);
            border-left-width: 10px;
        }
        .timeline-item .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(184, 134, 11, 0.2);
            transform: scale(0);
            animation: ripple-anim 0.6s linear;
            pointer-events: none;
        }
        @keyframes ripple-anim {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
        .timeline-date {
            font-size: 0.85rem;
            font-weight: 600;
            color: #6b4f2b;
            letter-spacing: 0.3px;
        }
        .img-dummy-grid {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 1.2rem;
            justify-content: center;
        }
        .img-dummy-grid img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 20px;
            border: 2px solid #d4af37;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }
        .img-dummy-grid img:hover {
            transform: scale(1.18) rotate(2deg);
            border-color: #a52a2a;
            box-shadow: 0 12px 28px rgba(165, 42, 42, 0.25);
        }
        .modal-content {
            border-radius: 36px;
            border: 1px solid rgba(184, 134, 11, 0.3);
            background: #fefcf7;
            overflow: hidden;
        }
        .modal-header {
            border-bottom: 1px solid #e9dac8;
            padding: 1.5rem 2rem;
            background: #fcf8f2;
        }
        .btn-close-gold {
            background: transparent;
            border: 1px solid #b8860b;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #5a3e1b;
            transition: 0.25s;
            padding: 0;
        }
        .btn-close-gold:hover {
            background: #b8860b20;
            transform: rotate(90deg) scale(1.1);
            border-color: #a52a2a;
        }

        /* ----- LIGHTBOX (big image overlay) ----- */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 15, 10, 0.92);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            backdrop-filter: blur(6px);
            padding: 2rem;
            animation: fadeIn 0.3s ease;
        }
        .lightbox-overlay.active {
            display: flex;
        }
        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 32px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
            border: 3px solid rgba(184, 134, 11, 0.5);
            transition: 0.25s;
            cursor: zoom-out;
        }
        .lightbox-overlay .close-lightbox {
            position: absolute;
            top: 28px;
            right: 40px;
            font-size: 3rem;
            color: #d4af37;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid #b8860b80;
            transition: 0.25s;
        }
        .lightbox-overlay .close-lightbox:hover {
            background: #b8860b;
            color: #1c140e;
            transform: rotate(90deg) scale(1.1);
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scale(0.96);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 576px) {
            .timeline-item {
                border-radius: 30px 12px 12px 30px;
                padding: 1rem 1.2rem;
            }
            .img-dummy-grid img {
                width: 70px;
                height: 70px;
            }
            .lightbox-overlay .close-lightbox {
                top: 16px;
                right: 16px;
                width: 56px;
                height: 56px;
                font-size: 2.2rem;
            }
        }