
.contact-hero {
  padding: 100px 20px;
  height: 55vh;
  background: linear-gradient(rgba(37, 150, 190, 0.6), rgba(37, 150, 190, 0.6)),
              url('../images/istanbul.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}


.contact-section {
  padding: 70px 20px;
  background: #f9f9f9;
}

.contact-card {
  background: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-card h2 {
  color: rgb(37, 150, 190);
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.contact-form button.btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: rgb(37, 150, 190);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-form button.btn:hover {
  background: #fff;
  color: rgb(37, 150, 190);
  outline: 2px solid rgb(37, 150, 190);
}


.contact-info {
  padding: 60px 20px;
  background: #ffffff;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #ebf4f9; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-box i {
  font-size: 36px;
  color: rgb(37, 150, 190);
  margin-bottom: 15px;
}

.info-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: rgb(37, 150, 190);
}

.info-box p {
  font-size: 16px;
  color: #333;
}




@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .contact-hero { height: auto; padding: 80px 20px; }
}