
/* CONTACT PAGE */

/* --- Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* --- CONTACT HERO --- */
.contact-hero {
  padding: 80px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, #fdf0f4 0%, #ffffff 100%);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-hero h1 span {
  color: var(--pink);
  font-style: italic;
}

.contact-sub {
  font-size: 0.92rem;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- SECTION LABEL (shared) --- */
/* --- CONTACT BODY --- */
.contact-body {
  padding: 80px 0;
}

/* Info Cards */
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.contact-info-title span {
  color: var(--pink);
  font-style: italic;
}

.contact-info-sub {
  font-size: 0.86rem;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 3px 16px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(224, 122, 154, 0.18);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 3px;
}

.info-card p {
  font-size: 0.83rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 48px;
  box-shadow: 0 6px 32px var(--shadow);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.35;
}

.form-title span {
  color: var(--pink);
  font-style: italic;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.form-group-custom label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.req {
  color: var(--pink);
}

.form-input {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #fdf7f9;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(224, 122, 154, 0.12);
  background: var(--white);
}

.form-input.is-invalid {
  border-color: #e05a5a;
  box-shadow: 0 0 0 3px rgba(224, 90, 90, 0.1);
}

.form-select-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e07a9a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.char-count {
  font-size: 0.73rem;
  color: var(--text);
  text-align: right;
  margin-top: 4px;
}

.invalid-msg {
  font-size: 0.75rem;
  color: #e05a5a;
  display: none;
  margin-top: 2px;
}

.invalid-msg.show {
  display: block;
}

/* Success Alert */
.alert-success-custom {
  background: #edf7f0;
  border: 1.5px solid #7cc49a;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.86rem;
  color: #2d6b47;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Send Button */
.btn-send {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--pink);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.btn-send:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 154, 0.35);
}

.btn-send:active {
  transform: translateY(0);
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 0;
  background: #fdf0f4;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-title span {
  color: var(--pink);
  font-style: italic;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(224, 122, 154, 0.16);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  gap: 12px;
}

.faq-question:hover {
  color: var(--pink);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--pink);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.85;
  padding: 0 24px 20px;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .contact-form-wrap {
    padding: 36px 32px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 24px;
    flex-direction: column;
    gap: 14px;
  }

  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-hero {
    padding: 56px 0 48px;
  }

  .contact-body,
  .faq-section {
    padding: 56px 0;
  }

  .contact-form-wrap {
    padding: 28px 22px;
    margin-top: 8px;
  }

  .footer-top,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 1.5rem;
  }

  .faq-title {
    font-size: 1.4rem;
  }

  .btn-send {
    padding: 13px 28px;
  }
} 
