
/* Główny kontener formularza */
.contact {
    max-width: 500px; /* Dostosuj do potrzeb */
    margin: 0 auto;
    font-family: 'Inter', sans-serif; /* Sugerowany font */
    color: white;
    margin-left: 50px;
    margin-right: 50px;
        text-align: center !important;
}

/* Styl etykiet (tekst nad linią) */
.form-contact-label-text {
    text-align: center !important;
    font-size: 1.5rem;
    font-weight: 700; /* Gruby font jak na foto */
    color: white;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

/* Styl pól tekstowych (input i textarea) */
.form-contact-input, 
.form-contact-textarea {
    width: 100%;
    background: transparent !important; /* Przezroczyste tło */
    border: none !important;
    border-bottom: 2px solid white !important; /* Tylko dolna linia */
    border-radius: 0 !important;
    padding: 10px 0 !important;
    color: white !important;
    font-size: 1.1rem;
    outline: none;
    box-shadow: none !important;
    
    
}

.form-contact-textarea{
    height: 50px !important;
}

/* Usuwanie koloru placeholderów, by nie przeszkadzały w czystym wyglądzie */
.form-contact-input::placeholder,
.form-contact-textarea::placeholder {
    color: rgb(255, 255, 255);
}

/* Styl przycisku WYŚLIJ */
.form-contact-submit {
    display: block;
    width: 100%;
    margin-top: 50px !important;
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 50px !important; /* Zaokrąglone brzegi (pigułka) */
    padding: 15px 30px !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-contact-submit:hover {
    background: white !important;
    color: #000 !important; /* Odwrócenie kolorów przy najechaniu */
}

/* Dodatkowe czyszczenie dla wrapperów */
.form-contact-wrapper, .form-contact-container {
    background: transparent;

}

.form-contact-title {
    font-weight: 800;
    margin-bottom: 10px;
}


.ca-contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.ca-contact-text {
    flex: 1;
}

.ca-contact-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
      color: white;
    font-weight: 700;
    line-height: 1.2;
}

.ca-contact-description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
}

.ca-contact-brand {
    font-size: 1.8rem;
    line-height: 1.6;
    color: white;
}

.ca-contact-brand strong {
    font-weight: 700;
    color: white;
}

.ca-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ca-contact-btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.ca-contact-btn-primary {
background: linear-gradient(135deg, #3c78e8 0%, #c45a9b 100%);
    color: white;
}

.ca-contact-btn-primary:hover {
    transform: translateY(-3px);
}

.ca-contact-btn-outline {
background: linear-gradient(135deg, #3c78e8 0%, #c45a9b 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ca-contact-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsywność */
@media (max-width: 768px) {
    .ca-contact-section {
        padding: 60px 20px;
    }
    
    .ca-contact-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .ca-contact-title {
        font-size: 2.5rem;
    }
    
    .ca-contact-description,
    .ca-contact-brand {
        font-size: 1.4rem;
        color: white;
    }
    
    .ca-contact-actions {
        width: 100%;
    }
    
    .ca-contact-btn {
        width: 100%;
    }
}



.form-contact-wrapper{
    background: none;
}



/* --- KONTAKT --- */
.ca-contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
        color: rgb(0, 0, 0);
}

.ca-contact-text { flex: 1; min-width: 300px; }
.ca-contact-actions { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap;
    color: white;
}

/* --- RWD (MOBILE) --- */
@media (max-width: 768px) {
    .ca-contact-flex { flex-direction: column; text-align: center; }
    .ca-contact-actions { justify-content: center; width: 100%; }
    .ca-btn { width: 100%; margin-bottom: 10px; }
    .ca-roi-wrapper { flex-direction: column; }
}