/* ============================================
   MediPrime Africa - Professional Stylesheet
   Colors based on logo: Blue (#0056A0) & Green (#1B8A4F)
   ============================================ */

/* CSS Variables */
:root {
  --primary-blue: #0056A0;
  --primary-blue-dark: #003D73;
  --primary-blue-light: #E8F4FC;
  --primary-green: #1B8A4F;
  --primary-green-dark: #14693B;
  --primary-green-light: #E6F5ED;
  --text-dark: #1A2B3C;
  --text-medium: #4A5D6F;
  --text-light: #7A8D9F;
  --bg-light: #F8FBFD;
  --bg-white: #FFFFFF;
  --border-color: #E5EDF5;
  --shadow-sm: 0 2px 8px rgba(0, 86, 160, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 86, 160, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 86, 160, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 24px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  color: var(--text-medium);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 3rem;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(0, 86, 160, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 86, 160, 0.4);
}

.btn-secondary {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 4px 16px rgba(27, 138, 79, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary-blue);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

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

.logo-title {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-med {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-blue);
}

.logo-afr {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-green);
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* Navigation Links */
.nav-links {
  display: none;
  gap: 8px;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-blue);
  background: var(--primary-blue-light);
}

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

/* Nav CTA Button */
.nav-cta {
  display: none;
}

@media (min-width: 992px) {
  .nav-cta {
    display: block;
  }
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, var(--primary-blue-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--primary-green);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--primary-blue);
}

.hero h1 .highlight-green {
  color: var(--primary-green);
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Stats Card */
.hero-stats {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.stats-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.5rem;
}

.stats-header h3 {
  font-size: 1.25rem;
}

.stats-header p {
  font-size: 0.9rem;
}

.stats-divider {
  height: 1px;
  background: var(--border-color);
  margin: 24px 0;
}

.stats-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.stat-badge i {
  color: var(--primary-green);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.service-icon.blue {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.service-icon.green {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card > p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-list {
  margin-top: 16px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-medium);
}

.service-list li i {
  color: var(--primary-green);
  margin-top: 4px;
  font-size: 0.6rem;
}

/* ============================================
   LABS SECTION
   ============================================ */
.labs {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.labs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .labs-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.labs-content .hero-badge {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

.labs-content h2 {
  margin-top: 12px;
}

.labs-content > p {
  margin-bottom: 32px;
}

.labs-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.labs-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.labs-feature i {
  color: var(--primary-blue);
  margin-top: 4px;
}

.labs-feature strong {
  color: var(--text-dark);
}

.labs-stats {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.labs-stats-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.labs-stats-header i {
  font-size: 2.5rem;
  color: var(--primary-green);
}

.labs-stats-header h4 {
  font-size: 1.125rem;
}

.progress-bar {
  height: 10px;
  background: var(--border-color);
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease-out;
}

.labs-stats > p {
  font-size: 0.9rem;
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-vision {
  padding: 100px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.mv-card:hover {
  box-shadow: var(--shadow-md);
}

.mv-card.mission {
  border-left: 4px solid var(--primary-blue);
}

.mv-card.vision {
  border-left: 4px solid var(--primary-green);
}

.mv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.mv-card.mission .mv-icon {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.mv-card.vision .mv-icon {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

.mv-card h3 {
  margin-bottom: 16px;
}

.mv-card p {
  line-height: 1.7;
}

.mv-card strong {
  color: var(--text-dark);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.why-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border-radius: var(--radius-lg);
  font-size: 2.25rem;
}

.why-card:nth-child(1) .why-icon {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.why-card:nth-child(2) .why-icon {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

.why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
  color: var(--primary-blue);
}

.why-card:nth-child(4) .why-icon {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

.why-card h3 {
  margin-bottom: 16px;
  font-size: 1.375rem;
  font-weight: 700;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

/* Contact Info */
.contact-info {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 56, 117, 0.3);
}

.contact-info-header {
  margin-bottom: 24px;
}

.contact-info-header i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.9;
}

.contact-info-header h3 {
  color: white;
  margin-bottom: 12px;
}

.contact-info-header p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.contact-details {
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 20px;
  text-align: center;
  margin-top: 3px;
  opacity: 0.9;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 28px 0;
}

.contact-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-trust i {
  color: var(--primary-green-light);
}

/* Contact Form */
.contact-form-box {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 15px 40px rgba(0, 56, 117, 0.3);
  border: none;
}

.contact-form-box .form-group label {
  color: white;
}

.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
  background: white;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(27, 138, 79, 0.2);
}

.contact-form-box .btn-submit {
  background: white;
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-form-box .btn-submit:hover {
  background: var(--primary-green);
  color: white;
}

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

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group label .required {
  color: #DC2626;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-blue-light);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237A8D9F' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--primary-green-light);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.privacy-note i {
  color: var(--primary-green);
}

.privacy-note span {
  font-size: 0.8rem;
  color: var(--text-medium);
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
}

/* Alert Messages */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.alert.show {
  display: flex;
}

.alert-success {
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  border-left: 4px solid var(--primary-green);
}

.alert-error {
  background: #FEE2E2;
  color: #B91C1C;
  border-left: 4px solid #DC2626;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  text-align: center;
}

.cta h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.cta p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta .btn {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 56, 117, 0.3);
  transition: all 0.3s ease;
}

.cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 56, 117, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0A1929;
  color: #9AB4C8;
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  margin-bottom: 16px;
}

.footer-brand .logo-med {
  color: white;
}

.footer-brand .logo-afr {
  color: var(--primary-green);
}

.footer-brand > p {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #9AB4C8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E3A4D;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid #1E3A4D;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #6B8A9F;
}

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

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
