/* ORAM MEDIA DYNAMICS – aligned with Oram Casting Agency brand */
:root {
  --bg-dark: #0a0a0a;
  --bg-card: rgba(16, 16, 22, 0.72);
  /* Logo swoosh palette */
  --purple: #5c2d91;
  --magenta: #e91e8c;
  --navy: #1a3a6b;
  --cyan: #00b4d8;
  --green: #2d6b3a;
  --orange: #f5a623;
  --accent: var(--cyan);
  --accent-warm: var(--magenta);
  --accent-light: #5fd4f0;
  --accent-dim: rgba(0, 180, 216, 0.22);
  --gold: var(--cyan);
  --gold-light: var(--accent-light);
  --gold-dim: var(--accent-dim);
  --text: #f4f4f6;
  --text-muted: #9ca3af;
  --glass-border: rgba(0, 180, 216, 0.18);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Caveat', cursive;
  --nav-height: 84px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-brand: 0 0 48px rgba(233, 30, 140, 0.12), 0 0 32px rgba(0, 180, 216, 0.1);
  --gradient-brand: linear-gradient(120deg, var(--purple) 0%, var(--magenta) 35%, var(--cyan) 70%, var(--orange) 100%);
  --gradient-btn: linear-gradient(115deg, #6b2d9e, #d63384, #0096c7);
  --shadow-gold: var(--shadow-brand);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body.page-loaded {
  animation: pageFadeIn 0.8s ease forwards;
}

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

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, -1%); }
  50% { transform: translate(1%, 2%); }
  75% { transform: translate(-1%, 1%); }
}

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

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

a:hover {
  color: var(--gold-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ========== NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.15;
}

.logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  line-height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  min-width: 48px;
  min-height: 40px;
}

.logo-mark--footer {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.site-logo {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 50px;
  height: auto;
  object-fit: contain;
}

.site-logo--footer {
  max-height: 56px;
  max-width: 180px;
}

.logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d4af37;
  padding: 0.35rem 0.5rem;
}

.logo-mark.is-fallback .site-logo {
  display: none;
}

.logo-mark.is-fallback .logo-fallback {
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: -2px;
}

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

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition);
}

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

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

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.3), 0 4px 20px rgba(0, 180, 216, 0.25);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid rgba(0, 180, 216, 0.5);
}

.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--magenta);
  color: #fff;
}

/* ========== GLASS CARDS ========== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: var(--shadow-brand);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    #0a0a0a 0%,
    #12081a 22%,
    #0a1220 45%,
    #081510 68%,
    #0a0a0a 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.hero-light::before,
.hero-light::after {
  content: '';
  position: absolute;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: lightMove 12s ease-in-out infinite;
}

.hero-light::before {
  top: -8%;
  left: -5%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.45) 0%, transparent 68%);
}

.hero-light::after {
  top: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 68%);
  animation-delay: -4s;
}

.hero-light .orb-green {
  position: absolute;
  bottom: -5%;
  left: 25%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 107, 58, 0.35) 0%, rgba(245, 166, 35, 0.2) 50%, transparent 70%);
  animation: lightMove 12s ease-in-out infinite;
  animation-delay: -8s;
}

@keyframes lightMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8%, 5%) scale(1.1); }
  66% { transform: translate(-5%, 8%) scale(0.95); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid var(--accent-dim);
  border-radius: 50px;
  background: rgba(0, 180, 216, 0.06);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(100deg, #fff 20%, var(--accent-light) 55%, var(--magenta) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-page {
  min-height: 55vh;
  padding-bottom: 4rem;
}

.hero-page .hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ========== NEWS BANNER ========== */
.news-banner {
  background: linear-gradient(90deg, rgba(92, 45, 145, 0.2), rgba(0, 180, 216, 0.08), rgba(233, 30, 140, 0.15));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 0;
  text-align: center;
}

.news-banner a {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.news-banner i {
  margin-right: 0.5rem;
  color: var(--gold);
}

/* ========== SECTIONS ========== */
section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-header h2 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}

.gold-line,
.accent-line {
  width: 72px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.06), transparent);
  border-block: 1px solid var(--glass-border);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ========== PROJECT CAROUSEL / GRID ========== */
.projects-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid var(--glass-border);
}

.project-card-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0, 180, 216, 0.25);
  background: linear-gradient(160deg, #14101c 0%, #0a1018 50%, #0a0a0a 100%);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background var(--transition);
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.project-card .platform {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Full portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-card .card-visual {
  aspect-ratio: 16/9;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(145deg, #1a1028, #0a1420, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(0, 180, 216, 0.28);
  border: 1px solid var(--glass-border);
  border-bottom: none;
  position: relative;
}

.portfolio-card .card-body {
  flex: 1;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--glass-border);
  border-top: none;
  padding: 1.5rem;
  background: var(--bg-card);
}

.portfolio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.portfolio-card .platform-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.badge-production {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulseBadge 2s ease infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.profile-frame {
  position: relative;
  max-width: 380px;
  width: 100%;
  margin-inline: auto;
  border-radius: 10px;
  padding: 6px;
  background: linear-gradient(145deg, #d4af37 0%, #f0d78c 35%, #b8941f 70%, #d4af37 100%);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25), var(--shadow-brand);
}

.profile-inner {
  width: 100%;
  border-radius: 6px;
  background: #0a0a0a;
  overflow: hidden;
}

.profile-inner--photo {
  position: relative;
  aspect-ratio: 3/4;
  min-height: 320px;
}

.ceo-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  vertical-align: middle;
}

.ceo-photo.is-hidden {
  display: none;
}

.ceo-photo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  aspect-ratio: 3/4;
  min-height: 320px;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, #1a1815 0%, #0a0a0a 100%);
}

.ceo-photo-fallback.is-visible {
  display: flex;
}

.ceo-photo-fallback i {
  font-size: 3.5rem;
  color: #d4af37;
  opacity: 0.85;
}

.ceo-photo-fallback span {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

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

.structure-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.mission-block {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 180, 216, 0.05), transparent);
  border-block: 1px solid var(--glass-border);
}

.mission-block blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--accent-light);
  max-width: 800px;
  margin-inline: auto;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--gold-dim);
  margin-top: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  margin-left: -7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

/* ========== ACADEMY ========== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.program-card {
  text-align: center;
  padding: 2rem;
}

.program-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.program-card h3 {
  margin-bottom: 0.75rem;
}

.casting-box {
  margin-top: 3rem;
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(92, 45, 145, 0.15), rgba(0, 180, 216, 0.06), rgba(10, 10, 10, 0.85));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.casting-box .contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-list i {
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: 0.2rem;
  width: 24px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

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

.map-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 21/9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}

.facebook-promo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: 8px;
  transition: all var(--transition);
}

.facebook-promo:hover {
  background: rgba(24, 119, 242, 0.18);
  transform: translateX(4px);
}

.facebook-promo i {
  font-size: 2rem;
  color: #1877f2;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-main {
  font-size: 1rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-btn);
  color: #fff;
  border-color: transparent;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.lazy-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lazy-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid var(--glass-border);
    padding: 2rem;
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .logo-text {
    display: none;
  }

  .site-logo {
    max-height: 40px;
    max-width: 120px;
  }

  .site-logo--footer {
    max-height: 44px;
  }
}
