/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #0B1F3B; line-height: 1.6; background: #fff; overflow-x: hidden; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* --- NAVIGATION --- */
.navbar { background: #0B1F3B; padding: 1.2rem 0; border-bottom: 4px solid #F2C200; position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; gap: 10px; }

.nav-brand { 
  color: #fff !important; 
  text-decoration: none; 
  font-weight: 800; 
  font-size: clamp(0.8rem, 3.2vw, 1.15rem); 
  text-transform: uppercase; 
  white-space: nowrap;
  letter-spacing: -0.3px;
  flex-shrink: 1; 
}
.nav-brand span { color: #F2C200; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 18px; }
.nav-links a { color: #fff !important; text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }
.nav-cta { background: #F2C200; color: #0B1F3B !important; padding: 8px 15px; border-radius: 4px; font-weight: 800 !important; }

.menu-toggle { display: none; cursor: pointer; flex-shrink: 0; margin-left: 10px; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: 0.3s; background: #fff; }

/* --- HERO & HEADERS --- */
.hero { background: linear-gradient(rgba(11, 31, 59, 0.8), rgba(11, 31, 59, 0.8)), url('image.JPG'); background-size: cover; background-position: center; color: #fff; text-align: center; padding: 100px 20px; }

.small-hero { 
  background: linear-gradient(rgba(11, 31, 59, 0.7), rgba(11, 31, 59, 0.7)), url('aboutheaderimage.JPG'); 
  background-size: cover; 
  background-position: center; 
  padding: 80px 20px; 
  text-align: center;
  color: #fff;
}
.small-hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); text-transform: uppercase; margin-bottom: 10px; }

.logo { width: 180px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); text-transform: uppercase; margin-bottom: 20px; }

.btn { display: inline-block; padding: 15px 30px; margin: 10px; text-decoration: none; font-weight: 700; border-radius: 4px; text-transform: uppercase; border: none; transition: 0.3s; text-align: center; }
.primary { background: #F2C200; color: #0B1F3B; }
.secondary { border: 2px solid #fff; color: #fff; background: transparent; }
.facebook-btn { background: #1877F2 !important; color: #fff !important; }

/* --- HERO STATS --- */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}
.stat-item { padding: 0 15px; min-width: 150px; }
.stat-value { display: block; font-size: 1.4rem; font-weight: 800; color: #F2C200; text-transform: uppercase; }
.stat-label { display: block; font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* --- SECTIONS & GRID --- */
.section { padding: 80px 0; }
.section.alt { background: #f4f7f9; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 40px; border-radius: 8px; border-top: 6px solid #F2C200; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.icon { font-size: 3rem; margin-bottom: 20px; }

/* --- CONTACT PAGE SPECIFICS --- */
.contact-details { padding-right: 20px; }
.info-box { margin-top: 30px; }
.info-item { margin-bottom: 25px; }
.info-item strong { display: block; color: #F2C200; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 5px; }
.info-item p { font-size: 1.2rem; font-weight: 700; color: #0B1F3B; }

.form-container { background: #f4f7f9; padding: 30px; border-radius: 8px; border: 1px solid #ddd; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: #0B1F3B; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

/* --- FOOTER & STICKY --- */
footer { padding: 40px 20px; background: #081424; color: #888; text-align: center; }
footer .social-links a { color: #F2C200; text-decoration: none; font-weight: 800; text-transform: uppercase; border: 1px solid #F2C200; padding: 10px 20px; border-radius: 4px; display: inline-block; }

.sticky-call { 
  display: none; 
  position: fixed; 
  bottom: 20px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: #F2C200; 
  color: #0B1F3B; 
  padding: 15px 35px; 
  border-radius: 50px; 
  text-decoration: none; 
  font-weight: 900; 
  text-transform: uppercase; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
  z-index: 9999; 
  border: 2px solid #0B1F3B;
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 960px) {
  .nav-brand { font-size: clamp(0.75rem, 3.8vw, 1rem); }
  .nav-links { display: flex; flex-direction: column; width: 100%; position: absolute; top: -1000px; transition: 0.4s ease; background: #0B1F3B; padding: 30px 0; border-bottom: 4px solid #F2C200; }
  .nav-links.active { top: 76px; } 
  .nav-links li { margin: 12px 0; text-align: center; }
  .menu-toggle { display: block; }
  .sticky-call { display: block; } 
  #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
  #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-stats { gap: 15px; }
  .stat-item { min-width: 120px; padding: 5px; }
  .stat-value { font-size: 1.1rem; }
}

/* --- OVERRIDE CONTACT HEADER IMAGE --- */
.contact-page .small-hero {
  background: linear-gradient(rgba(11, 31, 59, 0.7), rgba(11, 31, 59, 0.7)), url('Contactheaderimage.JPG') !important;
  background-size: cover !important;
  background-position: center !important;
}

