/* Contacts page styles (keeps the same minimal aesthetic as the rest of the site) */

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1a1a1a;
}

.separator {
    color: #a0a0a0;
}

.current {
    color: #1a1a1a;
    font-weight: 500;
}

.contacts-header {
    background: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.contacts-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contacts-header p {
    font-size: 1.125rem;
    color: #6a6a6a;
}

.contacts-content {
    padding: 2rem 0 4rem;
    background: #fafafa;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-card,
.map-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
}

.contact-card + .contact-card {
    margin-top: 1.5rem;
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.contact-card h2,
.contact-card h3,
.map-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
    color: #4a4a4a;
}

.status-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a0a0a0;
}

.status-pill.open {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
    color: #166534;
}

.status-pill.open .dot {
    background: #22c55e;
}

.status-pill.closed {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #991b1b;
}

.status-pill.closed .dot {
    background: #ef4444;
}

.contact-row {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-row:last-of-type {
    border-bottom: none;
}

.row-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.row-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.row-text {
    color: #2d2d2d;
}

.row-hint {
    margin-top: 0.35rem;
    color: #6a6a6a;
    font-size: 0.9rem;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0.75rem;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    font-size: 0.95rem;
}

.phones {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.phone-link {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.row-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.small-btn {
    padding: 0.6rem 1rem;
}

.contact-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.quick-links {
    margin-top: 0.75rem;
    color: #6a6a6a;
    font-size: 0.95rem;
}

.quick-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
}

.quick-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.dot-sep {
    margin: 0 0.25rem;
}

.bullets {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
    color: #4a4a4a;
}

.bullets li {
    margin: 0.5rem 0;
}

.divider {
    margin: 1.25rem 0;
    border-top: 1px solid #f0f0f0;
}

.mini-cta {
    display: flex;
    justify-content: flex-start;
}

.map-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.map-sub {
    color: #6a6a6a;
    font-size: 0.95rem;
}

.map-embed-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.map-embed {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.map-footer {
    margin-top: 1rem;
}

.map-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.map-note {
    margin-top: 0.75rem;
    color: #6a6a6a;
    font-size: 0.9rem;
}

.form-card {
    margin-top: 1.5rem;
}

.badge-soft {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    color: #4a4a4a;
    font-weight: 700;
    font-size: 0.8rem;
}

.field {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.field span {
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

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

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.form-hint {
    margin-top: 0.75rem;
    color: #6a6a6a;
    font-size: 0.9rem;
}

/* Toast */
.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    min-width: 240px;
    max-width: 420px;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 2500;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contacts-header h1 {
        font-size: 2rem;
    }

    .map-embed {
        height: 400px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}
