.contact-section {
  padding: 80px 6%;
  background: #f9fbfd;
  font-family: "Poppins", sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 42px;
  color: #1e1e3f;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 16px;
  color: #5f6c7b;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.info-card h4 {
  font-size: 20px;
  color: #1e1e3f;
  margin-bottom: 5px;
}

.info-card p {
  font-size: 15px;
  color: #5f6c7b;
  line-height: 1.6;
}

.info-card span {
  font-size: 13px;
  color: #8a94a6;
}

.info-card a {
  display: inline-block;
  margin-top: 8px;
  color: #0a9b8a;
  font-weight: 500;
  text-decoration: none;
}

/* Icons */
.icon {
  min-width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon.green {
  background: #e6faf4;
  color: #0a9b8a;
}
.icon.pink {
  background: #fdecef;
  color: #e24a68;
}
.icon.blue {
  background: #eef2ff;
  color: #4a5de2;
}

/* Form */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e1e3f;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #5f6c7b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: none;
  background: #f3f6fa;
  font-size: 14px;
  outline: none;
}

.submit-btn{
  width: 100%;
  margin-top: 15px;
  padding: 16px;
  background: #0a9b8a;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.contact-form button:hover {
  background: #078172;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.location-section {
  background: #14143a;
  border-radius: 40px;
  overflow: hidden;
  margin: 100px;
}

/* Left Panel */
.location-info {
  padding: 80px 70px;
  background: linear-gradient(160deg, #18184b, #10102f);
}

/* Title */
.location-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 700;
  color: #ff8fab; /* Rose gold */
  margin-bottom: 50px;
}

/* Info Blocks */
.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.info-block small {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #4deeea; /* Teal accent */
  font-weight: 600;
}

.info-block p,
.info-block h5 {
  color: #e6e7ff;
  margin: 6px 0 0;
}

.info-block h5 {
  font-size: 24px;
  font-weight: 600;
}

.info-block h5 span {
  font-size: 14px;
  color: #9aa0ff;
}

/* Icon Box */
.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 143, 171, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8fab;
  font-size: 22px;
  flex-shrink: 0;
}

/* Sub Info */
.sub-info {
  font-size: 14px;
  color: #c7c9ff;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Email */
.email {
  color: #8df3e4;
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .location-info {
    padding: 60px 30px;
  }

  .location-title {
    font-size: 34px;
  }
}
