/* =========================================
   SEKCJA KONTAKTOWA
   ========================================= */
.contact-section {
    padding: 100px 20px;
    background-color: #f8f9fa; /* Jasnoszare tło, żeby odciąć od białej sekcji "O nas" */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

/* --- Lewa strona: Informacje --- */
.contact-info {
    flex: 1;
}

.contact-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* --- Prawa strona: Formularz --- */
.contact-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #fdfdfd;
}

/* Focus: Gdy klikniesz w pole, ramka zmieni kolor na kolor główny firmy */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
}

/* =========================================
   FOOTER (STOPKA)
   ========================================= */
.site-footer {
    background-color: #2c3e50; /* Ciemny, elegancki grafit */
    color: #ecf0f1;
    padding-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Pozwala elementom zawijać się na telefonach */
    gap: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-logo p {
    color: #bdc3c7;
}

.footer-links h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color); /* Na hover używamy naszego pomarańczowego/żółtego akcentu! */
}

/* --- Dolny pasek z Creditsami --- */
.footer-bottom {
    background-color: #1a252f; /* Jeszcze ciemniejszy pasek na sam dół */
    padding: 20px 0;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credits a {
    color: #95a5a6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #ffffff; /* Podświetla się na biało po najechaniu */
}

/* =========================================
   RWD - Telefony
   ========================================= */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px; /* Mniejsze marginesy wewnątrz formularza na telefonie */
    }

    .bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}