/* ===================================
   NDANI MEDIA - PREMIUM DARK THEME
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Variables for Ndani Signature Theme */
:root {
  --primary-color: #0ea5e9;
  --primary-glow: rgba(14, 165, 233, 0.2);
  --secondary-color: #f97316;
  --secondary-glow: rgba(249, 115, 22, 0.2);
  --accent-color: #22c55e;
  --accent-glow: rgba(34, 197, 94, 0.18);
  --bg-dark: #0b1020;
  --bg-darker: #0f172a;
  --bg-card: #111827;
  --bg-glass: rgba(15, 23, 42, 0.7);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #1f2937;
  --border-glow: rgba(14, 165, 233, 0.12);
  --success-color: #22c55e;
  --error-color: #ef4444;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(2, 6, 23, 0.4);
  --shadow-md: 0 10px 30px rgba(2, 6, 23, 0.35);
  --shadow-lg: 0 25px 50px rgba(2, 6, 23, 0.45);
  --shadow-glow: 0 0 0 1px var(--border-color);
}

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

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

body {
  font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, #111a2f 0%, #0b1020 45%, #090c16 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background Pattern - Removed for clean look */

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', 'Space Grotesk', serif;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--secondary-color);
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Wider desktop layout for content-heavy pages without affecting mobile */
.wide-layout .container {
  max-width: 1440px;
}

/* Header & Navigation - Simple, Professional, Classic */
header {
  background: rgba(11, 16, 32, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.4);
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
}

.site-logo {
  height: 44px;
  width: auto;
  display: block;
}

.logo-text-fallback {
  display: inline;
}

.logo:hover {
  color: var(--primary-color);
}

.logo span {
  color: var(--primary-color);
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

@media (max-width: 1100px) and (min-width: 769px) {
  nav a {
    font-size: 0.88rem;
    padding: 0.6rem 0.75rem;
  }
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--text-primary);
}

nav a:hover::after {
  width: 60%;
}

nav a.active {
  color: var(--primary-color);
}

nav a.active::after {
  width: 60%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0b1020 0%, #111b31 55%, #0b1020 100%);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero {
  position: relative;
  isolation: isolate;
  background-color: #111b31;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::before {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 50%, var(--primary-glow) 0%, transparent 25%),
    radial-gradient(circle at 70% 50%, var(--secondary-glow) 0%, transparent 25%);
  animation: heroGlow 15s ease-in-out infinite;
  pointer-events: none;
}

.hero.page-hero::before {
  display: none;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10%, 10%) rotate(180deg); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
  box-shadow: 0 0 20px var(--primary-glow);
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 24px var(--primary-glow);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleFloat 3s ease-in-out infinite;
  text-shadow: 0 0 40px var(--primary-glow);
  letter-spacing: -1px;
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-subtitle {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-darker);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-darker);
  border-color: transparent;
  box-shadow: 0 8px 25px var(--primary-glow);
  transform: translateY(-4px);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: 0 0 15px var(--primary-glow);
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% { box-shadow: 0 0 15px var(--primary-glow); }
  50% { box-shadow: 0 0 25px var(--primary-glow); }
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Premium Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px var(--primary-glow), 0 0 30px var(--border-glow);
}

.card:hover::before {
  opacity: 0.05;
}

.card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: visible;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  background-color: var(--bg-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background-color: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.blog-image {
  width: 100%;
  height: 200px;
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-category {
  background-color: var(--primary-color);
  color: var(--bg-darker);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card h3 {
  margin-bottom: 1rem;
}

.blog-card p {
  margin-bottom: 1rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 1rem;
  transition: var(--transition);
}

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

.form-group select option {
  color: #0b1020;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Radio Player */
.radio-player {
  background-color: var(--bg-card);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border-color);
  margin: 2rem 0;
}

.radio-player audio {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 50px;
}

/* Premium Footer - 2026 Modern Design */
footer {
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0.95) 0%, 
    rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 4rem 0 0;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 25%, 
    var(--secondary-color) 50%, 
    var(--accent-color) 75%, 
    transparent 100%);
  box-shadow: 0 0 30px var(--primary-glow);
  animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section {
  position: relative;
}

.footer-section h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.2rem;
}

.footer-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-section ul li:hover::before {
  left: 5px;
  color: var(--secondary-color);
}

.footer-section a {
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* ===================================
   Refinements: Buttons, Cards, Footer
   =================================== */

/* Buttons: sharper gradient + clearer focus */
.btn {
  border-radius: 14px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%);
  color: #0b1020;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25), 0 6px 18px rgba(34, 197, 94, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.35), 0 10px 22px rgba(34, 197, 94, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.6);
  color: var(--text-primary);
}

.btn:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.6);
  outline-offset: 2px;
}

.nomination-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 1rem 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition);
}

.nomination-btn:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.6);
  color: var(--text-primary);
}

/* Cards: lift, subtle inner glow */
.card {
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.95), rgba(11, 16, 32, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.5);
}

.card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.55), 0 0 0 1px rgba(14, 165, 233, 0.25);
}

.card h3 {
  color: var(--text-primary);
}

.card p,
.service-card p {
  color: var(--text-secondary);
}

/* Section accents */
section:nth-of-type(odd) {
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 45%);
}

section:nth-of-type(even) {
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 45%);
}

/* Footer: stronger separation + link clarity */
footer {
  background: linear-gradient(180deg, #0b1020 0%, #070a12 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-section h3 {
  color: var(--text-primary);
}

.footer-section a {
  color: var(--text-secondary);
}

.footer-section a:hover {
  color: var(--primary-color);
}

/* Status message clarity (voting pages) */
.status-message {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
    rgba(0, 212, 255, 0.1), 
    rgba(255, 107, 53, 0.1));
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-size: 1.3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition);
}

.social-links a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.social-links a:hover::after {
  width: 100px;
  height: 100px;
}

.social-links a:hover {
  transform: translateY(-8px) rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px var(--primary-glow);
  border-color: var(--primary-color);
}

.social-links a:hover::before {
  opacity: 0.2;
}

.social-icon-holder {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-bottom p {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-bottom p::before {
  content: '© ';
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wide-layout .container {
    max-width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  nav.active {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
  }

  nav a {
    display: block;
    padding: 1rem 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }

  .card-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 0;
  }
}

/* Team Page Styles */
.team-card {
  text-align: center;
}

.team-photo {
  margin-bottom: 1.5rem;
}

.photo-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 3px solid rgba(0, 212, 255, 0.3);
  transition: var(--transition);
}

.team-card:hover .photo-placeholder {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px var(--primary-glow);
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--primary-glow);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Premium Animations */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(30px) scale(0.95);
    filter: blur(5px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  z-index: 9999;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: width 0.1s ease;
}

/* Floating Particles Effect */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary-glow);
}
