/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff8f0;
  color: #333;
}

h1 {
  color: white;
}

h2,
h3,
h4 {
  color: #a0602b;
  margin-bottom: 15px;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

.p1 {
  margin-top: 10px;
}

/* Header Section */
.contact-header {
  position: relative;
  height: 60vh;
  background: url('https://i.pinimg.com/1200x/64/d6/c0/64d6c0d6c6b4e0e1c20c0b7b67b07fdc.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.header-content {
  position: relative;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header h1 {
  font-size: 3rem;
}

.contact-header p {
  font-size: 1.3rem;
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}

.breadcrumb a {
  color: #ffb52a;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 5px;
}

/* Contact Section */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  background-color: #fff3e0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-top: 40px;
}

.contact-details,
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-details h2,
.contact-form h2 {
  font-size: 1.8rem;
  color: #a0602b;
  margin-bottom: 20px;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details a {
  color: #a0602b;
  text-decoration: none;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  background-color: #ffb52a;
  color: #000;
  font-weight: bold;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0a100;
  color: #fff;
  transform: scale(1.05);
}

/* Map Section */
.map-section iframe {
  border: 0;
  width: 100%;
  height: 400px;
  margin-top: 30px;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-box h3 {
  color: #dc2626;
  margin-bottom: 10px;
}

.footer-box h4 {
  font-weight: bold;
  color: #dc2626;
  margin: 10px 0;
}

.footer-box p {
  color: #ccc;
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 6px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

.footer-box form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.footer-box input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  min-width: 0;
}

.footer-box button {
  background-color: #dc2626;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.footer-box button:hover {
  background-color: #b91c1c;
}

.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 0.875rem;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
    padding: 20px;
  }

  .footer-box form {
    flex-direction: column;
  }

  .footer-box input[type="email"],
  .footer-box button {
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .footer-box button {
    margin-bottom: 0;
  }
}