:root {
    --primary-color: maroon;
    --secondary-color: #fff;
    --black-color: #0000006b;
}



/* ===== BREADCRUMB BANNER ===== */
.breadcrumb-banner {
    position: relative;
    background: url("../all-images/carousel-img/4.png") center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
}

.breadcrumb-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.63);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.breadcrumb-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.breadcrumb-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-content .breadcrumb-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-content .breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb-banner {
        height: 280px;
        text-align: center;
    }

    .breadcrumb-content {
        padding-left: 0;
        width: 100%;
    }

    .breadcrumb-content h1 {
        font-size: 2rem;
    }

    .breadcrumb-content .breadcrumb {
        justify-content: center;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(to right, #fff, #f8f8f8);
}

.contact-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

/* ===== LEFT COLUMN ===== */
.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border-bottom: 4px solid var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(229, 7, 14, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card h5 {
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-card p {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== RIGHT COLUMN FORM ===== */
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px 15px !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(229, 7, 14, 0.3);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #b2050a;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        margin-top: 40px;
    }
}