* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Navigation */
.main-header {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.5px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 650;
  background: linear-gradient(135deg, #0f172a 0%, #334155 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.nav-link {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.2rem;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-family: inherit;
  white-space: nowrap;
}

.nav-link i {
  font-size: 1rem;
  color: #4b5563;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #0f172a;
  border-bottom: 2px solid #0f172a;
}

.nav-link:hover i {
  color: #0f172a;
}

/* Contact Us & Job Postings as prominent buttons */
.btn-contact {
  background: #0f172a;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
  border: 1px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}

.btn-contact i {
  font-size: 0.9rem;
  color: white;
}

.btn-contact:hover {
  background: #1e293b;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

.btn-jobs {
  background: white;
  color: #0f172a;
  border: 1.5px solid #d1d5db;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
  background: #ffffff;
  font-family: inherit;
  white-space: nowrap;
}

.btn-jobs i {
  font-size: 0.9rem;
  color: #0f172a;
}

.btn-jobs:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transform: translateY(-1px);
}

/* Main content */
main {
  flex: 1;
  padding: 2.5rem 2.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2.5rem 0 3rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.8px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 600px;
  margin-bottom: 2rem;
}

.feature-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f1f5f9;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.card i {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #111827;
}

.card p {
  color: #4b5563;
  font-size: 0.98rem;
}

/* Contact Page Specific Styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  width: 100%;
}

.submit-btn:hover {
  background: #1e293b;
}

.contact-info {
  text-align: center;
  margin: 2rem 0;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #0f172a;
}

/* Under Construction Page */
.under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.under-construction i {
  font-size: 4rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.under-construction h1 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.under-construction p {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid #e9eef2;
  padding: 1.2rem 2.5rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

footer i {
  color: #0f172a;
  margin: 0 0.2rem;
}

.dmw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #0f172a;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

.dmw-logo {
  max-width: 100%;
  height: auto;
  width: 2rem;
}

.warning-text {
  color: #dc2626;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .nav-buttons {
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .btn-contact, .btn-jobs {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  main {
    padding: 1.8rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    max-width: 100%;
    padding: 1.5rem 1.2rem;
  }
  
  .contact-cards {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-card {
    min-width: unset;
    flex: 1 1 auto;
  }
  
  .under-construction h1 {
    font-size: 2rem;
  }
  
  .under-construction p {
    font-size: 1rem;
  }
  
  .under-construction i {
    font-size: 3rem;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 650px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .nav-buttons {
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .btn-contact, .btn-jobs {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  main {
    padding: 1.8rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .nav-buttons {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .nav-link,
  .btn-contact,
  .btn-jobs {
    flex: 1 1 0;
    justify-content: center;
    text-align: center;
  }
  
  .nav-link {
    background: white;
    color: #0f172a;
    border: 1.5px solid #d1d5db;
    padding: 0.6rem 0.8rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
    font-family: inherit;
    white-space: nowrap;
  }
  
  .nav-link i {
    font-size: 0.9rem;
    color: #0f172a;
  }
  
  .nav-link[aria-current="page"] {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
  }
  
  .nav-link[aria-current="page"] i {
    color: white;
  }
  
  .nav-link:hover {
    border-bottom: 1.5px solid #d1d5db;
  }
  
  .nav-link[aria-current="page"]:hover {
    border-bottom: 1.5px solid #0f172a;
  }

  .logo-text {
    font-size: 1.4rem;
  }
  
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    max-width: 100%;
  }
  
  .contact-cards {
    flex-direction: column;
  }
  
  .contact-card {
    min-width: unset;
    flex: 1 1 auto;
  }
  
  .under-construction h1 {
    font-size: 1.8rem;
  }
  
  .under-construction p {
    font-size: 0.9rem;
  }
  
  .under-construction i {
    font-size: 2.5rem;
  }
  
  footer {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    padding: 1rem 1.5rem;
    text-align: center;
  }
  
  footer > span:not(.dmw-badge):not(.warning-text) {
    display: none;
  }
  
  .dmw-badge {
    margin: 0.2rem 0;
  }
  
  .warning-text {
    font-size: 0.8rem;
  }
  
  .map-card iframe {
    height: 200px;
  }
}
