/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9fb;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  header {
    background: #1a3c6b;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-links a:hover, .nav-links a.active {
    color: #a3d9ff;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(rgba(26, 60, 107, 0.9), rgba(26, 60, 107, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  .btn {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
  }
  
  /* Features */
  .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 0;
    background: white;
    text-align: center;
  }
  
  .feature {
    flex: 1;
    min-width: 250px;
    margin: 20px;
  }
  
  .feature h3 {
    color: #1a3c6b;
    margin-bottom: 1rem;
  }
  
  /* Footer */
  footer {
    background: #1a3c6b;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
  }
  
  footer a {
    color: #a3d9ff;
    text-decoration: none;
  }
  
  /* Mobile Menu */
  @media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
      position: fixed;
      top: 70px;
      left: -100%;
      background: #1a3c6b;
      width: 100%;
      flex-direction: column;
      text-align: center;
      transition: 0.3s;
      padding: 2rem 0;
    }
    .nav-links.active {
      left: 0;
    }
    .nav-links li {
      margin: 1rem 0;
    }
    /* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service-card {
    background: #f0f7ff;
    padding: 1.8rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .service-card h3 {
    color: #1a3c6b;
    margin-bottom: 0.8rem;
  }
  
  .service-card strong {
    display: block;
    margin-top: 1rem;
    color: #ff6b35;
    font-size: 1.1rem;
  }
  
  }
  /* ==== NEW CLEAN CONTACT PAGE ==== */
.contact-hero {
  background: linear-gradient(135deg, #1a3c6b 0%, #2a5d9e 100%);
  color: white;
  padding: 80px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.direct-contact, .hours {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.direct-contact a {
  color: #a3d9ff;
  font-weight: 600;
}

.contact-form-new {
  background: white;
  color: #333;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-form-new input,
.contact-form-new textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
  outline: none;
  border-color: #1a3c6b;
}

.btn-big {
  width: 100%;
  background: #ff6b35;
  color: white;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-big:hover {
  background: #e55a2b;
  transform: translateY(-3px);
}

.small-note {
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info h1 { font-size: 2.4rem; }
  .contact-hero { padding: 60px 0; }
}