/* ==========================================================================
   BEACONFRIENDMX - CINEMATIC NATURE UI SYSTEM
   ========================================================================== */

/* Typography & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #071018;
  --bg-secondary: #0f172a;
  --bg-glass: rgba(15, 23, 42, 0.75);
  --bg-glass-heavy: rgba(7, 16, 24, 0.92);
  --accent-forest: #16a34a;
  --accent-aurora: #ff4500; /* Orange Red Theme Accent */
  --accent-warm: #ea580c;   /* Warm burnt orange red */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 69, 0, 0.25); /* Orange Red border glow */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

/* Aurora Backdrop Animations (Updated to Orange-Red glow) */
.aurora-glow {
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(22, 163, 74, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 40%, rgba(234, 88, 12, 0.03) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  animation: aurora-drift 25s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-3%, 4%) rotate(3deg); }
  100% { transform: translate(3%, -2%) rotate(-2deg); }
}

/* Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.header-nav.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-icon {
  color: var(--accent-aurora);
  display: flex;
  align-items: center;
}

.logo-text span {
  color: var(--accent-aurora);
}

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

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

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-aurora);
  transition: var(--transition-smooth);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent-forest), #15803d);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
  color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* IMPROVED HERO SECTION LAYOUT */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10rem 2rem 8rem;
  background-color: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slow-zoom 20s ease-out infinite alternate;
}

@keyframes slow-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

/* Improved cinematic overlay transitions for superior readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 16, 24, 0.4) 0%,
    rgba(7, 16, 24, 0.7) 40%,
    rgba(7, 16, 24, 0.9) 85%,
    var(--bg-primary) 100%
  );
  z-index: 2;
}

/* Premium blurred backplate to completely isolate the content and make it legible over any image */
.hero-content {
  position: relative;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
  padding: 3.5rem;
  border-radius: 24px;
  background: radial-gradient(
    circle at center,
    rgba(15, 23, 42, 0.5) 0%,
    rgba(7, 16, 24, 0.15) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: hero-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Elevated visual badge design */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 69, 0, 0.12);
  border: 1px solid rgba(255, 69, 0, 0.3);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffa480;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.1);
  transition: var(--transition-smooth);
}

.hero-badge:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: rgba(255, 69, 0, 0.5);
  box-shadow: 0 4px 25px rgba(255, 69, 0, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  background: linear-gradient(135deg, #ffffff 30%, #f1f5f9 70%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 740px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Cinematic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-aurora), #c2410c);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-aurora);
  transform: translateY(-3px);
}

/* Floating Info Cards (Home Hero) */
.hero-floating-cards {
  max-width: var(--max-width);
  margin: -5rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.floating-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-aurora), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.floating-card:hover::before {
  transform: translateX(100%);
}

.floating-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
}

.floating-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 69, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-aurora);
  margin-bottom: 1.25rem;
}

.floating-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

/* Sections Layout */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--accent-aurora);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(7, 16, 24, 0.85);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 2rem;
}

.card-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.card:hover h3 {
  color: var(--accent-aurora);
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-aurora);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-btn svg {
  transition: transform 0.3s ease;
}

.card:hover .card-btn svg {
  transform: translateX(5px);
}

/* Cinematic Feature Grid (Alternative Layout) */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.split-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 16, 24, 0.6) 0%, transparent 100%);
}

.split-content {
  padding: 2rem 0;
}

.stat-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-aurora);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Activity Quick Grid (Featured Icons) */
.quick-activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.activity-badge {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.activity-badge:hover {
  transform: translateY(-5px);
  border-color: var(--accent-aurora);
  background: rgba(255, 69, 0, 0.05);
}

.activity-badge h4 {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Lightbox & Gallery System */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-aurora);
  border-color: var(--accent-aurora);
  color: #071018;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,16,24,0.95) 0%, rgba(7,16,24,0.3) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

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

.gallery-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--accent-aurora);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dynamic Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 24, 0.98);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
  color: var(--text-primary);
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--accent-aurora);
  color: #000;
}

/* Contact Page Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-card-icon {
  background: rgba(255, 69, 0, 0.1);
  color: var(--accent-aurora);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card-content p, .contact-card-content a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Premium Forms */
.contact-form-panel {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(7, 16, 24, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-aurora);
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.15);
  background: rgba(7, 16, 24, 0.95);
}

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

/* FAQ Accordion Styling */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.faq-trigger svg {
  color: var(--accent-aurora);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(7, 16, 24, 0.4);
}

.faq-content-inner {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Inner Legal Layouts (Privacy, Terms, Cookies) */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  display: block;
}

.legal-rich-text h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-rich-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.legal-rich-text ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-rich-text li {
  margin-bottom: 0.5rem;
}

/* Premium Footer */
.footer {
  background: #04090e;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--accent-aurora);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

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

.footer-legal-links a:hover {
  color: var(--accent-aurora);
}

/* Animations / Scroll Effects */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Overrides */
@media (max-width: 1024px) {
  .split-feature {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2.25rem 1.5rem;
    margin: 0 1rem;
    border-radius: 16px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-light);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1010;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .quick-activities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quick-activities {
    grid-template-columns: 1fr;
  }
}