/* ========================================
   UNC MUSEUM - Unique Numismatic Collections
   Design System: Mixed Light/Dark Theme
   ======================================== */

/* CSS Variables - Color Palette */
:root {
  --navy-deep: #101827;
  --navy-slate: #1d2736;
  --sky-blue: #a7c4cb;
  --cream: #f9f3d5;
  --heritage-red: #b24649;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --text-dark: #101827;
  --text-light: #f9f3d5;
  --text-muted: #8f9393;
  --bg-dark: #101827;
  --bg-dark-secondary: #1d2736;
  --bg-light: #faf8f0;
  --bg-cream: #f9f3d5;
  --bg-card-dark: #1d2736;
  --bg-card-light: #ffffff;
  --accent-gold: #c9a96e;
  --accent-blue: #a7c4cb;
  --accent-red: #b24649;
  --gradient-dark: linear-gradient(135deg, #101827 0%, #1d2736 100%);
  --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 100%);
  --gradient-hero: linear-gradient(180deg, #101827 0%, #1d2736 50%, #101827 100%);
  --shadow-sm: 0 2px 8px rgba(16, 24, 39, 0.1);
  --shadow-md: 0 4px 20px rgba(16, 24, 39, 0.15);
  --shadow-lg: 0 8px 40px rgba(16, 24, 39, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { font-size: 1rem; color: var(--text-muted); max-width: 65ch; }

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-blue { color: var(--sky-blue); }
.text-red { color: var(--heritage-red); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-xl) 0; }
.section-dark { background: var(--gradient-dark); color: var(--text-light); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-cream { background: var(--bg-cream); color: var(--text-dark); }

/* NAVIGATION */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(16, 24, 39, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(201, 169, 110, 0.2); transition: var(--transition-normal); }
.navbar.scrolled { background: rgba(16, 24, 39, 0.98); box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) var(--space-md); max-width: 1280px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: var(--space-sm); }
.logo-img { width: 50px; height: 50px; border-radius: var(--radius-md); }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--cream); letter-spacing: 1px; }
.logo-text span { color: var(--gold); font-size: 0.75rem; display: block; font-family: var(--font-body); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: var(--space-md); }
.nav-links a { color: var(--cream); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; position: relative; padding: 0.25rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition-normal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gradient-gold); color: var(--navy-deep) !important; padding: 0.6rem 1.5rem !important; border-radius: var(--radius-full); font-weight: 600 !important; transition: var(--transition-normal); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.nav-cta::after { display: none !important; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.25rem 0;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-normal);
}

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

