/* Path: /public/assets/css/pages/contact.css */
/* ── HERO BANNER ── */
.contact-hero {
  width: 100%;
  background: #fff;
  padding: 36px 5% 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
  min-height: 160px;
}

/* floating emoji decorations */
.hero-deco {
  position: absolute;
  pointer-events: none;
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
  animation: float 4s ease-in-out infinite;
  user-select: none;
}
.hero-deco.hd1 { top: 10px; left: 8%;  font-size: 52px; animation-delay: 0s; }
.hero-deco.hd2 { top: 20px; left: 18%; font-size: 36px; animation-delay: .6s; }
.hero-deco.hd3 { top: 8px;  right: 20%; font-size: 44px; animation-delay: .3s; }
.hero-deco.hd4 { top: 30px; right: 10%; font-size: 38px; animation-delay: .9s; }
.hero-deco.hd5 { bottom: 10px; right: 5%; font-size: 34px; animation-delay: 1.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

/* arrows decoration */
.hero-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 14px;
  flex-shrink: 0;
}
.hero-arrows span {
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  display: block;
}
.hero-arrows span:nth-child(1) { border-color: transparent transparent transparent var(--pink); }
.hero-arrows span:nth-child(2) { border-color: transparent transparent transparent var(--cyan); opacity:.6; }
.hero-arrows span:nth-child(3) { border-color: transparent transparent transparent var(--pink); }

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(42px, 7vw, 72px);
  color: var(--blue);
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

/* ── CONTACT SECTION ── */
.contact-wrap {
  max-width: 1100px;
  margin: 10px auto 70px;
  padding: 0 5%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

/* LEFT: form */
.contact-form-col { flex: 1; min-width: 0; }

.contact-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.form-group { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.form-label {
  width: 155px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding-top: 10px;
  line-height: 1.3;
}
.form-label .req { color: var(--pink); }

.form-input,
.form-textarea {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input { height: 44px; }
.form-textarea { height: 110px; resize: vertical; }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(239,230,48,.2);
}

.recaptcha-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-left: 175px;
  margin-bottom: 24px;
}
.recaptcha-note a { color: var(--cyan); }
.recaptcha-note a:hover { text-decoration: underline; }

.btn-submit {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 50px;
  background: var(--yellow);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(239,230,48,.4);
  letter-spacing: .3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,230,48,.5); filter: brightness(1.05); }
.btn-submit:active { transform: translateY(0); }

/* Success state */
.success-msg {
  display: none;
  background: #f0faf0;
  border: 1.5px solid #c8e6c9;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 14px;
  color: #2e7d32;
  margin-top: 20px;
  align-items: center;
  gap: 12px;
}
.success-msg.show { display: flex; }
.success-msg i { font-size: 20px; }

/* RIGHT: address info */
.contact-info-col {
  width: 280px;
  flex-shrink: 0;
  padding-top: 6px;
}

.info-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.info-item i { color: var(--pink); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.info-item a { color: var(--muted); transition: color .2s; }
.info-item a:hover { color: var(--cyan); }

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  border-radius: 8px;
  padding: 8px 16px;
  transition: all .2s;
}
.maps-link:hover { background: var(--cyan); color: #fff; }

/* Divider line */
.info-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* Agency cards */
.agency-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.7;
}
.agency-card strong { color: var(--blue); font-size: 13.5px; display: block; margin-bottom: 4px; }
.agency-card a { color: var(--cyan); }
.agency-card a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrap { flex-direction: column; gap: 40px; }
  .contact-info-col { width: 100%; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 38px; }
  .form-group { flex-direction: column; gap: 6px; }
  .form-label { width: 100%; padding-top: 0; }
  .recaptcha-note { margin-left: 0; }
}




