/* ===== CONTACT STYLES ===== */

.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px 20px;
    }
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form button[type="submit"] {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-form button[type="submit"] {
        width: 100%;
    }
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-box,
.contact-cta-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info-box h3,
.contact-cta-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
    margin-top: 3px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-color), #ff6659);
    color: var(--white);
}

.contact-cta-box h3 {
    color: var(--white);
}

.contact-cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-buttons {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .map-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
}

/* ===== FIELDSET STYLES ===== */
.form-fieldset {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 1.5rem;
    background-color: #fafafa;
}

.form-fieldset legend {
    padding: 0 10px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

/* ===== RODO NOTICE ===== */
.rodo-notice {
    margin-top: 2.5rem;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rodo-notice p {
    margin: 0.8rem 0;
    color: #666;
}

.rodo-notice p:first-child {
    margin-top: 0;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.rodo-notice p:last-child {
    margin-bottom: 0;
}