.nav-dropdown-toggle:hover {
  color: var(--gold);
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  background: var(--navy-deep);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Arrow pointer for dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  border-left: 1px solid rgba(201, 169, 110, 0.25);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  padding-left: 24px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: center;
    padding: 12px;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    display: none;
    background: rgba(0,0,0,0.2);
    border: none;
    border-left: 3px solid var(--gold);
    box-shadow: none;
    margin: 0 0 0 20px;
    min-width: 0;
    max-width: 100%;
    width: calc(100% - 40px);
    box-sizing: border-box;
    border-radius: 0 8px 8px 0;
    padding: 8px 0;
    overflow-x: hidden;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    text-align: left;
    padding: 12px 20px;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--cream);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(201, 169, 110, 0.15);
    padding-left: 28px;
    color: var(--gold);
  }

  .nav-links {
    padding: var(--space-sm) var(--space-md);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links a {
    padding: 12px 0;
    text-align: center;
    width: 100%;
  }

  .nav-cta {
    margin-top: var(--space-sm);
    text-align: center;
    justify-content: center;
  }
}

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('../images/pattern.svg') repeat; opacity: 0.03; }
.hero-content { text-align: center; position: relative; z-index: 2; max-width: 800px; padding: var(--space-lg); }
.hero-badge { display: inline-block; background: rgba(201, 169, 110, 0.15); border: 1px solid var(--gold); color: var(--gold); padding: 0.5rem 1.5rem; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: var(--space-md); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--cream); margin-bottom: var(--space-sm); line-height: 1.1; }
.hero h1 .highlight { color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--sky-blue); margin-bottom: var(--space-md); font-family: var(--font-accent); font-style: italic; }
.hero-description { font-size: 1.1rem; color: rgba(249, 243, 213, 0.7); margin-bottom: var(--space-lg); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta-group { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.5rem; border-radius: var(--radius-full); font-weight: 600; font-size: 1rem; letter-spacing: 0.5px; transition: var(--transition-normal); cursor: pointer; border: none; }
.btn-primary { background: var(--gradient-gold); color: var(--navy-deep); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 30px rgba(201, 169, 110, 0.4); }
.btn-secondary { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn-secondary:hover { background: var(--cream); color: var(--navy-deep); }
.btn-whatsapp { background: #25D366; color: white; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition-normal); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }

/* FLOATING NOTES */
.hero-notes { position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.note-float { position: absolute; width: 120px; height: 60px; background: linear-gradient(135deg, rgba(167, 196, 203, 0.1), rgba(201, 169, 110, 0.1)); border: 1px solid rgba(201, 169, 110, 0.2); border-radius: 4px; animation: float 20s infinite ease-in-out; }
.note-float:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.note-float:nth-child(2) { top: 60%; left: 5%; animation-delay: 5s; }
.note-float:nth-child(3) { top: 30%; right: 10%; animation-delay: 10s; }
.note-float:nth-child(4) { top: 70%; right: 15%; animation-delay: 15s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; } 50% { transform: translateY(-30px) rotate(5deg); opacity: 0.6; } }

/* TRUST BAR */
.trust-bar { background: var(--navy-slate); border-top: 1px solid rgba(201, 169, 110, 0.2); border-bottom: 1px solid rgba(201, 169, 110, 0.2); padding: var(--space-md) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); }
.trust-icon { width: 48px; height: 48px; background: rgba(201, 169, 110, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: var(--space-xs); }
.trust-item h4 { color: var(--cream); font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; }
.trust-item p { color: var(--text-muted); font-size: 0.85rem; }

/* PRODUCT GRID */
.products-section { background: var(--bg-light); padding: var(--space-2xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { color: var(--navy-deep); margin-bottom: var(--space-sm); }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-badge { display: inline-block; background: rgba(178, 70, 73, 0.1); color: var(--heritage-red); padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: var(--space-sm); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.product-card { background: var(--bg-card-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition-normal); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card.featured { border: 2px solid var(--gold); }
.product-badge { position: absolute; top: var(--space-sm); right: var(--space-sm); background: var(--gradient-gold); color: var(--navy-deep); padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; z-index: 2; }
.product-image { width: 100%; height: 220px; background: var(--gradient-dark); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-image-placeholder { font-size: 4rem; opacity: 0.3; }
.product-content { padding: var(--space-md); }
.product-content h3 { color: var(--navy-deep); margin-bottom: var(--space-xs); font-size: 1.4rem; }
.product-tagline { font-family: var(--font-accent); font-style: italic; color: var(--heritage-red); font-size: 0.95rem; margin-bottom: var(--space-sm); }
.product-description { color: var(--text-muted); font-size: 0.9rem; margin-bottom: var(--space-md); line-height: 1.5; }
.product-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: var(--space-sm); }
.product-price .amount { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--navy-deep); }
.product-price .label { font-size: 0.85rem; color: var(--text-muted); }
.product-cta { display: flex; gap: var(--space-sm); }
.product-cta .btn { flex: 1; justify-content: center; padding: 0.75rem 1rem; font-size: 0.9rem; }

/* FEATURED SECTION */
.featured-section { background: var(--gradient-dark); padding: var(--space-2xl) 0; position: relative; overflow: hidden; }
.featured-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%); pointer-events: none; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.featured-content h2 { color: var(--cream); margin-bottom: var(--space-md); }
.featured-content .lead { font-size: 1.2rem; color: var(--sky-blue); font-family: var(--font-accent); font-style: italic; margin-bottom: var(--space-md); }
.featured-content p { color: rgba(249, 243, 213, 0.7); margin-bottom: var(--space-md); }
.featured-specs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin: var(--space-md) 0; }
.spec-item { background: rgba(167, 196, 203, 0.08); border: 1px solid rgba(167, 196, 203, 0.2); padding: var(--space-sm); border-radius: var(--radius-md); }
.spec-item .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.spec-item .value { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); font-weight: 600; }
.featured-image { position: relative; }
.featured-image-frame { background: var(--navy-slate); border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: var(--space-md); position: relative; box-shadow: var(--shadow-gold); }
.featured-image-frame img { width: 100%; border-radius: var(--radius-md); }
.featured-image-frame::before { content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; border: 1px solid rgba(201, 169, 110, 0.3); border-radius: var(--radius-lg); pointer-events: none; }

/* HOW IT WORKS */
.how-it-works { background: var(--bg-cream); padding: var(--space-2xl) 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.step-card { text-align: center; padding: var(--space-md); position: relative; }
.step-number { width: 60px; height: 60px; background: var(--gradient-gold); color: var(--navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 0 auto var(--space-md); box-shadow: var(--shadow-gold); }
.step-card h3 { color: var(--navy-deep); margin-bottom: var(--space-xs); font-size: 1.2rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }
.step-card:not(:last-child)::after { content: ''; position: absolute; top: 30px; right: -30px; width: 60px; height: 2px; background: var(--gold); opacity: 0.3; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-light); padding: var(--space-2xl) 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.testimonial-card { background: var(--bg-card-light); padding: var(--space-md); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); }
.testimonial-card p { font-style: italic; margin-bottom: var(--space-sm); color: var(--text-dark); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }
.testimonial-author .name { font-weight: 600; color: var(--navy-deep); }
.testimonial-author .role { font-size: 0.85rem; color: var(--text-muted); }

/* GALLERY */
.gallery-section { background: var(--gradient-dark); padding: var(--space-2xl) 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-sm); margin-top: var(--space-xl); }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(16, 24, 39, 0.9)); padding: var(--space-md); transform: translateY(100%); transition: var(--transition-normal); }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4 { color: var(--cream); font-size: 1rem; }

/* FOOTER */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(201, 169, 110, 0.2); padding: var(--space-xl) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand .logo-text { font-size: 1.75rem; margin-bottom: var(--space-sm); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: var(--space-md); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a { width: 40px; height: 40px; background: rgba(201, 169, 110, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: var(--transition-normal); }
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-column h4 { color: var(--cream); font-size: 1rem; margin-bottom: var(--space-md); font-family: var(--font-body); font-weight: 600; }
.footer-column ul li { margin-bottom: var(--space-xs); }
.footer-column ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-column ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: var(--space-xs); display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(201, 169, 110, 0.1); padding-top: var(--space-md); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.whatsapp-float a { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.75rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: var(--transition-normal); position: relative; }
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float .tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--navy-deep); color: var(--cream); padding: 0.5rem 1rem; border-radius: var(--radius-md); font-size: 0.85rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition-normal); }
.whatsapp-float a:hover .tooltip { opacity: 1; }

