/* ======= MODERN TYPOGRAPHY ======= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* ======= CSS VARIABLES & ROOT ======= */
:root {
  /* Brand Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #64748b;
  --secondary-light: #94a3b8;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* ======= BASE STYLES ======= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--gray-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======= LOADING ANIMATION ======= */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  color: var(--white);
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: pulse 2s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

.loader-text {
  margin-top: var(--space-md);
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* ======= SCROLL INDICATOR ======= */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9998;
  transition: width 0.3s ease;
}

/* ======= HEADER ======= */
header {
  background: var(--white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: slideInTop 0.8s ease-out 0.3s forwards;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 60px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 1001;
}

.header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 0;
}

.logo {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
}

.header-text h1 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  padding: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.header-text p {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin: 0;
  padding: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

/* ======= NAVIGATION ======= */
.nav-menu {
  display: flex;
  align-items: center;
}

/* Force mobile navigation hiding - Override any conflicting styles */
@media screen and (max-width: 968px) {
  .nav-menu:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  
  /* Also hide the hamburger menu completely */
  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  overflow: hidden;
}



.nav-links a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, 
    rgba(37, 99, 235, 0.3) 0%, 
    rgba(59, 130, 246, 0.2) 50%, 
    transparent 100%
  );
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -2;
}

.nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, 
    var(--primary) 0%, 
    rgba(59, 130, 246, 0.9) 100%
  );
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(37, 99, 235, 0.25),
    0 4px 12px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}



.nav-links a:hover::after {
  width: 120%;
  height: 120%;
  opacity: 1;
}

.nav-links a:active {
  transform: translateY(-1px) scale(1.02);
}

/* ======= MOBILE NAVIGATION TOGGLE ======= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 30px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: 1px;
}

.nav-toggle:hover span {
  background: var(--primary);
}

.nav-toggle.active span {
  background: var(--primary);
}

/* ======= MOBILE RESPONSIVE NAVIGATION ======= */
@media (max-width: 968px) {
  /* Hide both hamburger menu and navigation completely */
  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Hide desktop navigation completely on smaller devices */
  .nav-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .nav-menu.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid var(--gray-200);
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    padding-top: 80px;
    animation: slideInRight 0.3s ease-out;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-lg);
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: var(--space-xs);
    text-align: left;
    background: none !important;
    position: static;
    overflow: visible;
    transform: none !important;
    box-shadow: none !important;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .nav-links a:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    transform: translateX(8px) !important;
  }

  /* Mobile overlay */
  .nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: -300px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ======= HERO BANNER ======= */
.hero-banner {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.85), 
    rgba(59, 130, 246, 0.75), 
    rgba(37, 99, 235, 0.8)
  );
  z-index: 1;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 60%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 var(--space-xl);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* ======= SECTIONS ======= */
.section {
  padding: var(--space-3xl) 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  transition: width 0.8s ease 0.3s;
}

.section.animate .section-title::after {
  width: 80px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======= CARDS ======= */
.card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

/* ======= ABOUT SECTION ======= */
.about-section {
  background: var(--white);
}

.about-content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ======= VISION & MISSION SECTION ======= */
.vision-mission-section {
  background: var(--gray-50);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.vision-card, .mission-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.vision-card.animate {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInLeft 0.8s ease-out;
}

.mission-card.animate {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

.card-content {
  color: var(--gray-600);
  line-height: 1.7;
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.mission-list li:nth-child(1) { animation-delay: 0.3s; }
.mission-list li:nth-child(2) { animation-delay: 0.5s; }
.mission-list li:nth-child(3) { animation-delay: 0.7s; }

.mission-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ======= SERVICES SECTION ======= */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

/* Services responsive breakpoints */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.service-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s both; }
.service-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s both; }
.service-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s both; }
.service-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.4s both; }

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2.5rem;
  animation: float 4s ease-in-out infinite;
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 1s; }
.service-card:nth-child(3) .service-icon { animation-delay: 2s; }
.service-card:nth-child(4) .service-icon { animation-delay: 3s; }

/* ======= WHY CHOOSE SECTION ======= */
.why-choose-section {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-card {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}

.feature-card.animate {
  opacity: 1;
  transform: scale(1);
}

.feature-card:nth-child(1) { animation: scaleIn 0.8s ease-out 0.1s both; }
.feature-card:nth-child(2) { animation: scaleIn 0.8s ease-out 0.2s both; }
.feature-card:nth-child(3) { animation: scaleIn 0.8s ease-out 0.3s both; }
.feature-card:nth-child(4) { animation: scaleIn 0.8s ease-out 0.4s both; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--white);
  animation: pulse 3s ease-in-out infinite;
}

/* ======= TEAM SECTION ======= */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.team-member {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.team-member.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-member:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s both; }
.team-member:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.3s both; }
.team-member:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.5s both; }

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--primary);
  transition: all 0.4s ease;
  animation: float 5s ease-in-out infinite;
}

.team-member:hover .team-photo {
  transform: scale(1.1);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.team-role {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ======= CONTACT SECTION ======= */
.contact-section {
  background: var(--gray-50);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.contact-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: var(--white);
}

.contact-email {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  transition: all 0.3s ease;
  margin: var(--space-lg) 0;
}

.contact-email:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ======= FOOTER ======= */
footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 var(--space-lg);
  }
  
  .section-container {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 968px) {
  /* Hide hamburger menu completely on tablets and smaller */
  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }
  
  .header-container {
    padding: 0 var(--space-md);
    min-height: 50px;
  }
  
  /* Header brand stays consistent across all screen sizes */
  
  .hero-banner {
    height: 50vh;
    min-height: 400px;
    background-attachment: scroll; /* Disable parallax on mobile for performance */
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .header-container,
  .section-container,
  .footer-content {
    padding: 0 var(--space-md);
  }
  
  .header-container {
    min-height: 48px;
  }
  
  .header-text h1 {
    font-size: 1.1rem;
  }
  
  .header-text p {
    font-size: 0.6rem;
  }
  
  .logo {
    height: 32px;
  }
  
  .hero-content {
    padding: 0 var(--space-md);
  }
  
  .card {
    padding: var(--space-lg);
  }
  
  .hero-banner {
    height: 40vh;
    min-height: 300px;
    background-attachment: scroll;
  }
  
  .nav-menu.active {
    width: 100%;
  }
}

/* ======= UTILITY CLASSES ======= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }