/* Layout and typography */

.section-modern {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 400;
}

/* Text gradient utility */
.text-gradient {
  color: #FBBF24;                          /* ← Solid gold color */
  font-weight: 800;                        /* ← Mocniejszy akcent */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* ← Czytelność */
  position: relative;
}

.text-gradient::after {                     /* ← Gradient jako linia */
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);      /* ← Visual impact */
  border-radius: 2px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card > .row {
  align-items: stretch;
}

.contact-card > .row > div {
  display: flex;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
  height: 100%;
}

.contact-item > div:last-child {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.contact-item .contact-btn {
  margin-top: auto;
  margin-left: -1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

/* Contact buttons */
.contact-btn {
  padding: 10px 18px;
  font-size: 0.85rem;
  background: white;
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  white-space: nowrap;
}

.contact-btn:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-btn i {
  transition: transform 0.3s ease;
}

.contact-btn:hover i {
  transform: translateX(3px);
}