* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* =========================
   BANNER SECTION
========================= */
.contact-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 70vh;
  padding: 60px 8%;
  background: linear-gradient(135deg, #3c2144, #5b2b67);
  color: #fff;
  gap: 40px;
}

.banner-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 30px;
}

.banner-text button {
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
  color: #3c2144;
  cursor: pointer;
  transition: 0.3s;
}

.banner-text button:hover {
  transform: translateY(-3px);
}

.banner-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* =========================
   CONTACT FORM
========================= */
.contact-section {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
}

.contact-card {
  background: #fff;
  width: 100%;
  max-width: 800px;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #3c2144;
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #3c2144;
}

textarea {
  height: 130px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #3c2144;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Large Desktop */
@media (min-width: 1400px) {
  .contact-banner {
    padding: 150px 10%;
  }

  .banner-text h1 {
    font-size: 56px;
  }

  .banner-image img {
    height: 500px;
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 42px;
  }

  .banner-image img {
    height: 380px;
  }
}

/* Tablet & Mobile (IMAGE UP, CONTENT DOWN) */
@media (max-width: 992px) {
  .contact-banner {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 90px;
    gap: 30px;
  }

  .banner-image {
    order: 1;
  }

  .banner-text {
    order: 2;
  }

  .banner-text h1 {
    font-size: 36px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .banner-image img {
    height: 320px;
  }

  .contact-card {
    padding: 30px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .contact-banner {
    padding: 50px 6%;
  }

  .banner-text h1 {
    font-size: 30px;
  }

  .banner-text button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .contact-card {
    padding: 25px;
  }

  input,
  textarea {
    font-size: 14px;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .contact-banner {
    padding: 40px 5%;
    min-height: auto;
  }

  .banner-text h1 {
    font-size: 26px;
  }

  .banner-text p {
    font-size: 14px;
  }

  .banner-image img {
    height: 240px;
    border-radius: 20px;
  }

  .contact-card {
    padding: 20px;
    border-radius: 18px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .banner-text h1 {
    font-size: 22px;
  }

  .banner-text p {
    font-size: 13px;
  }

  .banner-text button {
    width: 100%;
  }

  .banner-image img {
    height: 200px;
  }
}
