/* ============================================================
   BLUEWAY INTERNATIONAL RECORDS — Main Stylesheet
   Premium Glassmorphism + Gradient Design
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --royal-blue: #1a56db;
  --royal-blue-light: #3b82f6;
  --royal-blue-dark: #1340a8;
  --navy: #0d1b3e;
  --navy-light: #162750;
  --navy-deep: #070e20;
  --white: #ffffff;
  --silver: #f0f4f8;
  --silver-dark: #dde3ec;
  --text-primary: #0d1b3e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --accent-gold: #f5a623;
  --accent-emerald: #10b981;
  --gradient-primary: linear-gradient(135deg, #1a56db 0%, #0d1b3e 100%);
  --gradient-hero: linear-gradient(135deg, #070e20 0%, #0d1b3e 40%, #1a3a7a 70%, #1a56db 100%);
  --gradient-card: linear-gradient(135deg, rgba(26,86,219,0.08) 0%, rgba(13,27,62,0.04) 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(13, 27, 62, 0.2);
  --card-shadow: 0 4px 24px rgba(13, 27, 62, 0.08);
  --card-shadow-hover: 0 16px 48px rgba(13, 27, 62, 0.18);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --navbar-height: 80px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --silver: #0f1729;
  --silver-dark: #1a2744;
  --text-primary: #e8eef8;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
  --glass-bg: rgba(13, 27, 62, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--silver);
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

[data-theme="dark"] body {
  background-color: var(--silver);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; }

/* ── Loading Screen ── */
#loadingScreen {
  position: fixed;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loadingScreen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.loader-b { color: var(--accent-gold); }
.loader-r { color: white; }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 99px;
  animation: loadFill 1.5s ease-in-out forwards;
}

@keyframes loadFill {
  from { width: 0; }
  to { width: 100%; }
}

.loader-content p {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Navigation ── */
#mainNav {
  background: transparent;
  padding: 1rem 0;
  transition: var(--transition);
  height: var(--navbar-height);
}

#mainNav.scrolled {
  background: rgba(7, 14, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand { gap: 12px; }

.nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(26,86,219,0.5));
}

.logo-fallback {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  letter-spacing: -1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: white;
}

.brand-sub {
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 99px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

/* Register Button */
.btn-register {
  background: linear-gradient(135deg, #f5a623 0%, #f0852d 100%);
  color: white !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  transition: var(--transition);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
  color: white !important;
}

.btn-theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-theme-toggle:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: var(--accent-gold);
}

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  background: #070e20; /* Solid dark fallback */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

/* Background Slider styling */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  pointer-events: none;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Dynamic Carousel slide showcase */
.hero-carousel-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
}

.hero-carousel-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(15px);
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative; /* Restores container layout flow for active slide */
  transform: translateY(0);
  pointer-events: auto;
}

/* Premium Record card showpiece */
.showpiece-container {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(7, 14, 32, 0.3);
  transition: var(--transition);
}

.showpiece-container:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}

.showpiece-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showpiece-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showpiece-container:hover .showpiece-img {
  transform: scale(1.08);
}

/* Carousel controls styling */
.carousel-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.carousel-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 10px;
}

.floating-world-badge {
  pointer-events: none;
}

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

.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) { width:300px; height:300px; background:rgba(26,86,219,0.15); top:-5%; left:-5%; animation-delay:0s; }
.hero-particle:nth-child(2) { width:200px; height:200px; background:rgba(245,166,35,0.1); top:20%; right:10%; animation-delay:2s; }
.hero-particle:nth-child(3) { width:150px; height:150px; background:rgba(16,185,129,0.08); bottom:20%; left:20%; animation-delay:4s; }
.hero-particle:nth-child(4) { width:400px; height:400px; background:rgba(26,86,219,0.08); bottom:-10%; right:-5%; animation-delay:1s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Hero Grid Lines Background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26,86,219,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,219,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #f5a623, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin: 1.2rem 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-founder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-founder span { color: var(--accent-gold); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 8px 30px rgba(26,86,219,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26,86,219,0.6);
  color: white;
}

.btn-hero-outline {
  background: transparent;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: white;
  transform: translateY(-3px);
}

/* Hero Stats Strip */
.hero-stats-strip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: var(--font-display);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Hero Visual Card */
.hero-visual {
  animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(26,86,219,0.1) 60deg, transparent 120deg);
  animation: spin 10s linear infinite;
}

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

.trophy-icon-hero {
  font-size: 5rem;
  background: linear-gradient(135deg, #f5a623, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* ── Section Styles ── */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(26,86,219,0.1), rgba(13,27,62,0.05));
  border: 1px solid rgba(26,86,219,0.2);
  color: var(--royal-blue);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

[data-theme="dark"] .section-tag {
  background: rgba(26,86,219,0.15);
  border-color: rgba(26,86,219,0.3);
  color: var(--royal-blue-light);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Gradient Heading Decoration */
.section-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue), var(--accent-gold));
  border-radius: 99px;
  margin: 1rem 0;
}

