/* KONTAK PAGE CUSTOM STYLES */

.contact-header {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f8fafc 100%);
}

.contact-header .badge {
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
}

.contact-header h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

/* CONTENT GRID */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  padding: 70px 8%;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info, .form-box {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
}

.contact-info h2, .form-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 24px;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.info-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-card i {
  font-size: 24px;
  color: var(--primary);
  background: var(--primary-light);
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

input, textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #cbd5e1;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

textarea {
  height: 140px;
  resize: none;
}

.form-box button {
  padding: 16px;
  border: none;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

/* MAP */
.map {
  padding: 40px 8% 80px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.map h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 24px;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}