﻿
/* ===== CONTACT FORM ===== */
.contact-form-section {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}




/* ===== BREADCRUMB SPACING ===== */
#breadcrumb {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

#breadcrumb ul {
    list-style: none;
    display: flex;
    padding: 0;
    align-items: center;
    font-size: 14px;
max-width: 1200px;
    margin: 0 auto;
}

#breadcrumb li {
    display: flex;
    align-items: center;
    color: #6c757d; /* Color for the non-link (current page) text */
}

/* Add a separator between list items */
#breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #adb5bd;
    font-weight: normal;
}

/* Link styling */
#breadcrumb a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s ease-in-out;
}

#breadcrumb a:hover {
    text-decoration: underline;
    color: #0056b3;
}
