/* Basic Reset */

.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1300px;
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  padding: 20px;
}

.contact-left iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-right {
  display: flex;
  flex-direction: column;
  background-color: #ECE8DF;
  margin-top: 20px;
  height: 450px;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form button {
  padding: 10px 15px;
  background-color: #69473B;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.form button:hover {
  background-color: #412c25;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 15px;
  margin-right: 20px;
  color: #69473B;
}

.contact-item p {
  font-size: 16px;
  margin: 0;
}

/* Icon styling */
.fas {
  font-size: 24px;
}

.contact-info-section {
  background: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.contact-info-container {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
}

.info-box {
  flex: 1 1 22%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #69473B;
  border: 2px solid #69473B;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-right: 29px;
}

.icon i {
  font-size: 15px !important;
}

.content {
  flex: 1;
}

.title {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

p {
  margin: 0;
  color: #555;
}

/* ✅ Responsive Fix for stacking map and form */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column-reverse;   /* stack vertically */
    align-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;             /* full width */
    padding: 10px;
  }

  .contact-left iframe {
    width: 100% !important;
    height: 200px !important;       /* reduce height */
    margin-left: 0 !important;
  }

  .contact-right {
    height: auto;            /* let content decide height */
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .info-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .info-box {
    flex: 1 1 100%;
  }
}
