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

:root {
  --primary: #0056b3;
  --secondary: #00d4ff;
  --dark: #121212;
  --light: #f8f9fa;
  --accent: #f38020;
  --text-muted: #666;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  color: #333;
  background: var(--light);
  scroll-behavior: smooth;
}

/* Navigation */
header {
  background: white;
  padding: 1rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

nav ul { display: flex; list-style: none; gap: 25px; align-items: center; }

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

nav a.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 8px 15px;
  border-radius: 5px;
}
nav a.nav-cta:hover { background: var(--accent); color: white !important; }

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 45, 93, 0.85), rgba(0, 20, 40, 0.9)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=1600');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 10%;
  text-align: center;
}

.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 750px; margin: 0 auto 40px; }

.hero-page { padding: 100px 10%; }

/* Layout & Cards */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--primary); font-size: 2rem; font-weight: 700; }

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

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  padding: 30px;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.card h2, .card h3 { margin: 0 0 15px; color: var(--primary); font-size: 1.5rem; }
.card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* Buttons */
.btn {
  background: var(--secondary);
  color: var(--dark);
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn:hover { transform: scale(1.05); filter: brightness(1.1); }

/* Forms */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  max-width: 700px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #333; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

/* Footer */
footer { background: var(--dark); color: white; padding: 60px 10%; text-align: center; }
footer strong { color: white; }
footer p { opacity: 0.8; }

/* Construction Banner */
.construction-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(243, 128, 32, 0.95); /* Accent color with opacity */
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 9999;
  backdrop-filter: blur(5px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team */
.team-card {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.stat-card { text-align: center; }
.stat-card h3 { color: var(--primary); font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.news-date { color: var(--accent); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; display: block; margin-bottom: 10px; }
.news-link { color: var(--primary); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--primary); display: inline-block; margin-top: 15px; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
    position: relative; /* Unstick header on mobile to save screen space */
  }

  nav {
    width: 100%;
    margin-top: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero-page {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .contact-form {
    padding: 25px 20px;
  }

  .construction-banner {
    font-size: 0.75rem;
    padding: 10px;
    line-height: 1.4;
  }
  
  footer {
    padding: 40px 20px 80px; /* Extra padding for bottom banner */
  }
}