/***********************
      HERO
*************************/
.contact-hero {
  background: linear-gradient(135deg, #0b2c3d, #1a4a63);
  padding: 70px 20px;
  color: white;
  text-align: center;
}
.contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
}
.contact-hero p {
  margin-top: 8px;
  font-size: 18px;
}


/***********************
      CONTACT GRID
*************************/
.contact-wrapper {
  max-width: 1300px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  text-align: center;
  transition: .3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.icon {
  font-size: 42px;
  color: #0d5f83;
  margin-bottom: 10px;
}

/* PULSE ANIMATION FOR CALL ICON */
.pulse {
  animation: pulseAnim 1.4s infinite ease-in-out;
}
@keyframes pulseAnim {
  0% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); opacity: .7; }
}

.call-list a {
  display: block;
  margin: 10px 0;
  font-size: 17px;
  color: #0b2c3d;
  text-decoration: none;
}
.call-list a:hover {
  color: #0d5f83;
}

.address {
  line-height: 1.6;
  font-size: 16px;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #0d5f83;
  text-decoration: none;
}
.email-link:hover {
  text-decoration: underline;
}


/***********************
      MAP SECTION
*************************/
.map-section {
  text-align: center;
  padding: 50px 20px;
}
.map-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.map-box iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  border: none;
}


/***********************
      CONTACT FORM
*************************/
.form-section {
  padding: 60px 20px;
  background: #f7f9fa;
  text-align: center;
}
.form-section h2 {
  font-size: 30px;
}
.form-desc {
  margin-top: 6px;
  font-size: 16px;
  color: #555;
}

.contact-form {
  max-width: 900px;
  margin: 30px auto;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row input {
  flex: 1;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

textarea {
  width: 100%;
  height: 160px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.send-btn {
  background: #0d5f83;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 17px;
  border: none;
  cursor: pointer;
}
.send-btn:hover {
  background: #093f54;
}


/***********************
      RESPONSIVE
*************************/
@media(max-width:700px){
  .form-row { flex-direction: column; }
}
