
/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.intro-content h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.intro-image {
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--light-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.form-control {
    border-radius: 0;
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(241, 35, 122, 0.25);
}

.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Contact Info Section */
.contact-info-wrapper {
    padding-left: 40px;
}

.contact-info-box {
    background: var(--light-color);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-social {
    margin-top: 40px;
}

.social-link {
    display: block;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Logo in contact-info-box */
.info-logo {
    max-height: 180px;
    max-width: 240px;
    transition: all 0.3s ease;
}
.logo-wrapper img.info-logo {
    max-height: 400px;
    max-width: 320px;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.brand-item {
    text-align: center;
    padding: 2px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    width: auto;
    filter: none !important;      /* No grayscale by default */
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-info-wrapper {
        padding-left: 0;
        padding-top: 40px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .intro-content {
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-form-wrapper,
    .contact-info-box {
        padding: 20px;
    }

    .brand-item img {
        max-height: 100px;
    }

    .info-logo {
        max-height: 120px;
        max-width: 180px;
        display: block;
        margin: 10px auto 0;
    }

    .logo-wrapper {
        text-align: center !important;
        width: 100%;
    }

    .d-flex.justify-content-between.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .contact-info-box .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}