/* === GLOBAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fbff;
  color: #222;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: #004aad;
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header a.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  color: #004aad;
}

header a.logo img {
  height: 80px;
  width: auto;
}

header a.logo:hover {
  color: #0073ff;
}

/* NAV MENU */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #004aad;
  font-weight: 500;
  transition: 0.3s;
  padding: 8px 12px;
  border-radius: 5px;
}

nav a:hover, nav a.active {
  background: #004aad;
  color: #fff;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #f9f9f9;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 99;
}

.dropdown-content a {
  color: #004aad;
  padding: 12px 20px;
  display: block;
}

.dropdown-content a:hover {
  background: #004aad;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HAMBURGER MENU (mobile) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #004aad;
}

/* MOBILE MENU */
@media(max-width: 768px) {
  .hamburger { display: block; }

  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 75px;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  #nav-menu ul li a {
    padding: 10px 20px;
  }
}

/* === HERO SECTION === */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #004aad, #0073ff);
  color: #fff;
  text-align: left;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-form {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  color: #222;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-form h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  color: #004aad;
}

.hero-form p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.hero-form button {
  width: 100%;
  background: #004aad;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero-form button:hover {
  background: #0073ff;
}

/* === SECTIONS === */
.section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.section h2 {
  text-align: center;
  color: #004aad;
  margin-bottom: 30px;
  font-size: 28px;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.service-box h3 {
  color: #004aad;
  margin-bottom: 10px;
}

/* === LOCATIONS GRID === */
.locations {
  background: #eaf3ff;
  padding: 40px;
  border-radius: 12px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.location-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
}

.know-btn {
  display: inline-block;
  margin-top: 10px;
  background: #004aad;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 6px;
  transition: 0.3s;
}

.know-btn:hover {
  background: #0073ff;
}

/* === CALL BUTTON === */
.call-center {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

/* === FOOTER === */
footer {
  background: #004aad;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: left;
  gap: 30px;
}

.footer-container h4 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-container a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: 0.3s;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

/* === RESPONSIVE === */
@media(max-width:768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .footer-container {
    text-align: center;
  }
  .call-center {
    padding: 12px 25px;
    font-size: 16px;
  }
}
