/* ================================
   GLOBAL STYLING
================================ */
section {
  background-color: #111;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

section div {
  max-width: 1000px;
  margin: 0 auto;
}

section h1 {
  font-size: 50px;
  font-weight: 700;
  padding-top: 100px;
  padding-bottom: 100px;
  letter-spacing: 1px;
  color: #ff7e00;
  text-transform: uppercase;
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background-color: #000000;
  color: #fff;
  padding: 60px 40px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.contact-text h4 {
  color: #ff7e00;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-text p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.contact-info p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info strong {
  color: #ff7e00;
}

.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* ========== TABLET (≤1024px) ========== */
@media (max-width: 1024px) {
  .contact-section {
    padding: 50px 30px;
  }

  .contact-text h2 {
    font-size: 28px;
  }

  .contact-text p {
    font-size: 13px;
  }

  .contact-map iframe {
    height: 340px;
  }
}

/* ========== MOBILE (≤768px) ========== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .contact-text {
    text-align: center;
    width: 100%;
  }

  .contact-text h2 {
    font-size: 24px;
  }

  .contact-text p {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    

    

  }

  .contact-info p {
    font-size: 13px;
  }

  .contact-map {
    width: 100%;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* ========== EXTRA SMALL (≤400px) ========== */
@media (max-width: 400px) {
  .contact-section {
    padding: 30px 15px;
  }

  .contact-text h4 {
    font-size: 12px;
  }

  .contact-text h2 {
    font-size: 20px;
  }

  .contact-text p,
  .contact-info p {
    font-size: 12px;
    text-align: left
  }

  .contact-map iframe {
    height: 220px;
  }
}

/* ================================
   MESSAGE SECTION
================================ */
.message-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.message-text h4 {
  color: #ff7e00;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.message-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.message-text p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

/* Form */
.message-form {
  flex: 1;
  min-width: 320px;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 20px;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.message-form input:focus,
.message-form textarea:focus {
  background: #2b2b2b;
  border: 1px solid #ff7e00;
}

.send-btn {
  background: linear-gradient(to right, #ff7e00, #ff4747);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #ff4747, #ff7e00);
}

/* ========== TABLET (≤1024px) ========== */
@media (max-width: 1024px) {
  .message-section {
    padding: 70px 40px;
  }

  .message-text h2 {
    font-size: 28px;
  }
}

/* ========== MOBILE (≤768px) ========== */
@media (max-width: 768px) {
  .message-section {
    padding: 60px 25px;
  }

  .message-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .message-text {
    text-align: center;
  }

  .message-text h2 {
    font-size: 26px;
  }

  .message-text p {
    font-size: 14px;
  }

  .message-form {
    width: 100%;
  }
}

/* ========== EXTRA SMALL (≤480px) ========== */
@media (max-width: 480px) {
  .message-section {
    padding: 50px 18px;
  }

  .message-text h2 {
    font-size: 22px;
  }

  .message-form {
    padding: 22px;
  }

  .send-btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 25px;
  }
}

/* ========== VERY SMALL (≤320px) ========== */
@media (max-width: 320px) {
  .message-section {
    padding: 35px 12px;
  }

  .message-text h2 {
    font-size: 20px;
  }

  .message-text p {
    font-size: 12px;
  }

  .message-form {
    padding: 18px;
  }

  .message-form input,
  .message-form textarea {
    font-size: 13px;
  }

  .send-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}
.about-section {
  position: relative;
  background: url("/images/brick-image.png") center/cover no-repeat;
  color: #fff;
  padding: 0 15px;
  text-align: center;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  overflow: hidden;
  margin-top: 100px;
  padding-top: 20px;
}

/* 🔥 Shadow at the TOP instead of bottom */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%; /* how much of the top is covered */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%; /* how much of the bottom is covered */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}



