/* ===== Contact Page Styles ===== */

/* Breadcrumb */
.breadcrumb-bar {
    background: #f5f5f5;
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}
.breadcrumb-bar a { color: var(--teal); font-weight: 600; }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar span { margin: 0 6px; color: #ccc; }

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--teal-light), #e8f8f8);
    padding: 40px 0;
    text-align: center;
}
.contact-hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

/* Office Section */
.contact-office {
    padding: 40px 0;
    background: #fff;
}
.office-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}
.office-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.office-address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}
.office-address i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Office hours */
.office-hours { margin-top: 10px; }
.hours-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 10px;
}
.hours-status i { font-size: 14px; }
.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.hours-table td {
    padding: 6px 12px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}
.hours-table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 100px;
}

/* 4 Contact Sections */
.contact-sections {
    padding: 40px 0 60px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-number {
    background: var(--teal);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 800;
}
.contact-card:nth-child(2) .card-number { background: var(--primary); }
.contact-card:nth-child(3) .card-number { background: var(--secondary); }
.contact-card:nth-child(4) .card-number { background: #555; }

.card-body {
    padding: 20px;
}
.card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.card-subtitle {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}
.contact-card:nth-child(2) .card-subtitle { color: var(--primary); }
.contact-card:nth-child(3) .card-subtitle { color: var(--secondary); }
.contact-card:nth-child(4) .card-subtitle { color: #555; }

.card-info { }
.info-row {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
}
.info-row:last-child { border-bottom: none; }
.info-label {
    color: var(--text-light);
    flex-shrink: 0;
    min-width: 65px;
}
.info-value {
    color: var(--dark);
    font-weight: 600;
    word-break: break-all;
}
.info-value a {
    color: var(--teal);
}
.info-value a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .office-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-hero h1 { font-size: 22px; }
}
