/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
  /* Colors */
  --color-primary: #1e3a8a;
  /* Deep elegant blue */
  --color-primary-light: #3b82f6;
  --color-secondary: #fcd34d;
  /* Soft gold/brass accent */
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Layout */
  --container-width: 1200px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* =========================================
   UTILITIES
========================================= */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

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

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

.mt-5 {
  margin-top: 3rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-accent {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  transition: var(--transition);
}

.nav-link:not(.btn-contact)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.nav-link:not(.btn-contact):hover::after,
.nav-item.dropdown:hover > .nav-link::after {
  width: 100%;
}

.nav-link:hover,
.nav-item.dropdown:hover > .nav-link {
  color: white;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #0f172a;
  min-width: 250px;
  padding: 0.8rem 0;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

/* Invisible bridge to prevent menu closing when moving cursor to dropdown */
.nav-item.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-secondary);
  padding-left: 1.8rem;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
}

.arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-item.dropdown:hover .arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.btn-contact {
  background-color: var(--color-secondary);
  color: var(--color-primary) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.btn-contact:hover {
  background-color: white;
  color: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: white;
}

/* =========================================
   HERO SECTION
========================================= */
/* =========================================
   HERO SLIDER
========================================= */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-color: #0f172a;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

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

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.1) 100%);
  z-index: 2;
}

/* Subtle overlay pattern */
.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
  opacity: 0.5;
}

.slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.8s ease-out 0.2s;
}

.slide-content-left {
  text-align: left;
  max-width: 900px;
}

.slide.active .slide-content {
  transform: translateY(0);
}

.hero-kicker {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  display: inline-block;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 8px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.15;
}

.hero-highlight {
  position: relative;
  color: white;
  font-style: normal;
  display: inline-block;
  letter-spacing: normal;
  font-size: 1em;
  margin-top: 0;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-secondary);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #e2e8f0;
  font-weight: 400;
  max-width: 650px;
  margin-left: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* Custom Hero Button */
.btn-hero {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 1rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-hero:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-hero:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-hero-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 1rem 2.5rem;
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  padding: 0;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background-color: var(--color-secondary);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text-center h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text-center p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  text-align: center;
}

.sub-heading {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.vm-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border-top: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

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

.vm-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.vm-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: center;
}

/* Leadership Showcase */
.leadership-section {
  margin-top: 5rem;
}

.leadership-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.leadership-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
}

.founder-showcase {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.founder-showcase.reverse {
  flex-direction: row-reverse;
}

.founder-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-color: var(--color-primary);
}

.founder-showcase.reverse::before {
  left: auto;
  right: 0;
  background-color: var(--color-secondary);
}

.founder-image-large {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 5px solid white;
  box-shadow: var(--shadow-md);
}

.founder-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: var(--transition);
}

.founder-showcase:hover .founder-image-large img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.founder-details {
  flex-grow: 1;
}

.founder-name {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

.founder-role-badge {
  display: inline-block;
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}

.founder-bio {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =========================================
   PROJECTS SECTION
========================================= */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  padding: 3rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--color-border);
  margin: 0 auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-block;
  min-width: 2.5ch;
}

.stat-suffix {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

.showcase-header {
  margin-bottom: 3.5rem;
}

.showcase-title {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.showcase-underline {
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: 0 auto;
  border-radius: 2px;
}

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

.project-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.project-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  /* Ensures building tops/signage are visible */
  transition: transform 0.5s ease;
}

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

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-primary);
  font-weight: 600;
}

.project-info p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* =========================================
   CATALOG SECTION
========================================= */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.catalog-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.catalog-img-wrapper {
  height: 250px;
  background-color: var(--color-bg-alt);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.catalog-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.catalog-item:hover .catalog-img-wrapper img {
  transform: scale(1.05);
}

.catalog-content {
  padding: 1.5rem;
}

.catalog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
}

.catalog-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.catalog-note {
  color: var(--color-primary);
  opacity: 0.8;
  font-weight: 500;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: #0f172a;
  color: white;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  color: white;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-logo .logo-accent {
  color: var(--color-secondary);
}

.footer-tagline {
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #94a3b8;
  max-width: 400px;
}

.footer-contact h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-list .icon {
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.contact-list p,
.contact-list a {
  color: #cbd5e1;
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  background-color: #020617;
  padding: 1.5rem 0;
  color: #64748b;
  font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .slider-dots {
    left: 2rem;
  }

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

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .founder-showcase,
  .founder-showcase.reverse {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .founder-showcase::before,
  .founder-showcase.reverse::before {
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
  }
}

@media (max-width: 768px) {
  .header-content {
    height: 70px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #0f172a;
    flex-direction: column;
    transition: 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    padding: 2rem 0;
    overflow-y: auto;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.05);
    min-width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
  }

  .nav-item.dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 0.5rem;
  }

  .dropdown-menu a {
    text-align: center;
    padding: 0.8rem 1.5rem;
  }

  .dropdown-toggle {
    justify-content: center;
  }

  /* Hero Mobile Fixes */
  .hero {
    height: 100vh;
    text-align: center;
  }

  .slide-content-left {
    text-align: center;
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .hero-subtitle {
    margin: 0 auto 2rem auto;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    gap: 1rem;
  }

  .btn-hero, .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  .slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    transform: none !important;
    gap: 1.2rem;
    z-index: 30;
  }



  /* Stats Section Mobile */
  .stats-container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
    margin: 0.5rem auto;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-suffix {
    font-size: 2rem;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-container {
    padding: 1.5rem 1rem;
  }
}