body,
html {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    scroll-behavior: smooth;
    padding-top: 35px;
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
}

.loading-logo {
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite;
    display: block;
    margin: 20% auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

header .navbar {
    border-bottom: solid 2px #ddd;
    box-shadow: 0px 0px 5px 4px #ddd;
}

.hero-section {
    min-height: 550px;
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.custom-gradient-bg {
    background: linear-gradient(to right, #F7F5F0 0%, #F7F5F0 60%, transparent 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f5f0;
    z-index: -1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.banner-content-wrapper {
    max-width: 550px;
    margin-left: 2rem;
}

.banner-product-img {
    max-width: 75%;
    height: auto;
    display: block;
    position: relative;
    right: 10%;
    top: 20px;
    z-index: 2;
}

.brand-sub-title {
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6c757d;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.btn-dark {
    background-color: #212529;
    border-color: #212529;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-dark:hover {
    background-color: #000;
    border-color: #000;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .col-lg-7,
    .col-lg-5 {
        width: 100%;
    }

    .banner-content-wrapper {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .banner-product-img {
        max-width: 70%;
        margin-top: 3rem;
        position: static;
        right: auto;
        top: auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }
}

.about-us-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-us-section .display-5 {
    font-size: 3rem;
}

.about-us-section .lead {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about-us-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.services-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-section .display-5 {
    font-size: 3rem;
}

.services-section .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.service-card .card-title {
    font-size: 1.5rem;
}

.service-card .card-text {
    min-height: 70px;
}

.spare-parts-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.spare-parts-section .display-5 {
    font-size: 3rem;
}

.spare-parts-section .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spare-part-card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spare-part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.spare-part-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spare-part-card .card-body {
    padding: 1.5rem;
}

.spare-part-card .card-title {
    font-size: 1.25rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spare-part-card .card-text {
    font-size: 0.95rem;
    min-height: 40px;
}

.spare-part-card .price {
    color: var(--bs-primary);
}

.spare-part-card .card-body.d-flex {
    display: flex;
    flex-direction: column;
}

.spare-part-card .mt-auto {
    margin-top: auto !important;
}

.faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-section .display-5 {
    font-size: 3rem;
}

.faq-section .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: var(--bs-primary-bg-subtle);
    box-shadow: none;
    border-bottom: 1px solid var(--bs-primary-border-subtle);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button.fw-bold {
    font-weight: 600 !important;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.6;
}

.accordion-body.text-secondary {
    color: #6c757d;
}

.contact-section-bg-image {
    min-height: 700px;
    background-color: #343a40;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}

.contact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-section-bg-image .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper h2,
.contact-form-wrapper .lead,
.contact-form-wrapper .form-label,
.contact-form-wrapper h4,
.contact-form-wrapper p {
    color: #343a40 !important;
}

.contact-form-wrapper a.text-decoration-none.text-dark {
    color: #343a40 !important;
}

.contact-form-wrapper .form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.contact-form-wrapper .btn-primary {
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.contact-form-wrapper .bi {
    font-size: 1.2rem;
    vertical-align: middle;
}

.footer {
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer .text-muted {
    color: #fff !important;
}

.footer p.text-muted {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer a.text-muted {
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer a.text-muted:hover {
    color: var(--bs-primary) !important;
}

.footer .social-icons a {
    transition: transform 0.2s ease;
}

.footer .social-icons a:hover {
    transform: translateY(-3px);
    color: var(--bs-primary) !important;
}

.footer .list-inline-item a:hover {
    color: var(--bs-primary) !important;
}

.page-header {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.section-padding {
    padding: 80px 0;
}

.text-primary-custom {
    color: #007bff;
}

.bg-primary-light {
    background-color: #e0f2f7;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.card.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 767.98px) {
    .contact-section-bg-image {
        min-height: 800px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-section-bg-image h2 {
        font-size: 2.5rem;
    }

    .contact-section-bg-image .lead {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section .row {
        flex-direction: column-reverse;
    }

    .text-md-start {
        text-align: center !important;
    }

    .banner-content-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}