/* section banner start */
.banner {
  background-image: url("../images/dom-modulowy-min.png");
  min-height: 60rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent);
}

.banner-content {
  position: relative;
  z-index: 6;
  /* width: 50rem; */
  display: flex;
  height: 100%;
  min-height: 60rem;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.banner-content h3 {
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-content p {
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
  width: fit-content;
}
/* section banner end */

/* section main start */
.main-content {
  margin-top: 3rem;
}

.heading-h4 {
  text-align: center;
  display: block;
  font-size: 3.8rem;
  color: #3f3f3f;
}

.content-inner {
  display: flex;
  margin-top: 4rem;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.content-desc {
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.content-desc p {
  font-size: 2rem;
  width: 70%;
  text-align: justify;
  line-height: 1.5;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-content h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 2rem;
  color: #666;
  margin-bottom: 30px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  margin: 30px 0;
}

.cta-text {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.phone-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.phone-link svg {
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
}

@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* section main end */
