/* Contact Page Styles - Simple & Clean */
.contact-main {
    margin-top: 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Sections */
.contact-section {
    padding: 4rem 0;
}

.contact-section:nth-child(even) {
    background: #f8fafc;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* Contact Details */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list strong {
    min-width: 120px;
    color: #374151;
    font-weight: 600;
}

.contact-list a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

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

.careers-note {
    text-align: center;
    color: #666;
    font-size: 1rem;
}

.careers-note a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.careers-note a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-container {
    max-width: 600px;
    margin: 0 auto;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://external-preview.redd.it/real-time-bus-departures-on-google-maps-now-available-in-v0-HlNle6L_N804EQWOTEIeeAf0SmExdvJ9OMiJGAgm5Sg.jpg?auto=webp&s=665473e8945853064bd5e3128aa9ee89d5ca4f7f') center center;
    background-size: cover;
    border-radius: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.map-link {
    position: relative;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 200px;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(175, 9, 9, 0.15);
    color: rgb(180, 16, 16);
}

.map-link:hover .map-background {
    opacity: 0.9;
}

.map-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

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

.map-text {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.map-caption {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.map-action {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-fieldset {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-fieldset legend {
    font-weight: 600;
    color: #374151;
    padding: 0 0.5rem;
    font-size: 1.1rem;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Radio and Checkbox Styles */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.radio-label span,
.checkbox-label span {
    line-height: 1.4;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.submit-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Form Note */
.form-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-fieldset {
        padding: 1rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-list strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-fieldset {
        padding: 0.75rem;
    }
    
    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
