/* ============================================================
   KLUBDEASPIRERS — Advert Hall
   ============================================================ */

.ah-section { padding: 80px 0; }

/* ── Top: Description + Image ────────────────────────────────── */
.ah-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

/* Description */
.ah-desc p {
  color: #5A6282;
  line-height: 1.8;
  margin-bottom: 12px;
}
.ah-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ah-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1E2440;
  font-weight: 500;
}
.ah-list li i { color: #E02020; font-size: 0.9rem; flex-shrink: 0; }

/* Image */
.ah-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26,61,170,0.16);
  position: relative;
}
.ah-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.ah-img-fallback {
  display: none;
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #112880, #2550CC);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
}
.ah-img-fallback i    { font-size: 3.5rem; opacity: 0.5; }
.ah-img-fallback span { font-size: 1.1rem; font-weight: 600; color: #fff; }
.ah-img-fallback small{ font-size: 0.8rem; }

.ah-img-caption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #9399B2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ah-img-caption i { color: #E02020; }

/* ── Form Section ─────────────────────────────────────────────── */
.ah-form-section {
  border-top: 1px solid #EEF0F7;
  padding-top: 64px;
}
.ah-form-header { margin-bottom: 40px; }
.ah-form-header p {
  color: #5A6282;
  max-width: 500px;
  line-height: 1.7;
  margin-top: 8px;
}

.ah-form-wrap {
  max-width: 780px;
  background: #F8F8FB;
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: 0 4px 24px rgba(26,61,170,0.10);
}
.ah-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row */
.ah-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Field */
.ah-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ah-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E2440;
}
.ah-field label span { color: #E02020; }

.ah-field input,
.ah-field select,
.ah-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #cdd2e3;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #1E2440;
  background: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* Restore select arrow */
.ah-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239399B2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.ah-field input:focus,
.ah-field select:focus,
.ah-field textarea:focus {
  border-color: #1A3DAA;
  box-shadow: 0 0 0 3px rgba(26,61,170,0.09);
}
.ah-field textarea {
  resize: vertical;
  min-height: 110px;
  -webkit-appearance: none;
  appearance: auto;
}

.ah-submit { align-self: flex-start; padding: 13px 36px; }

/* Success */
.ah-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 18px 22px;
}
.ah-success i { font-size: 1.5rem; color: #2e7d32; flex-shrink: 0; }
.ah-success p { font-size: 0.9rem; color: #1b5e20; font-weight: 500; margin: 0; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ah-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ah-image { order: -1; }
  .ah-form-wrap { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .ah-section { padding: 56px 0; }
  .ah-row { grid-template-columns: 1fr; }
  .ah-form-wrap { padding: 28px 20px; }
  .ah-img-wrap img,
  .ah-img-fallback { height: 260px; }
  .ah-submit { width: 100%; justify-content: center; }
}