/* ── Record Cards ── */
.record-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}

[data-theme="dark"] .record-card {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}

.record-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(26,86,219,0.2);
}

.record-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.record-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.record-card:hover .record-card-img img {
  transform: scale(1.1);
}

.record-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
}

.record-card-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.record-card-body {
  padding: 1.25rem;
}

.record-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.record-holder-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.holder-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.holder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.holder-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.record-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.record-card-footer {
  padding: 0.75rem 1.25rem;
  background: var(--silver);
  border-top: 1px solid var(--silver-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-theme="dark"] .record-card-footer {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}

.record-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-view-record {
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-view-record:hover {
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(26,86,219,0.4);
}

/* ── Dark Background Sections ── */
.section-dark {
  background: var(--gradient-hero);
  color: white;
}

.section-dark .section-tag {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.3);
  color: var(--accent-gold);
}

.section-dark .section-title { color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ── Stats Counter ── */
.stats-section {
  background: var(--gradient-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-display);
  line-height: 1;
}

.stat-suffix { font-size: 2rem; }

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

/* ── Why Choose Us ── */
.why-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}

[data-theme="dark"] .why-card {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(26,86,219,0.2);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.25rem;
  background: var(--gradient-primary);
  box-shadow: 0 8px 24px rgba(26,86,219,0.3);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid transparent;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

[data-theme="dark"] .testimonial-card {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}

.testimonial-card:hover {
  border-color: rgba(26,86,219,0.2);
  box-shadow: var(--card-shadow-hover);
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--royal-blue);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  overflow: hidden;
  border: 2px solid var(--royal-blue);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Gallery Preview ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-icon {
  color: white;
  font-size: 1.5rem;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -150px;
  right: -50px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-cta {
  background: var(--accent-gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta:hover {
  color: var(--navy);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(245,166,35,0.6);
}

/* ── About Section ── */
.about-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

[data-theme="dark"] .about-card {
  background: var(--navy-light);
}

.about-image-wrap {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.6;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--accent-gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: var(--silver);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

[data-theme="dark"] .objective-item {
  background: rgba(255,255,255,0.04);
}

.objective-item:hover {
  background: rgba(26,86,219,0.06);
}

.objective-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--royal-blue), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--royal-blue);
  border: 3px solid var(--accent-gold);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(26,86,219,0.2);
}

.timeline-content {
  width: 45%;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--silver-dark);
}

[data-theme="dark"] .timeline-content {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}

.timeline-item:nth-child(odd) .timeline-content { margin-right: 55%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 55%; }

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--royal-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ── Records Page ── */
.filter-bar {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

[data-theme="dark"] .filter-bar {
  background: var(--navy-light);
}

.filter-bar .form-control,
.filter-bar .form-select {
  border: 1.5px solid var(--silver-dark);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  transition: var(--transition);
}

[data-theme="dark"] .filter-bar .form-control,
[data-theme="dark"] .filter-bar .form-select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 0.2rem rgba(26,86,219,0.15);
}

/* ── Contact Page ── */
.contact-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

[data-theme="dark"] .contact-card {
  background: var(--navy-light);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  background: var(--silver);
  margin-bottom: 1rem;
  transition: var(--transition);
}

[data-theme="dark"] .contact-info-item {
  background: rgba(255,255,255,0.04);
}

.contact-info-item:hover {
  background: rgba(26,86,219,0.06);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-info-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ── Forms ── */
.form-group-custom label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-control-custom {
  border: 1.5px solid var(--silver-dark);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  background: var(--silver);
  color: var(--text-primary);
  transition: var(--transition);
  width: 100%;
}

[data-theme="dark"] .form-control-custom {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
  background: var(--white);
}

[data-theme="dark"] .form-control-custom:focus {
  background: rgba(255,255,255,0.1);
}

/* Multi-step Form */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--silver-dark);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(26,86,219,0.4);
}

.step-dot.completed {
  background: var(--accent-emerald);
  color: white;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--silver-dark);
  transition: var(--transition);
  max-width: 60px;
}

.step-line.active {
  background: var(--royal-blue);
}

.step-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 600;
}

.step-dot.active .step-label { color: var(--royal-blue); }

.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Breadcrumb ── */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0 2rem;
  margin-top: var(--navbar-height);
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--silver);
  clip-path: ellipse(55% 100% at 50% 100%);
}

[data-theme="dark"] .breadcrumb-section::after {
  background: var(--silver);
}

.breadcrumb-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
}

.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: var(--accent-gold); }
.breadcrumb-nav .separator { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: var(--accent-gold); font-weight: 600; }

/* ── Footer ── */
.footer {
  background: var(--gradient-hero);
  color: rgba(255,255,255,0.8);
  padding-top: 0;
  position: relative;
}

