/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: 14px;
    margin-top: 20px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e47911;
}

.breadcrumb strong {
    color: #222;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-header {
    background: white;
    padding: 30px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
}

.contact-header h1 {
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
}

.contact-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Contact Info Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #1a6bb3;
    font-size: 20px;
}

.contact-details h3 {
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin-bottom: 3px;
}

.contact-link {
    color: #1a6bb3;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    margin-top: 20px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: #222;
}

.time {
    color: #666;
    font-weight: 500;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e47911;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.required {
    color: #e74c3c;
}

.submit-btn {
    background: #ff6a00;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background: #e55a00;
}

/* Map Section */
.map-section {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.map-section h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.map-container {
    height: 400px;
    background: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    position: relative;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.faq-section h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #999;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}