:root {
    --primary-color: #0093c4;
    --secondary-color: #f7f7f9;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bg-primary-custom {
    background-color: var(--primary-color);
}
.bg-secondary-custom {
    background-color: var(--secondary-color);
}
.btn-orange {
    background-color: #ff6700;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-outline-primary-custom {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
}
.checkmark {
    color: #2ecc71;
    margin-right: 5px;
}
.hero-section {
    padding: 50px 0;
    color: white;
}
.control-points img {
    border-radius: 10px;
    max-width: 100%;
}
.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.search-box {
    background-color: white;
    border-radius: 5px;
    padding: 5px 10px;
    width: 80%;
    margin: 0 auto;
}
.control-item {
    text-align: center;
    margin-bottom: 20px;
}
.control-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}
.control-check-list li {
    margin-bottom: 8px;
}

#expertise-tabs{
    position: relative;
}
#expertise-tabs .nav-item{
    width: 100%;
}
@media (min-width: 768px) {
    #expertise-tabs .nav-item{
        width: 20%;
    }
}
#expertise-tabs .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-weight: 500 !important;
    text-wrap: wrap;
    text-align: center;
}

.inspection-image {
    object-fit: cover;
}
#inspectionAccordion .accordion-body{
    padding: 0;
}
.expert-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    padding: 2.5rem;
}

.image-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 10px 0 0 10px;
}

/*.form-title {*/
/*    color: #2c3e50;*/
/*    font-weight: 600;*/
/*    margin-bottom: 0.5rem;*/
/*    font-size: 1.5rem;*/
/*}*/

.form-subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/*.form-control {*/
/*    border: 2px solid #e9ecef;*/
/*    border-radius: 8px;*/
/*    padding: 0.75rem 1rem;*/
/*    font-size: 0.95rem;*/
/*    transition: all 0.3s ease;*/
/*}*/

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-label {
    color: #5a6c7d;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.mechanic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 10px 10px 0;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    color: #6c757d;
}

.input-group .form-control {
    border-left: none;
}

.location-icon {
    color: #3498db;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .form-container {
        margin: 1rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .image-section {
        border-radius: 10px 10px 0 0;
        min-height: 200px;
    }

    .mechanic-image {
        border-radius: 10px 10px 0 0;
        height: 200px;
    }
}
