/* ===== Contact Info Section ===== */
.contact-info-section{
    background-color: #f9f9f9;
}
.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 20px;
  text-align: center;
}

.info-box {
  flex: 1 1 300px;
  margin: 20px;
}

.icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.info-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.info-box a {
  color: #0a58ca;
  text-decoration: none;
  font-weight: 500;
}

/* ===== Contact Form Section ===== */
.contact-form-section{
    background: #efefef;
}
.contact-form {
  padding: 60px 20px;
  
  text-align: center;
}

.contact-form h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input[type="text"],
input[type="email"],
textarea {
  flex: 1 1 100%;
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button {
  padding: 12px 30px;
  background-color: #c79649;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #a77c36;
}

/* ===== Map Section ===== */
.map-section iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .info-box {
    flex: 1 1 100%;
  }

  .contact-form h2 {
    font-size: 28px;
  }
}