.hero-section {
    min-height: 32rem;
    background: url("../images/contact-banner2.png") center/cover no-repeat;
    position: relative;
}

.contact-section {
    background: radial-gradient(circle at top, #1b0b2e, #070014);
}

.small-title {
    color: #ff6ec7;
    font-size: 13px;
    letter-spacing: 1px;
}

.main-title {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
}

.description {
    color: #cfcfcf;
    max-width: 500px;
}

.info-box {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item h6 {
    margin-bottom: 4px;
    font-size: 14px;
}

.info-item p {
    font-size: 13px;
    color: #bdbdbd;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon.pink {
    background: linear-gradient(135deg, #ff6ec7, #b983ff);
    color: #fff;
}

.icon.pink:hover {
    background: linear-gradient(90deg, #b983ff, #ff6ec7);
    color: #fff;
}

.social-title {
    margin-top: 40px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    background: linear-gradient(90deg, #9b5cff, #ff7acb);
    color: #fff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
}

.contact-form h3 {
    margin-bottom: 10px;
}

.contact-form p {
    color: #cfcfcf;
    font-size: 14px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

.btn-gradient {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #9b5cff, #ff7acb);
    border: none;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #ff7acb, #9b5cff);
    opacity: 0.9;
    color: #fff;
}

/* ==============================
   RESPONSIVE – CONTACT PAGE
============================== */

/* ---------- Large Tablets ---------- */
@media (max-width: 1200px) {
  .main-title {
    font-size: 34px;
  }

  .description {
    max-width: 100%;
  }
}

/* ---------- Tablets ---------- */
@media (max-width: 992px) {

  /* Hero */
  .hero-section {
    min-height: 26rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Contact content */
  .main-title {
    font-size: 30px;
  }

  .info-box {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 30px;
  }
}

/* ---------- Mobile Devices ---------- */
@media (max-width: 768px) {

  /* Hero */
  .hero-section {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Contact section spacing */
  .contact-section {
    padding: 60px 0;
  }

  /* Left content */
  .main-title {
    font-size: 26px;
  }

  .description {
    font-size: 14px;
  }

  /* Info box */
  .info-item {
    align-items: flex-start;
  }

  .icon {
    width: 38px;
    height: 38px;
  }

  /* Social icons */
  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Form */
  .contact-form {
    padding: 25px;
  }
}

/* ---------- Small Phones ---------- */
@media (max-width: 480px) {

  /* Hero */
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Titles */
  .main-title {
    font-size: 22px;
  }

  /* Buttons */
  .btn-gradient {
    padding: 8px 20px;
    font-size: 13px;
  }

  /* Inputs */
  .contact-form .form-control {
    font-size: 14px;
  }
}
