/* ============================================
   TrueCare Hospitality - Contact Page Styles
   ============================================ */

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  font-size: 1.8rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Emoji-based info icons */
.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(79, 182, 194, 0.1),
    rgba(123, 198, 123, 0.1)
  );
  font-size: 1.5rem;
  line-height: 1;
}

.info-card h4 {
  font-size: 1rem;
  color: #1e3a5f;
  margin-bottom: 0.4rem;
}

.info-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CONTACT FORM / REACH OUT WRAPPER
   ============================================ */
.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: #1e3a5f;
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT PAGE RESPONSIVE
   ============================================ */

/* Tablet (768px – 991px) */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-wrapper {
    padding: 36px 32px;
  }
}

/* Mobile (481px – 767px) */
@media (max-width: 767px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .reach-out-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .info-card {
    padding: 18px 16px;
    gap: 14px;
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }

  .contact-form-wrapper {
    padding: 22px 16px;
  }

  .reach-out-btn {
    padding: 13px 14px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .reach-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.2rem;
  }
}

/* ============================================
   DIRECT REACH OUT BUTTONS
   ============================================ */
.reach-out-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reach-out-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reach-out-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reach-out-btn::after {
  content: "→";
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.reach-out-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.reach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
}

/* Email Button */
.btn-email {
  background: linear-gradient(135deg, #4fb6c2, #3a9ea9);
  color: white;
}

.btn-email .reach-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Phone Button */
.btn-phone {
  background: #f4f8fb;
  color: #1e3a5f;
  border: 1px solid #e8eef3;
}

.btn-phone .reach-icon {
  background: rgba(30, 58, 95, 0.1);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.btn-whatsapp .reach-icon {
  background: rgba(255, 255, 255, 0.2);
}