.footer-wave {
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: -1px;
}

.footer-site-name {
  font-weight: 800;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.social-btn:hover {
  background: var(--social-color, var(--royal-blue));
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-links a .bi { font-size: 0.7rem; }

.footer-contact {}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.footer-contact-item .bi {
  color: var(--accent-gold);
  margin-top: 2px;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--accent-gold); }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.footer-badge .bi {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.footer-badge strong {
  display: block;
  font-size: 0.85rem;
  color: white;
}

.footer-badge small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--accent-gold); }

/* ── Back To Top ── */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,86,219,0.5);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-4px); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  color: white;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: #25D366;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Toast ── */
.toast-custom {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: none;
  overflow: hidden;
  min-width: 300px;
}

[data-theme="dark"] .toast-custom {
  background: var(--navy-light);
}

.toast-custom .toast-header {
  border: none;
  padding: 0.6rem 1rem;
}

.toast-custom.toast-success .toast-header { background: rgba(16,185,129,0.1); color: var(--accent-emerald); }
.toast-custom.toast-error .toast-header { background: rgba(239,68,68,0.1); color: #ef4444; }
.toast-custom.toast-info .toast-header { background: rgba(26,86,219,0.1); color: var(--royal-blue); }

/* ── Animations ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,86,219,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(26,86,219,0); }
}

/* ── Masonry Gallery ── */
.masonry-grid {
  column-count: 4;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Buttons ── */
.btn-primary-custom {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,86,219,0.4);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ── Spotlight Card ── */
.spotlight-card {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.spotlight-card:hover { transform: translateY(-5px); }

.spotlight-card::before {
  content: '★';
  position: absolute;
  font-size: 8rem;
  color: rgba(255,255,255,0.04);
  right: -1rem;
  top: -1rem;
  font-family: serif;
}

.spotlight-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-avatar span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.spotlight-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.2rem; }
.spotlight-country { font-size: 0.8rem; opacity: 0.7; margin-bottom: 0.75rem; }
.spotlight-achievement { font-size: 0.85rem; opacity: 0.85; line-height: 1.6; }

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-gold);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* ── Utility ── */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.badge-category {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .masonry-grid { column-count: 3; }
  .gallery-grid { grid-template-rows: 180px 180px; }
}

@media (max-width: 991px) {
  .timeline::before { display: none; }
  .timeline-content { width: 100%; }
  .timeline-item:nth-child(odd) .timeline-content { margin-right: 0; }
  .timeline-item:nth-child(even) .timeline-content { margin-left: 0; }
  .timeline-dot { display: none; }
  .masonry-grid { column-count: 2; }
  .gallery-grid { display: flex; flex-wrap: wrap; }
  .gallery-item { flex: 1 1 45%; min-height: 180px; }
  .gallery-item:nth-child(1) { flex: 1 1 100%; height: 240px; }
  .hero-stats-strip { margin-top: 2rem; }
  .hero-stat { padding: 0.75rem; }
}

@media (max-width: 767px) {
  .hero-title { letter-spacing: -0.5px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stat-number { font-size: 1.5rem; }
  .masonry-grid { column-count: 2; }
  .gallery-item { flex: 1 1 100%; }
  .step-label { display: none; }
  .navbar-nav { padding: 1rem 0; gap: 0.5rem; }
  .brand-name { font-size: 0.9rem; }
  .brand-sub { font-size: 0.48rem; }
}

@media (max-width: 575px) {
  .masonry-grid { column-count: 1; }
  .record-card-img { height: 180px; }
}

/* ── Page-specific hero padding ── */
main { padding-top: 0; }

/* Ensure content below hero has proper background */
.main-content {
  background: var(--silver);
  transition: background-color 0.3s ease;
}

[data-theme="dark"] .main-content {
  background: var(--silver);
}

/* ── No Records Placeholder ── */
.no-records {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.no-records .no-records-icon {
  font-size: 4rem;
  opacity: 0.3;
  display: block;
  margin-bottom: 1rem;
}

/* ── Map Container ── */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-container iframe {
  display: block;
  filter: grayscale(20%);
  transition: var(--transition);
}

.map-container:hover iframe { filter: grayscale(0%); }

/* ── Record Detail ── */
.record-detail-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
}

.record-detail-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.record-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.record-meta-item {
  background: var(--silver);
  border-radius: var(--border-radius);
  padding: 1rem;
}

[data-theme="dark"] .record-meta-item {
  background: rgba(255,255,255,0.04);
}

.record-meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.record-meta-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-share:hover { transform: translateY(-2px); color: white; }
.btn-share.facebook { background: #1877F2; }
.btn-share.twitter { background: #000000; }
.btn-share.whatsapp { background: #25D366; }
.btn-share.linkedin { background: #0A66C2; }
.btn-share.copy { background: var(--royal-blue); }
