*,
*::before,
*::after {
  box-sizing: border-box;
}

/*------------------------------- CONTACT SECTION -----------------------------------------*/



/* ================= CONTACT INFO SECTION ================= */
.contact-section {
  padding: 60px 20px;
  background: #05052d;
  color: #fff;
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(22px, 4vw, 34px);
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  background: #f6e8e8;
  color: #000;
  width: 260px;
  padding: 22px;
  border-radius: 18px;
  text-align: left;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ================= CONTACT FORM SECTION ================= */
.contact-form-section {
  padding: 60px 20px;
  background: #05052d;
  display: flex;
  justify-content: center;
}

.contact-form-card {
  max-width: 1000px;
  width: 100%;
  background: #f3e4e4;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  transition: 0.4s;
}

.contact-form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* IMAGE */
.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM CONTENT */
.contact-form-content {
  flex: 1;
  padding: 40px;
}

.tagline {
  display: inline-block;
  background: #d9c3c3;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 10px;
}

.contact-form-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 24px;
  color: #000;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: #7a7474;
  color: #fff;
  font-size: 14px;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #e6e6e6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #5f5a5a;
  box-shadow: 0 0 0 2px rgba(94,234,212,0.6);
}

/* BUTTON */
.contact-form button {
  background: #05052d;
  color: #fff;
  padding: 12px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-form-card {
    flex-direction: column;
  }

  .contact-image {
    height: 260px;
  }

  .contact-form-content {
    padding: 30px 20px;
  }

  .contact-card {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-section,
  .contact-form-section {
    padding: 40px 15px;
  }

  .contact-form button {
    font-size: 15px;
  }
}


/*------------------------------- FOOTER SECTION -----------------------------------------*/