/* ============================================
   JUDO CALDENSE - Estilo Completo
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --white: #ffffff;
  --dark-blue: #0a1628;
  --medium-blue: #0f2240;
  --black: #111111;
  --gold: #c9a84c;
  --gold-light: #e4c76a;
  --gold-dark: #a8862e;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --red-judo: #dc3545;
  --green-whatsapp: #25D366;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 5px 25px rgba(201, 168, 76, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- Dark Mode Variables ---- */
[data-theme="dark"] {
  --white: #1a1a2e;
  --dark-blue: #e4e4e4;
  --medium-blue: #16213e;
  --black: #f0f0f0;
  --gray-100: #16213e;
  --gray-200: #1a1a2e;
  --gray-300: #2a2a4a;
  --gray-400: #4a4a6a;
  --gray-500: #8a8a9a;
  --gray-600: #aaaaba;
  --gray-700: #c0c0d0;
  --gray-800: #d0d0e0;
  --gray-900: #e8e8f0;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.5);
}

/* ---- Reset & Base ---- */
*, *::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(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition-medium), color var(--transition-medium);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  transition: color var(--transition-medium);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

.gold-text {
  color: var(--gold);
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  color: var(--gold);
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: var(--dark-blue);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.6) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: var(--font-primary);
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark-blue);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--green-whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---- History Timeline ---- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  top: 0;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 30px 0;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  align-self: flex-start;
  justify-content: flex-start;
  margin-left: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-end;
  margin-left: 0;
  padding-right: 50px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.timeline-content {
  background: var(--gray-100);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 420px;
  position: relative;
  border-left: 3px solid var(--gold);
  transition: all var(--transition-fast);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-blue);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}

.timeline-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline-wrapper {
  display: flex;
  flex-direction: column;
}

/* ---- Founder Section ---- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-medium);
}

.founder-image-wrapper:hover img {
  transform: scale(1.02);
}

.founder-image-wrapper::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.founder-info h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.founder-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.founder-life {
  display: flex;
  gap: 20px;
  margin: 15px 0 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.founder-life span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.founder-life i {
  color: var(--gold);
}

.founder-bio {
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.founder-stat {
  background: var(--gray-100);
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.founder-stat:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.founder-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  font-family: var(--font-secondary);
}

.founder-stat .label {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Principles ---- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.principle-card {
  background: var(--gray-100);
  padding: 35px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.principle-card:hover::before {
  transform: scaleX(1);
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.principle-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.principle-card:hover .principle-icon {
  background: var(--gold);
  color: var(--white);
}

.principle-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.principle-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.principle-jp {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

/* ---- Rules Section ---- */
.rules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.rule-card {
  display: flex;
  gap: 20px;
  background: var(--gray-100);
  padding: 25px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
  align-items: flex-start;
}

.rule-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.rule-icon {
  min-width: 55px;
  height: 55px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.rule-content h3 {
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.rule-content p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

.rule-highlight {
  background: var(--gold);
  color: var(--dark-blue);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- Techniques ---- */
.techniques-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tech-btn {
  padding: 10px 25px;
  border: 2px solid var(--gray-300);
  background: transparent;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
  color: var(--gray-700);
}

.tech-btn:hover,
.tech-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark-blue);
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.tech-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tech-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all var(--transition-medium);
}

.tech-card:hover .tech-card-image {
  transform: scale(1.05);
}

.tech-card-body {
  padding: 20px;
}

.tech-card-body h3 {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.tech-card-body .tech-jp {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-family: var(--font-primary);
}

.tech-card-body p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Belts Section ---- */
.belts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.belt-card {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
}

.belt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.belt-color-bar {
  width: 40px;
  min-height: 100%;
  flex-shrink: 0;
}

.belt-info {
  padding: 20px;
  flex: 1;
}

.belt-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.belt-info .belt-level {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
  font-family: var(--font-primary);
}

.belt-info p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- Competitions ---- */
.competitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.competition-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
}

.competition-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.competition-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.competition-body {
  padding: 25px;
}

.competition-body h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.competition-body .comp-organizer {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
  font-family: var(--font-primary);
}

.competition-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- News Section ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-body {
  padding: 20px;
}

.news-date {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.news-body h3 {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.news-body p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.news-link:hover {
  gap: 10px;
  color: var(--gold-dark);
}

/* ---- Gallery Section ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-fast);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  padding: 20px;
  transition: all var(--transition-fast);
  background: none;
  border: none;
}

.lightbox-nav:hover {
  color: var(--gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ---- FAQ Accordion ---- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
  background: var(--gray-100);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
  gap: 15px;
}

.faq-question i {
  color: var(--gold);
  transition: all var(--transition-fast);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-100);
  padding: 20px 25px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 3px;
}

.contact-info-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--gray-100);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  background: var(--white);
  color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red-judo);
}

.error-message {
  color: var(--red-judo);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* ---- Contact Method Selector ---- */
.contact-method-selector {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.method-option {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}

.method-option input[type="radio"] {
  display: none;
}

.method-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
  background: var(--white);
}

.method-option input[type="radio"]:checked + .method-label {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--dark-blue);
}

.method-option input[type="radio"]:checked + .method-label i.fa-whatsapp {
  color: var(--green-whatsapp);
}

.method-option input[type="radio"]:checked + .method-label i.fa-envelope {
  color: var(--gold);
}

.method-label i {
  font-size: 1.3rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.method-option:hover .method-label {
  border-color: var(--gold);
}

/* ---- Info Card ---- */
.info-card {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.info-card h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.info-card .info-role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-family: var(--font-primary);
}

.info-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.info-detail i {
  color: var(--gold);
  font-size: 1.3rem;
  width: 24px;
}

.info-card .btn {
  margin-top: 15px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark-blue);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-contact i {
  color: var(--gold);
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark-blue);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ---- Dark Mode Toggle ---- */
.theme-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
}

.theme-toggle:hover {
  color: var(--gold);
}

/* ---- Search ---- */
.search-box {
  position: relative;
}

.search-box input {
  padding: 8px 15px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.85rem;
  width: 200px;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.5);
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold);
  width: 250px;
  background: rgba(255,255,255,0.15);
}

