/* ============================================
   GLOBAL DARK BACKGROUND
============================================ */
body {
  background-color: #0f0f10 !important;
  color: #f9fafb;
}

/* ============================================
   HERO SECTION
============================================ */

.contact-hero {
  padding: 120px 20px 60px;
  background: #0f0f10;
}

.contact-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* FORM CARD */
.kontakt-form-wrapper {
  background: #18181b;
  border-radius: 20px;
  padding: 28px 26px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.75);
}

.kontakt-form-wrapper h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.kontakt-form-wrapper p {
  color: #c3c3ca;
  margin-bottom: 20px;
}

/* ============================================
   FORM
============================================ */

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontakt-form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  background: #111113;
  border: 1px solid #2a2a2d;
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
  color: #707078;
}

.kontakt-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* SUBMIT BUTTON */
.kontakt-submit {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  background: #b91c1c;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(185,28,28,0.55);
  transition: 0.25s ease;
}

.kontakt-submit:hover {
  background: #d32f2f;
}

/* ============================================
   TEAM SECTION
============================================ */

.kontakt-people {
  padding: 70px 20px 50px;
}

.kontakt-people-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.kontakt-people-inner h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.kontakt-people-sub {
  color: #b4b4bb;
  margin-bottom: 30px;
}

/* FIXED PREMIUM GRID */
.kontakt-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  padding-top: 20px;
}

/* PERSON CARD */
.person-card {
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 22px 20px;
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.25s ease;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.7);
}

.person-header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.person-avatar {
  width: 48px;
  height: 48px;
  background: #26262a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff4f4f;
  font-size: 1.2rem;
  font-weight: 700;
}

.person-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.person-role {
  font-size: 0.85rem;
  color: #b0b0b7;
}

.person-meta {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.person-link {
  text-decoration: none;
  color: #ff6b6b;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.person-link:hover {
  color: #ffdada;
}

/* ============================================
   MAP SECTION
============================================ */

.kontakt-map {
  padding: 60px 20px 100px;
}

.kontakt-map-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 28px;
  align-items: center;
}

.kontakt-map-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.kontakt-map-text p {
  color: #b4b4bb;
  margin-bottom: 12px;
}

.kontakt-map-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.kontakt-map-list li {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #d0d0d8;
}

.kontakt-map-list li::before {
  content: "• ";
  color: #f93f3f;
}

.kontakt-map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: #141416;
  box-shadow: 0 18px 50px rgba(0,0,0,0.75);
}

.kontakt-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   FOOTER ICONS
============================================ */

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-socials img {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  transition: 0.25s ease;
}

.footer-socials img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================
   REVEAL ANIMATION
============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-left.visible,
.reveal-right.visible {
  transform: translateX(0);
}

.reveal-top {
  transform: translateY(-40px);
}

.reveal-bottom {
  transform: translateY(40px);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 900px) {
  .kontakt-form-row-two {
    grid-template-columns: 1fr;
  }

  .kontakt-map-inner {
    grid-template-columns: 1fr;
  }
}