/* PAGE HEADER */
.page-header { background: var(--gradient-dark); padding: 140px 0 var(--space-xl); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%); }
.page-header h1 { color: var(--cream); margin-bottom: var(--space-sm); position: relative; z-index: 1; }
.page-header p { color: var(--sky-blue); font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

/* CONTENT SECTIONS */
.content-section { padding: var(--space-xl) 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-image img { width: 100%; height: auto; }
.content-text h2 { color: var(--navy-deep); margin-bottom: var(--space-md); }
.content-text p { margin-bottom: var(--space-md); color: var(--text-muted); }
.feature-list { margin: var(--space-md) 0; }
.feature-list li { display: flex; align-items: flex-start; gap: var(--space-sm); margin-bottom: var(--space-sm); color: var(--text-dark); }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* PRICING TABLES */
.pricing-table { width: 100%; border-collapse: collapse; margin: var(--space-md) 0; background: var(--bg-card-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table th, .pricing-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid rgba(16, 24, 39, 0.08); }
.pricing-table th { background: var(--navy-deep); color: var(--cream); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; }
.pricing-table td { color: var(--text-dark); font-size: 0.95rem; }
.pricing-table tr:hover td { background: rgba(201, 169, 110, 0.05); }
.pricing-table .price { font-family: var(--font-display); font-weight: 700; color: var(--heritage-red); font-size: 1.1rem; }

/* THEME CARDS */
.theme-categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.theme-category { background: var(--bg-card-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition-normal); }
.theme-category:hover { box-shadow: var(--shadow-md); }
.theme-category-header { background: var(--gradient-dark); padding: var(--space-md); display: flex; align-items: center; gap: var(--space-sm); }
.theme-category-header .icon { font-size: 1.75rem; }
.theme-category-header h3 { color: var(--cream); font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.theme-list { padding: var(--space-sm) 0; }
.theme-list li { padding: 0.75rem var(--space-md); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(16, 24, 39, 0.05); transition: var(--transition-fast); }
.theme-list li:hover { background: rgba(201, 169, 110, 0.05); }
.theme-list li:last-child { border-bottom: none; }
.theme-list .theme-name { color: var(--text-dark); font-size: 0.95rem; }
.theme-list .theme-count { background: rgba(178, 70, 73, 0.1); color: var(--heritage-red); padding: 0.2rem 0.6rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }

/* CONTACT FORM */
.contact-form { background: var(--bg-card-light); padding: var(--space-xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; margin-bottom: var(--space-xs); color: var(--navy-deep); font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.875rem 1rem; border: 2px solid rgba(16, 24, 39, 0.1); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 1rem; transition: var(--transition-fast); background: var(--bg-light); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== VALUES SECTION FIX - PROPER LEFT ALIGNMENT ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-card {
  background: var(--bg-card-light);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.value-card h3 {
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  text-align: left;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  max-width: 100%;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid, .content-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .content-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%; box-sizing: border-box; overflow-x: hidden; background: var(--navy-deep); flex-direction: column; padding: var(--space-md); gap: var(--space-sm); border-top: 1px solid rgba(201, 169, 110, 0.2); }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:not(:last-child)::after { display: none; }
  .theme-categories { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 0.75rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* UTILITIES */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.hidden { display: none; }



.part-card-image {
    width: 32px;;
    aspect-ratio: 16/10;
    background: var(--navy-lighter);
    position: relative;
    overflow: hidden;
}

.part-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

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

.part-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(201, 168, 76, 0.5);
    background: var(--navy);
}

.part-card-image-placeholder svg {
    width: 32px; 
    height: 32px;
    opacity: 0.4;
}

.part-card-image-placeholder span {
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
}
