.site-main
{
  background:
        radial-gradient(circle at top, rgba(219, 13, 21, 0.12), transparent 45%),
        radial-gradient(circle at bottom, rgba(255, 0, 0, 0.06), transparent 55%);      
}


.rb-contact {
    width: 100%;
    padding: 140px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle animated glow */
.rb-contact::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;  
    filter: blur(60px);
    opacity: 0.6;
    animation: floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(40px);
    }
}

/* layout */
.rb-contact__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.rb-contact__subtitle {
    color: #ff4a52;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rb-contact__heading h2 {
    font-size: clamp(38px, 5vw, 64px);
    margin: 10px 0 30px;
    line-height: 1.1;
}

.rb-contact__info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rb-contact__item {
    display: flex;
    gap: 14px;
    align-items: center;

    padding: 14px 16px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: 0.3s ease;
}

.rb-contact__item:hover {
    transform: translateX(6px);
    border-color: rgba(219, 13, 21, 0.4);
    box-shadow: 0 0 25px rgba(219, 13, 21, 0.15);
}

.rb-contact__item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.rb-contact__item a:hover {
    color: #db0d15;
}

/* TEAM */
.rb-contact__team {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.rb-person {
    text-align: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s ease;
}

.rb-person:hover {
    transform: translateY(-6px);
    border-color: rgba(219, 13, 21, 0.4);
    box-shadow: 0 0 30px rgba(219, 13, 21, 0.12);
}

.rb-person img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid rgba(219, 13, 21, 0.3);
}


/* red accent line */
.rb-contact__right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #db0d15, transparent);
}

/* RIGHT FORM */
.rb-contact__right {
    padding: 40px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    position: relative;
    overflow: hidden;
}

.rb-contact__form h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.rb-row {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}


/* inputs */
input,
textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 20px !important;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    transition: 0.25s ease;
}

input:focus,
textarea:focus {
    border-color: #db0d15;
    box-shadow: 0 0 0 3px rgba(219, 13, 21, 0.15);
}

textarea {
    min-height: 140px;
    resize: none;
}

/* button */
#rb-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #db0d15, #ff2d35);
    border: none;
    padding: 14px 18px;
    border-radius: 14px !important;

    cursor: pointer;
    font-weight: 700;
    color: #fff !important;

    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(219, 13, 21, 0.25);
}

#rb-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(219, 13, 21, 0.35);
}





/* privacy */
.rb-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 10px;
    align-items: center;
}

.rb-privacy a {
    color: #db0d15;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.rb-privacy a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* IKONY */
.rb-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ff2d35;

  border: 1px solid rgba(255, 45, 53, 0.35);
  border-radius: 14px;

  background: rgba(255, 45, 53, 0.03);

  transition: 0.25s ease;

  /* 🔥 NEON GLOW BASE */
  box-shadow:
    0 0 8px rgba(255, 45, 53, 0.15),
    0 0 20px rgba(255, 45, 53, 0.08);
}

/* SVG sizing */
.rb-icon svg {
  width: 22px;
  height: 22px;

  stroke: currentColor;
  fill: none;
}

/* 🔥 HOVER = NEON BOOST */
.rb-contact__item:hover .rb-icon {
  color: #ff3b45;

  border-color: rgba(255, 45, 53, 0.7);

  transform: translateY(-2px) scale(1.05);

  box-shadow:
    0 0 12px rgba(255, 45, 53, 0.35),
    0 0 28px rgba(255, 45, 53, 0.25),
    0 0 60px rgba(255, 45, 53, 0.12);
}

/* 🔥 pulse glow (opcjonalnie mocny efekt SaaS) */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(255, 45, 53, 0.25),
      0 0 25px rgba(255, 45, 53, 0.15);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 45, 53, 0.45),
      0 0 40px rgba(255, 45, 53, 0.25);
  }
}

/* jeśli chcesz full neon mode */
.rb-icon.neon {
  animation: neonPulse 2.5s infinite ease-in-out;
}

.rb-success{
color: #00ff88;
margin-top:20px;
}
.rb-error{
color: #ff2727;
margin-top:20px;
}

/* responsive */
@media (max-width: 900px) {
    .rb-contact__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rb-row {
        flex-direction: column;
    }

    .rb-contact__team {
        flex-direction: column;
    }
}


