/* ========================================
   CONTACT PAGE — Styles
   ======================================== */

.contact-container {
  padding: 80px clamp(22px, 6vw, 110px) 100px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font: 700 clamp(2.4rem, 4.5vw, 4.2rem) 'Playfair Display', serif;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.contact-header .lead {
  max-width: 550px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-visual {
  max-width: 1100px;
  height: 230px;
  margin: -28px auto 52px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(10,37,64,.72), rgba(22,163,74,.18)),
    url('https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=85') center/cover;
  box-shadow: 0 18px 45px rgba(10,37,64,.14);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Info Cards ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(70, 42, 35, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-details h3 {
  margin: 0 0 8px;
  font: 700 1.15rem 'DM Sans', sans-serif;
  color: var(--blue);
}

.info-details p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.info-details span {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
}

.phone-link {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  transition: color 0.2s;
}

.phone-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.info-details a {
  color: var(--orange-deep);
  text-decoration: none;
}

.info-details a:hover {
  text-decoration: underline;
}

/* ---------- Social Links Card ---------- */
.social-links-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
}

.social-links-card h3 {
  margin: 0 0 16px;
  font: 700 1.15rem 'DM Sans', sans-serif;
  color: var(--blue);
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  transition: transform 0.2s, filter 0.2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

.whatsapp-btn {
  background: #25D366;
}

.facebook-btn {
  background: #1877F2;
}

.tiktok-btn {
  background: #000000;
}

/* ---------- Form Wrapper ---------- */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(30px, 5vw, 55px);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(10, 37, 64, 0.05);
}

.contact-form-wrapper h2 {
  font: 700 1.8rem 'Playfair Display', serif;
  margin: 0 0 30px;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.contact-form-wrapper form {
  border: none;
  padding: 0;
  background: transparent;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}

.contact-form-wrapper button {
  padding: 14px 28px;
  font-weight: 700;
}

#contact-result {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .contact-container {
    padding: 60px 16px 80px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .contact-visual {
    height: 170px;
    margin: -18px auto 38px;
    border-radius: 18px;
  }
}
