/* ================= CONTACT PAGE ================= */
.contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent, #ff8255));
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.contact-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* ================= CONTACT GRID ================= */
.contact-section {
  background-color: white;
  padding: 64px 20px;
}

.contact-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media(min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-grid h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ================= CONTACT FORM ================= */
.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250, 100, 50, 0.1);
}

.btn-submit {
  background-color: var(--primary);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
}

/* ================= CONTACT INFO ================= */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-pink);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= SOCIAL LINKS ================= */
.social-links {
  margin-top: 32px;
}

.social-links h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background-color 0.2s;
}

.social-icon-btn:hover {
  background-color: #e5e7eb;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background-color: #f9fafb;
  padding: 64px 20px;
}

.faq-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media(min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
}

.faq-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.faq-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ================= MAP PLACEHOLDER ================= */
.map-section {
  background-color: white;
  padding: 64px 20px;
  text-align: center;
}

.map-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.map-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.map-placeholder {
  background-color: #e5e7eb;
  height: 300px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ================= SUCCESS MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 12px;
  padding: 32px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.modal-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modal-box p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.btn-modal-ok {
  background-color: var(--primary);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-modal-ok:hover {
  background-color: var(--primary-hover);
}
