/* FORM CARD - COMPACT */
.repair-form-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    /* 👈 control width */
    margin-left: auto;
    /* align right */
}

/* TITLE */
.repair-form-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: #0d6efd;
    font-weight: 600;
}

.repair-form-card p {
    font-size: 13px;
    margin-bottom: 15px;
    color: #777;
}

/* INPUTS */
.form-group {
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    transition: 0.25s ease;
    background: #fafafa;
}

.form-group input:focus {
    border-color: #0d6efd;
    background: #fff;
    outline: none;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 10px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #084298;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .repair-form-card {
        max-width: 100%;
        margin: 30px auto 0;
        /* center on mobile */
    }
}

.our-services {
    background-image: url(../images/service-bg-shape.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 47px 0;
}

.our-protection {
    padding: 37px 0;
}

.vision-card, .mission-card {
    border-radius: 15px;
    transition: 0.3s ease;
    background: #ffffff;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
}

.icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 28px;
}


.client-scroll-vertical {
    max-height: 260px;
    /* adjust if needed */
    overflow-y: auto;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 per row */
    gap: 10px;
    /* reduced gap */
}

.client-grid img {
    width: 100%;
    height: 85px;
    /* smaller for compact look */
    object-fit: contain;
    opacity: 0.75;
    transition: 0.3s;
}

.client-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* scrollbar clean */
.client-scroll-vertical::-webkit-scrollbar {
    width: 5px;
}

.client-scroll-vertical::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}


.sticky-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.sticky-contact a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* CALL BUTTON */
.call-btn {
    background: #0d6efd;
}

/* WHATSAPP BUTTON */
.wa-btn {
    background: #25D366;
}

.sticky-contact a:hover {
    transform: scale(1.1);
}

/* MOBILE SIZE */
@media(max-width:768px) {
    .sticky-contact a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.footer-social-links {
    width: 40%;
    text-align: right;
}