
.min-h-screen { min-height: 100vh; }
.text-center { text-align: center; }
.font-medium { font-weight: 500; }

.container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  overflow-x: hidden;
}


.hero-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #fff 100%);
  width: 100%;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
  width: 100%;
}
.hero-desc {
  font-size: 1.25rem;
  color: #64748b;
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 1.1rem;
  color: #64748b;
  width: 100%;
}

.contact-section {
  padding: 4rem 0;
  background: #fff;
  width: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  background: #f1f5f9;
  border-radius: 1rem;
  padding: 2rem;
  gap: 1.5rem;
  width: 100%;
}
.info-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.info-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.info-text {
  color: #334155;
  margin-bottom: 0.25rem;
}
.info-link {
  color: #2563eb;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.info-link:hover {
  text-decoration: underline;
}
.info-link.whatsapp {
  color: #22c55e;
}
.info-note {
  color: #64748b;
  font-size: 0.95rem;
}
.info-hours {
  color: #334155;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-block {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  width: 100%;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.form-group label {
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  background: #fff;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #bae6fd;
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-submit {
  background: #2563eb;
  color: #fff;
}
.btn-submit:hover {
  background: #0f172a;
}
.form-note {
  color: #64748b;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: #f8fafc;
  width: 100%;
}
.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  width: 100%;
}
.map-embed iframe {
  width: 100% !important;
  height: 400px;
  border: 0;
  display: block;
}

/* Call-to-Action Section */
.cta-section {
  padding: 4rem 0;
  background: #2563eb;
  color: #fff;
  width: 100%;
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-whatsapp {
  background: #22c55e;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #16a34a;
}
.btn-call {
  background: #fff;
  color: #2563eb;
  border: 1px solid #2563eb;
}
.btn-call:hover {
  background: #f1f5f9;
}

/* Responsive Fixes */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-block {
    padding: 2rem 1rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title,
  .cta-title {
    font-size: 1.4rem;
  }

  .hero-desc,
  .section-desc,
  .cta-desc {
    font-size: 1rem;
  }

  .info-title {
    font-size: 1rem;
  }

  .info-text,
  .info-note,
  .form-group label,
  .form-note {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }

  .contact-form-block {
    padding: 1rem;
  }

  .cta-section,
  .map-section {
    padding: 2rem 1rem;
  }
}
