/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #b91c1c;
  --primary-dark: #991b1b;
  --primary-light: #ef4444;
  --accent: #d4af37;
  --dark: #0f172a;
  --gray-dark: #1e293b;
  --text: #334155;
  --text-light: #64748b;
 --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -8px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --container: 1280px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Smooth scroll behavior with offset - FIXED for sticky header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px; /* Slightly more than header height for better offset */
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.bg-light {
  background: var(--light);
}

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--primary);
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 6px rgba(185, 28, 28, 0.3);
}

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

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

/* HEADER & NAVIGATION - STICKY HEADER FIXED (Does NOT scroll with content) */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Optional: Add shadow when scrolled for better visibility */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 75px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}

.logo-text h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--gray-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
  text-decoration: none;
}

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

/* Active Navigation Link Styles */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link.active {
  color: var(--primary) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(185, 28, 28, 0.1);
}

.menu-toggle .fa-times {
  display: none;
}

.menu-toggle.active .fa-bars {
  display: none;
}

.menu-toggle.active .fa-times {
  display: inline-block;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(125deg, #9e1e18 0%, #c0392b 55%, #7a1510 100%);
  color: white;
  padding: 80px 0 70px;
}

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

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* STATS SECTION - FIXED OVERLAP ISSUE */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.stat-card {
  background: white;
  border-radius: 24px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* ABOUT SECTION */
.two-col-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* MISSION & VISION */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mv-card {
  background: white;
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* SERVICES & JOBS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.service-card, .job-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: 0.25s;
  text-align: center;
}

.service-card:hover, .job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

.text-link:hover {
  text-decoration: underline;
}

/* TEAM SECTION */
.team-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.team-member {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.member-image {
  height: 280px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 24px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.member-title {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.member-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.member-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.member-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.member-stats i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* GALLERY SECTION */
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-card-image {
  height: 240px;
  overflow: hidden;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.05);
}

.gallery-card-caption {
  padding: 20px;
  text-align: center;
  background: white;
}

.gallery-card-caption h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.gallery-card-caption p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* AWARDS SECTION */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 50px 0 40px;
}

.award-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.25s ease;
  width: 300px;
  max-width: 100%;
  border: 1px solid rgba(185, 28, 28, 0.1);
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.award-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award-details {
  padding: 20px 20px 24px;
  text-align: center;
}

.award-year {
  font-size: 1.9rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
}

.award-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.award-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.stars {
  margin-top: 10px;
  color: #f5b042;
}

/* DOCUMENT BUTTONS */
.doc-buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0 20px;
}

.doc-nav-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}

.doc-nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* CONTACT SECTION */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px 0 32px;
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-card i {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-card h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 1.2rem;
}

/* CONTACT FORM */
.contact-form-fixed {
  background: white;
  border-radius: 28px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.contact-form-fixed input,
.contact-form-fixed textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.contact-form-fixed input:focus,
.contact-form-fixed textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.contact-form-fixed textarea {
  resize: vertical;
  margin-bottom: 20px;
}

.contact-form-fixed button {
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  width: auto;
  min-width: 180px;
}

.contact-form-fixed button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

#formFeedback {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

/* MAP SECTION */
.map-fixed {
  margin-top: 60px;
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--border);
}

.map-header-fixed {
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
}

.map-header-fixed h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.map-header-fixed h2 i {
  color: var(--primary);
}

.map-header-fixed p {
  color: var(--text-light);
  text-align: center;
}

.map-container-fixed {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container-fixed iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* FOOTER */
.footer {
  background: #0b1120;
  color: #cbd5e1;
  padding-top: 60px;
}

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

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1f2a3a;
  margin-top: 40px;
  padding: 28px 0;
  text-align: center;
}

/* ============================================ */
/* RESPONSIVE STYLES - RIGHT SIDE MENU */
/* ============================================ */

/* Hide mobile-only elements on desktop by default */
.nav-profile,
.nav-social,
.nav-contact-info {
  display: none;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Adjust scroll padding for tablet */
  html {
    scroll-padding-top: 80px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  /* Adjust scroll padding for mobile header */
  html {
    scroll-padding-top: 70px;
  }
  
  /* Show mobile-only elements on mobile */
  .nav-profile,
  .nav-social,
  .nav-contact-info {
    display: flex;
  }
  
  /* Mobile Menu Styles - Opens from RIGHT with X inside circle */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 28, 28, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
  }
  
  .menu-toggle i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }
  
  .menu-toggle.active {
    background: var(--primary);
    color: white;
  }
  
  /* Hide desktop navigation links on mobile - convert to mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 25px 30px 25px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    gap: 8px;
    overflow-y: auto;
    border-radius: 0;
    margin: 0;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  /* Profile/Info Section in Navbar */
  .nav-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(185, 28, 28, 0.15);
    width: 100%;
  }
  
  .nav-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .nav-avatar i {
    font-size: 2rem;
    color: white;
  }
  
  .nav-profile h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
  }
  
  .nav-profile p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
  }
  
  .nav-profile .license {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 8px;
  }
  
  /* Social Links in Navbar */
  .nav-social {
    justify-content: center;
    gap: 28px;
    margin: 15px 0 10px 0;
    padding: 15px 0;
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .nav-social a {
    width: auto;
    padding: 0;
    border-bottom: none;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s ease;
  }
  
  .nav-social a:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
  }
  
  /* Contact Info in Navbar */
  .nav-contact-info {
    width: 100%;
    margin: 10px 0;
    padding: 12px 0;
    flex-direction: column;
  }
  
  .nav-contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--text);
  }
  
  .nav-contact-info i {
    width: 28px;
    color: var(--primary);
    font-size: 1rem;
  }
  
  .nav-links a {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .nav-links a i {
    width: 26px;
    color: var(--primary);
    font-size: 1.1rem;
  }
  
  .nav-links a:hover {
    padding-left: 8px;
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .nav-link.active {
    padding-left: 8px;
    border-bottom-color: var(--primary);
    color: var(--primary) !important;
  }
  
  /* Staggered animation for menu items */
  .nav-links.active .nav-profile {
    animation: slideInFromRight 0.4s ease backwards;
    animation-delay: 0.05s;
  }
  
  .nav-links.active .nav-social {
    animation: slideInFromRight 0.4s ease backwards;
    animation-delay: 0.1s;
  }
  
  .nav-links.active a:nth-child(4) { animation: slideInFromRight 0.4s ease backwards; animation-delay: 0.15s; }
  .nav-links.active a:nth-child(5) { animation: slideInFromRight 0.4s ease backwards; animation-delay: 0.2s; }
  .nav-links.active a:nth-child(6) { animation: slideInFromRight 0.4s ease backwards; animation-delay: 0.25s; }
  .nav-links.active a:nth-child(7) { animation: slideInFromRight 0.4s ease backwards; animation-delay: 0.3s; }
  .nav-links.active a:nth-child(8) { animation: slideInFromRight 0.4s ease backwards; animation-delay: 0.35s; }
  .nav-links.active a:nth-child(9) { animation: slideInFromRight 0.4s ease backwards; animation-delay: 0.4s; }
  .nav-links.active .nav-contact-info {
    animation: slideInFromRight 0.4s ease backwards;
    animation-delay: 0.45s;
  }
  
  /* Overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  .two-col-about {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form-fixed {
    padding: 24px;
  }
  
  .map-container-fixed iframe {
    height: 300px;
  }
  
  .team-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .gallery-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .doc-buttons-container {
    flex-direction: column;
    align-items: center;
  }
  
  .doc-nav-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .map-header-fixed h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 540px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    width: min(100% - 24px, var(--container));
  }
  
  .map-container-fixed iframe {
    height: 250px;
  }
  
  .contact-form-fixed button {
    width: 100%;
  }
  
  .map-header-fixed h2 {
    font-size: 1.2rem;
    gap: 8px;
  }
  
  .map-header-fixed p {
    font-size: 0.85rem;
  }
  
  /* Fix stats grid margin on mobile */
  .stats-grid {
    margin-top: 20px;
  }
  
  /* Adjust hero padding for mobile */
  .hero {
    padding: 60px 0 50px;
  }
  
  /* Fix spacing issues on small screens */
  .hero-card {
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Image loading animation */
img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}