/* ===== Hills Heritages — Custom Styles ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ---------- Root Variables ---------- */
:root {
  --black: #0a0a0a;
  --deep-charcoal: #1a1a1a;
  --charcoal: #2a2a2a;
  --charcoal-light: #3a3a3a;
  --metallic-silver: #c0c0c0;
  --silver-light: #d4d4d4;
  --earthy-beige: #d4a574;
  --beige-light: #e8c9a0;
  --beige-dark: #b8956a;
  --traditional-red: #8b1a1a;
  --red-accent: #c0392b;
  --red-deep: #6b1515;
  --tribal-gold: #b8860b;
  --tribal-bronze: #8b6914;
  --white-off: #f5f0e8;
  --white-warm: #faf6f0;
  --text-muted: #9ca3af;
}

/* ---------- Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--silver-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.font-heading {
  font-family: 'Playfair Display', serif;
}

.font-sub {
  font-family: 'Cormorant Garamond', serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

/* ---------- Tribal Pattern Divider ---------- */
.tribal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
}

.tribal-divider::before,
.tribal-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--earthy-beige), transparent);
}

.tribal-divider span {
  color: var(--earthy-beige);
  font-size: 18px;
  letter-spacing: 4px;
}

/* ---------- Section Divider ---------- */
.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--traditional-red), var(--earthy-beige), var(--traditional-red));
  margin: 0 auto;
  position: relative;
}

.section-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--earthy-beige);
  font-size: 10px;
  background: var(--black);
  padding: 0 8px;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--earthy-beige) 0%, var(--tribal-gold) 50%, var(--earthy-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: linear-gradient(135deg, var(--traditional-red) 0%, var(--red-accent) 50%, var(--earthy-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Glow Effects ---------- */
.glow-gold {
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.15), 0 0 40px rgba(184, 134, 11, 0.05);
}

.glow-red {
  box-shadow: 0 0 20px rgba(139, 26, 26, 0.2), 0 0 40px rgba(139, 26, 26, 0.08);
}

/* ---------- Buttons ---------- */
.btn-heritage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--earthy-beige);
  color: var(--earthy-beige);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-heritage::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-heritage:hover::before {
  left: 100%;
}

.btn-heritage:hover {
  background: var(--earthy-beige);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
  transform: translateY(-2px);
}

.btn-heritage-filled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--earthy-beige);
  color: var(--black);
  background: linear-gradient(135deg, var(--earthy-beige), var(--tribal-gold));
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.btn-heritage-filled:hover {
  background: linear-gradient(135deg, var(--tribal-gold), var(--earthy-beige));
  box-shadow: 0 4px 25px rgba(184, 134, 11, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #25D366;
  color: #fff;
  background: #25D366;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 30%,
    rgba(10, 10, 10, 0.6) 60%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--earthy-beige);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
  color: var(--silver-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--earthy-beige);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--earthy-beige);
}

.nav-link:hover::after {
  width: 100%;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  z-index: 1001;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 40px;
  border-left: 1px solid rgba(212, 165, 116, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  display: block;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.08);
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earthy-beige);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}

/* ---------- Category Cards ---------- */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  group: true;
}

.category-card img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(139, 26, 26, 0.1) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

/* ---------- Product Cards ---------- */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--deep-charcoal);
  border: 1px solid rgba(212, 165, 116, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(139, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white-off);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- State Cards (Heritage) ---------- */
.state-card {
  padding: 24px 16px;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.5), rgba(26, 26, 26, 0.8));
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.state-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--earthy-beige), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.state-card:hover {
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.state-card:hover::before {
  opacity: 1;
}

/* ---------- Feature Icons ---------- */
.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 165, 116, 0.2);
  color: var(--earthy-beige);
  font-size: 24px;
  transition: all 0.4s ease;
  margin: 0 auto 20px;
}

.feature-icon:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--earthy-beige);
  transform: rotate(5deg) scale(1.05);
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Tribal Footer Pattern ---------- */
.footer-tribal-border {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--earthy-beige) 0px,
    var(--earthy-beige) 12px,
    transparent 12px,
    transparent 16px,
    var(--traditional-red) 16px,
    var(--traditional-red) 28px,
    transparent 28px,
    transparent 32px
  );
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--charcoal-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--earthy-beige);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ---------- Loading Animation ---------- */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(212, 165, 116, 0.1);
  border-top-color: var(--earthy-beige);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh;
  }

  .btn-heritage,
  .btn-heritage-filled,
  .btn-whatsapp {
    padding: 12px 24px;
    font-size: 12px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* ---------- Parallax ---------- */
@media (prefers-reduced-motion: no-preference) {
  .parallax-bg {
    will-change: transform;
  }
}

/* ---------- Image Shimmer ---------- */
.img-shimmer {
  position: relative;
  overflow: hidden;
}

.img-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ===== INNER PAGE STYLES ===== */

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--earthy-beige);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 11px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--earthy-beige), var(--charcoal-light));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--earthy-beige);
  background: var(--black);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* ---------- Value Card ---------- */
.value-card {
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.6));
  border: 1px solid rgba(212, 165, 116, 0.08);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--earthy-beige), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::after {
  opacity: 1;
}

/* ---------- Collection Gallery ---------- */
.collection-grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-grid-item img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.collection-grid-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.collection-grid-item:hover .collection-overlay {
  opacity: 1;
}

/* ---------- Filter Tabs ---------- */
.filter-tab {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(212, 165, 116, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  color: var(--earthy-beige);
  border-color: rgba(212, 165, 116, 0.3);
}

.filter-tab.active {
  color: var(--black);
  background: var(--earthy-beige);
  border-color: var(--earthy-beige);
}

/* ---------- Product Detail Card ---------- */
.product-detail-card {
  background: var(--deep-charcoal);
  border: 1px solid rgba(212, 165, 116, 0.08);
  overflow: hidden;
  transition: all 0.5s ease;
}

.product-detail-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* ---------- Contact Form ---------- */
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 165, 116, 0.1);
  color: var(--silver-light);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #666;
}

.form-input:focus {
  border-color: var(--earthy-beige);
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Accordion ---------- */
.accordion-item {
  border: 1px solid rgba(212, 165, 116, 0.08);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(212, 165, 116, 0.2);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--deep-charcoal);
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(42, 42, 42, 0.5);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  background: rgba(26, 26, 26, 0.5);
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 18px 24px;
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--earthy-beige);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* ---------- Map Container ---------- */
.map-container {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

/* ---------- Team Card ---------- */
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.5));
  border: 1px solid rgba(212, 165, 116, 0.06);
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ---------- 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; }

