/* ================================
   YesDay.pl - Contact Page Styles
   ================================ */

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-highlight .icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-highlight h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
}

.form-success .icon {
    width: 80px;
    height: 80px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    margin-bottom: 1rem;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 400px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--secondary);
}

.map-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(156, 175, 136, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

.response-time strong {
    color: var(--sage);
}

.info-section {
    background: var(--light-gray);
}

.info-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

    .info-section .features-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding-top: 0;
}

/* Contact Info Styles */
.contact-info-wrapper {
    margin-top: 2rem;
}

.show-phone-btn {
    background: var(--accent-color);
    color: #555;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.phone-number {
    display: none;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
}

.contact-note p {
    font-size: 1rem;
    margin-bottom: 0;
}

.btn-full-width {
    width: 100%;
}

.mt-2 {
    margin-top: 2rem;
}