/**
 * Contact Page Styles
 */

.page-hero {
    background: linear-gradient(135deg, #eef6fb 0%, #f6f8fa 100%);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.page-title { font-size: 40px; margin: 0 0 var(--spacing-sm) 0; }
.page-subtitle { font-size: 16px; color: var(--color-text); }

.contact-section { padding: var(--spacing-xxl) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: var(--spacing-xl); align-items: start; }

.contact-col .card { padding: var(--spacing-lg); border-radius: 8px; background: #fff; box-shadow: 0 6px 18px rgba(33,40,55,0.04); }

.contact-form .field { display: block; margin-bottom: var(--spacing-md); }
.contact-form .field span { display: block; margin-bottom: 8px; font-weight:600; color:var(--color-heading); }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { width:100%; padding:12px 14px; border:1px solid #E6EDF3; border-radius:6px; background:#FBFDFF; }
.contact-form textarea { resize:vertical; }
.form-actions { margin-top: 12px; }
.btn-primary { background: var(--color-primary); color: #fff; padding:10px 16px; border-radius:6px; border:none; cursor:pointer; }

.contact-cards { display:flex; flex-direction:column; gap:var(--spacing-md); }
.contact-card .card-title { font-size:16px; margin:0 0 8px 0; }
.contact-card .card-body { color: #586268; font-size:14px; line-height:1.6; }

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

/* Find Us Section */
.find-us-section { padding: var(--spacing-xxl) 0; background: #f6fbfd; }
.find-us-section .section-title { text-align: center; font-size:18px; margin-bottom: 18px; font-weight:700; }

.map-container { 
    border-radius: 8px; 
    overflow: hidden; 
    margin-bottom: 20px; 
}

.map-container img {
    display: block;
    width: 100%;
    height: auto;
}

.transport-cards { display:grid; grid-template-columns: repeat(2,1fr); gap:18px; }
.transport-card { background:#fff; padding:18px; border-radius:8px; box-shadow:0 6px 18px rgba(33,40,55,0.04); }
.transport-card h4 { margin:0 0 8px 0; font-size:16px; }
.transport-card p { margin:0; color:#65727a; font-size:14px; line-height:1.5; }

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

/* Department Contacts */
.department-section { padding: var(--spacing-xxl) 0; }
.department-section .section-title { text-align: center; font-size:18px; margin-bottom: 18px; font-weight:700; }
.department-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.department-card { padding: 20px; border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(33,40,55,0.04); }
.dept-title { margin:0 0 8px 0; font-size:16px; }
.dept-desc { margin:0 0 12px 0; color:#596669; font-size:14px; }
.dept-contact a { color: var(--color-primary); text-decoration: none; }

@media (max-width: 1200px) {
    .department-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .department-grid { grid-template-columns: 1fr; max-width: 350px; width: 100%; }
    
    .container {
        max-width: 350px;
        width: 100%;
        padding: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        width: 100%;
    }
    
    .transport-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
        width: 100%;
    }
}


