/* KONTAK PAGE CUSTOM STYLES */

/* 1. HERO CONTACT SECTION */
.contact-header {
  padding: 85px 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;
}

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

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

.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 dashed #e2e8f0;
}

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

.info-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bg-green { background: #dcfce7; color: #15803d; }
.bg-blue { background: #dbeafe; color: #1d4ed8; }
.bg-amber { background: #fef3c7; color: #b45309; }

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

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

/* 3. FORM STYLES */
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;
  background: var(--bg-main);
  color: var(--text-primary);
  transition: var(--transition);
}

input:focus, textarea:focus {
  border-color: var(--primary);
  background: white;
  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);
}

/* 4. MAP SECTION (STANDARDIZED SPACING & NO BLANK GAP ABOVE FOOTER) */
.map {
  padding: 85px 8%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  background: white;
}

.map-container {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e2e8f0;
  margin-top: 35px;
}

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

/* 5. RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  .contact-header {
    padding: 45px 16px;
  }

  .contact-container, .map {
    padding: 45px 16px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info, .form-box {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .map-container {
    height: 320px;
    border-radius: 20px;
  }
}