* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: linear-gradient(180deg, #eef2f7, #dbe7f3);
  color: #1c2b36;
}

/* HEADER */
.header {
  background: linear-gradient(90deg, #0a3d62, #1e90ff);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}

.brand-tag {
  font-size: 13px;
  color: #dfefff;
}

/* NAV */
.nav-links a {
  margin-left: 14px;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255,255,255,0.25);
  transition: 0.3s;
}

.nav-links a:hover {
  background: white;
  color: #0a3d62;
  transform: translateY(-2px);
}

.nav-links a.active {
  background: white;
  color: #0a3d62;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  animation: fadeUp 1s ease;
}

/* CONTENT */
.content-box {
  max-width: 1100px;
  margin: 60px auto;
  padding: 50px 30px;
  text-align: center;
  background: rgba(255,255,255,0.65);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease;
}

.content-box h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #0a3d62;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(135deg, #ffffff, #eaf2ff);
  padding: 30px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* BUTTONS */
.action-btn {
  display: inline-block;
  margin: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn {
  background: #0a3d62;
  color: white;
}

.call-btn:hover {
  background: #1e90ff;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  opacity: 0.9;
}

.map-btn {
  background: #ff6b6b;
  color: white;
}

.map-btn:hover {
  opacity: 0.9;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  margin: 80px auto;
}

.stat-card {
  background: linear-gradient(135deg, #1e90ff, #0a3d62);
  color: white;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h3 {
  font-size: 40px;
}

/* MOBILE */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
  }

  .nav-links a {
    color: #0a3d62;
    margin: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== CONTACT PAGE FIXES ===== */

/* Phone text */
.phone-text {
  font-size: 16px;
  margin: 12px 0;
  font-weight: bold;
  color: #0a3d62;
}

/* Action buttons group */
.action-group {
  margin-top: 15px;
}

/* Advanced form UI */
.advanced-form {
  max-width: 520px;
  margin: auto;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  background: rgba(255,255,255,0.95);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  transform: scale(1.03);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.25);
}

/* Submit button */
.submit-btn {
  margin-top: 22px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #1e90ff, #0a3d62);
  cursor: pointer;
  transition: 0.4s;
}

.submit-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