.search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 0.9rem;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  margin-top: 10px;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-result-item:hover {
  background: var(--gray-100);
}

.search-result-item h4 {
  font-size: 0.95rem;
  color: var(--dark-blue);
  margin-bottom: 3px;
}

.search-result-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---- Counter Section ---- */
.counters-section {
  background: var(--dark-blue);
  padding: 80px 0;
  color: var(--white);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item .counter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-secondary);
}

.counter-item .counter-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Image Slider ---- */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider-slide {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--dark-blue);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: -1;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slider-slide {
    height: 350px;
  }
  
  .search-box input {
    width: 150px;
  }
  
  .search-box input:focus {
    width: 180px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .founder-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .founder-stat .number {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .counter-item .counter {
    font-size: 2rem;
  }
  
  .slider-slide {
    height: 250px;
  }
  
  .info-card {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 25px;
  }
}

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ---- Selection ---- */
::selection {
  background: var(--gold);
  color: var(--dark-blue);
}

/* ---- Section Backgrounds ---- */
.bg-light {
  background: var(--gray-100);
}

.bg-dark-section {
  background: var(--dark-blue);
  color: var(--white);
}

.bg-dark-section .section-title {
  color: var(--white);
}

.bg-dark-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* ---- Hero Pattern (no image) ---- */
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(10, 22, 40, 0.9) 0%, transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #0f2240 40%, #0a1628 100%);
}

.hero-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.03) 40px,
      rgba(201, 168, 76, 0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.03) 40px,
      rgba(201, 168, 76, 0.03) 41px
    );
}

.hero-pattern::after {
  content: '柔';
  position: absolute;
  bottom: -100px;
  right: -50px;
  font-size: 500px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

/* ---- Founder Visual Placeholder ---- */
.founder-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-silhouette {
  font-size: 8rem;
  color: rgba(201, 168, 76, 0.2);
  z-index: 2;
}

.founder-visual-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-blue);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
  font-family: var(--font-primary);
  letter-spacing: 1px;
}

.founder-visual-pattern {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.founder-visual-pattern::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: calc(var(--radius-lg) - 10px);
}

/* ---- Tech Card Visual (no image) ---- */
.tech-card-visual {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.tech-card-visual i {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.15);
  z-index: 2;
}

.tech-visual-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  font-family: var(--font-primary);
}

.tech-card-visual::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---- Competition Visual (no image) ---- */
.competition-visual {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.competition-visual i {
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  z-index: 2;
}

.competition-visual span {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 2;
  font-family: var(--font-primary);
}

.competition-visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---- News Visual (no image) ---- */
.news-visual {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.news-visual i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
}

.news-visual span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

/* ---- Gallery Visual (no image) ---- */
.gallery-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.gallery-visual i {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.2);
  transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-visual i {
  transform: scale(1.2);
  color: rgba(255,255,255,0.4);
}

/* ---- Lightbox Visual (no image) ---- */
.lightbox-visual {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-visual i {
  font-size: 12rem;
  color: rgba(201, 168, 76, 0.3);
}

/* ---- Particles overlay (hero) ---- */
.particles-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  50% { transform: translateY(-100px) scale(1.5); opacity: 1; }
}
