/* ================= Reset & Base ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  color: #333;
  line-height: 1.6;
}

h1 {
  color: #fff;
}

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('../img/ZZ.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: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  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;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* ================= Social Icons ================= */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

/* ================= 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;
  font-size: 1rem;
}

.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 {
  padding: 40px 0;
}

.maps-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.map-box {
  flex: 1;
  min-width: 300px;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
}

.map-box h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #000;
}

/* ================= Footer ================= */
.footer {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer h3 {
  color: #d1240d;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.footer h4 {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #f5ebeb;
}

.footer p {
  margin: 6px 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer p i {
  color: #d1240d;
  margin-right: 8px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  text-decoration: underline;
  color: #ffb52a;
}

.footer form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.footer input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 3px;
}

.footer button {
  background: #d1240d;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.footer button:hover {
  background: #b71c09;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ================= Branch ================= */
.branch {
  margin-bottom: 20px;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {

  .contact-flex,
  .maps-flex {
    flex-direction: column;
  }

  .contact-header h1 {
    font-size: 2.2rem;
  }

  .contact-header p {
    font-size: 1.1rem;
  }
}