/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --bg-primary: #06060f;
  --bg-secondary: #0d0d1a;
  --bg-card: #111120;
  --bg-card-hover: #1a1a2e;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);

  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --accent-amber: #d97706;
  --accent-orange: #ea580c;
  --accent-purple: #7c3aed;
  --accent-blue: #3b82f6;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 40px rgba(245,158,11,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===========================
   Particle Canvas
   =========================== */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 6, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.5));
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.3));
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 20px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.4);
}

.nav-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta-yt {
  background: rgba(239, 68, 68, 0.95) !important;
  color: #fff !important;
  border: none;
}

.nav-cta-yt:hover {
  background: #ef4444 !important;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4) !important;
}

.btn-yt-hero {
  background: rgba(239, 68, 68, 0.12);
  color: #fff !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: blur(10px);
}

.btn-yt-hero:hover {
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.7) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 30px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.road-container {
  display: none;
}

.road-svg {
  display: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(245,158,11,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(124,58,237,0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,6,15,0.55) 0%, rgba(6,6,15,0.55) 40%, rgba(6,6,15,0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px 90px 24px;
  margin: auto 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-gold-light);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
  display: block;
  letter-spacing: -2px;
}

.title-line.accent {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(245,158,11,0.3));
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-gold-light);
  line-height: 1;
}

.stat-plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold-light);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.2s both;
  pointer-events: none;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(245, 158, 11, 0.95);
  border-bottom: 2px solid rgba(245, 158, 11, 0.95);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.scroll-indicator span {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245,158,11,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid rgba(245,158,11,0.4);
  padding: 12px 36px;
}

.btn-outline:hover {
  background: rgba(245,158,11,0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===========================
   About Section
   =========================== */
.about-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0), transparent);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(245,158,11,0.2);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.about-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.about-card.featured {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(217,119,6,0.05));
  border-color: rgba(245,158,11,0.2);
  transform: scale(1.03);
}

.about-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.about-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(245,158,11,0.3));
}

.about-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.about-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ===========================
   Videos Section
   =========================== */
.videos-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
  color: var(--accent-gold-light);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Video Card */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,0.25);
  box-shadow: var(--shadow-card), 0 0 30px rgba(245,158,11,0.1);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

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

.video-card:hover .video-thumbnail img {
  transform: scale(1.06);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245,158,11,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.video-card:hover .play-btn-circle {
  transform: scale(1);
  box-shadow: 0 0 30px rgba(245,158,11,0.5);
}

.play-btn-circle svg {
  color: #000;
  margin-left: 3px;
}

.video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(6,6,15,0.8);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.video-tag.tag-youtube {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.video-tag.tag-video {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.4);
  color: #a78bfa;
}

.video-tag.tag-image {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 8px;
  background: rgba(0,0,0,0.8);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.video-info {
  padding: 20px;
}

.video-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.video-views, .video-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.load-more-container {
  text-align: center;
}

/* ===========================
   Instagram Section
   =========================== */
.instagram-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(217,119,6,0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ig-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(220,39,67,0.3);
}

.instagram-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.instagram-header p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 4px;
}

.instagram-header .btn {
  margin-left: auto;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 300px;
  font-family: var(--font-display);
  color: rgba(245,158,11,0.03);
  line-height: 1;
  pointer-events: none;
}

.quote-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto 40px;
  min-height: 120px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.quote-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.3);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

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

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.2));
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--text-secondary);
}

.contact-item a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(245,158,11,0.4);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.08);
}

.form-success {
  display: none;
  padding: 14px 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  color: #4ade80;
  font-size: 14px;
  font-weight: 500;
}

.form-success.show {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo-icon {
  font-size: 28px;
}

.footer-brand .logo-text {
  font-size: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  width: 100%;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===========================
   Modal
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.modal-content {
  padding: 40px;
}

.modal-media-container {
  width: 100%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.modal-media-container video,
.modal-media-container img {
  width: 100%;
  max-height: 55vh;
  object-fit: contain;
  display: block;
}

.modal-media-container.youtube-embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  display: block; /* Override flex */
}

.modal-media-container.youtube-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-tag {
  padding: 4px 14px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent-gold);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(6,6,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 18px; padding: 12px 16px; }
  .nav-cta { display: none; }
  .nav-ctas { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-card.featured { transform: none; }
  .about-card.featured:hover { transform: translateY(-8px); }

  .videos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .instagram-header { flex-direction: column; text-align: center; }
  .instagram-header .btn { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 28px; }
  .modal-content { padding: 24px; }
}

/* Recent Blog Section */
.recent-blog-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border);
}

.recent-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* ===========================
   Social Media Banners & Row
   =========================== */
.banners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.youtube-banner, .instagram-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.youtube-banner:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.05);
}

.instagram-banner:hover {
  border-color: rgba(220, 39, 67, 0.4);
  box-shadow: 0 8px 30px rgba(220, 39, 67, 0.05);
}

.youtube-banner {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
  border-color: rgba(239, 68, 68, 0.2);
}

.instagram-banner {
  background: linear-gradient(135deg, rgba(220, 39, 67, 0.08), rgba(220, 39, 67, 0.03));
  border-color: rgba(220, 39, 67, 0.2);
}

.yt-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-info {
  flex-grow: 1;
}

.banner-info h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.banner-info p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.btn-yt {
  background: #ff0000;
  color: white !important;
  border: none;
}

.btn-yt:hover {
  background: #cc0000;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.instagram-banner .btn-primary {
  background: linear-gradient(135deg, #e6683c, #dc2743);
  color: white;
}

.instagram-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

/* Card Circular Media Badges */
.media-icon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.media-icon-badge.youtube-badge {
  background: rgba(239, 68, 68, 0.9);
}

.media-icon-badge.instagram-badge {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.9), rgba(220, 39, 67, 0.9), rgba(188, 24, 136, 0.9));
}

/* Responsive layout */
@media (max-width: 992px) {
  .banners-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .youtube-banner, .instagram-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 12px;
  }
  .youtube-banner .btn, .instagram-banner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================
   Admin Dashboard & CMS Panel
   =========================== */
.admin-body {
  background: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.admin-card {
  width: 100%;
  max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.admin-login-card {
  max-width: 420px;
  text-align: center;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .admin-row-2 {
    grid-template-columns: 1fr;
  }
}
