/* ============================================================
   MILCOMTEC.COM — Design System & Custom Stylesheet
   Premium Holding Evolution, Timeline & Verticals
   ============================================================ */

:root {
  /* Colors */
  --bg-primary: #030712;      /* Deepest Slate */
  --bg-secondary: #0b1528;    /* Dark Navy */
  --primary: #0ea5e9;         /* Vibrant Cyan */
  --primary-glow: rgba(14, 165, 233, 0.15);
  --accent-gold: #f59e0b;     /* Gold representing growth/heritage */
  --accent-gold-glow: rgba(245, 158, 11, 0.15);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(14, 165, 233, 0.3);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Fonts */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', var(--font-primary);
  
  /* Layout & Animations */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

/* Base resets & scrollbar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ============================================================
   TYPOGRAPHY & BUTTONS
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}

.section-label-gold {
  color: var(--accent-gold);
}
.section-label-gold::before,
.section-label-gold::after {
  background: var(--accent-gold);
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  color: #030712;
  font-weight: 700;
  box-shadow: 0 4px 25px rgba(14, 165, 233, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(14, 165, 233, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
  color: #030712;
  font-weight: 700;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glass);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.05);
  transform: translateY(-3px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: #030712;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.nav-brand .brand-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-brand .brand-text span {
  color: var(--accent-gold);
  font-weight: 500;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
  color: #030712 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.35) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.hero-badge .pulse-gold {
  width: 7px;
  height: 7px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-gold); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 3rem;
}

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

/* Glassmorphic Badge of Stats */
.hero-stats-panel {
  background: rgba(11, 21, 40, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-stats-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
}

.stat-item {
  margin-bottom: 2rem;
}
.stat-item:last-child {
  margin-bottom: 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-title);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.stat-number span.plus {
  color: var(--primary);
}
.stat-number span.gold-plus {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ============================================================
   TRANSFORMATION HUB & VERTICALS
   ============================================================ */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .verticals-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.vertical-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.vertical-card.gold-border::before {
  background: var(--accent-gold);
}

.vertical-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 45px rgba(14, 165, 233, 0.12);
}

.vertical-card.gold-border:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 45px rgba(245, 158, 11, 0.12);
}

.vertical-card:hover::before {
  opacity: 1;
}

.vertical-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.vertical-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.vertical-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.vertical-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.vertical-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
}

.vertical-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.vertical-card.gold-border .vertical-link {
  color: var(--accent-gold);
}

.vertical-link:hover {
  transform: translateX(5px);
}

/* ============================================================
   MISSION & VISION & OBJECTIVES
   ============================================================ */
.about-section {
  background: rgba(11, 21, 40, 0.25);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.about-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-inline-card {
  background: rgba(11, 21, 40, 0.35);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-inline-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-inline-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.objectives-list {
  list-style: none;
  margin-top: 1rem;
}
.objectives-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}
.objectives-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================================
   TIMELINE OF SUCCESS CASES (INTERACTIVE)
   ============================================================ */
.timeline-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.timeline-filter-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.timeline-filter-btn:hover,
.timeline-filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #030712;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

/* Vertical Timeline Layout */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent-gold) 50%, var(--border-glass) 100%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-back {
    border-left: none;
    padding-left: 0 !important;
    margin-left: 0;
  }
  .timeline-container::before {
    left: 2rem;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 4.5rem;
  width: 100%;
}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::after {
  content: '';
  display: table;
  clear: both;
}

.timeline-badge {
  position: absolute;
  top: 2.25rem;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--primary);
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all var(--transition-base);
}

.timeline-item.gold-node .timeline-badge {
  border-color: var(--accent-gold);
}

.timeline-item:hover .timeline-badge {
  transform: translate(-50%, -50%) scale(1.35);
  box-shadow: 0 0 15px var(--primary);
}

.timeline-item.gold-node:hover .timeline-badge {
  box-shadow: 0 0 15px var(--accent-gold);
}

@media (max-width: 768px) {
  .timeline-badge {
    left: 2rem;
  }
}

.timeline-card {
  position: relative;
  width: 45%;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-slow);
}

.timeline-item:nth-child(even) .timeline-card {
  float: right;
}

.timeline-item:nth-child(odd) .timeline-card {
  float: left;
}

@media (max-width: 768px) {
  .timeline-card {
    width: calc(100% - 4rem);
    float: right !important;
  }
}

.timeline-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-cyan);
}

.timeline-item.gold-node .timeline-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08);
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-item.gold-node .timeline-year {
  color: var(--accent-gold);
}

.timeline-client {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-item.hidden {
  display: none;
}

/* ============================================================
   CONTACT / TRANSITION FORM
   ============================================================ */
.contact-box {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel {
  background: rgba(14, 165, 233, 0.02);
  border-right: 1px solid var(--border-glass);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }
}

.contact-info-panel h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.contact-info-panel p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 3rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.75rem;
}

.detail-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.detail-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form-panel {
  padding: 4rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

input, select, textarea {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
  background: rgba(3, 7, 18, 0.9);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 45px;
}

.form-feedback {
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.5rem;
  display: none;
}
.form-feedback.success {
  color: #10b981;
  display: block;
}
.form-feedback.error {
  color: #ef4444;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-glass);
  background: #02040a;
  padding: 5rem 0 3rem;
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1.25rem;
  line-height: 1.7;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-col a:hover {
  color: var(--text-primary);
}

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

@media (max-width: 600px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
