* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
}

/* HERO */
.contact-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #001a4d, #002f8f);
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* CONTACT GRID */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* INFO */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #374151;
  font-weight: 600;
}

.info-item i {
  color: #1c3faa;
  font-size: 18px;
}

.contact-social a {
  margin-right: 15px;
  color: #1c3faa;
  font-size: 18px;
}

/* FORM */
.contact-form {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
}

.contact-form h2 {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

button {
  background: linear-gradient(135deg, #f5b400, #ffc107);
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
