/* ===================================
    Coretec Solutions - Custom Styles
====================================== */

/* Hero section dark blue background */
.coretec-hero-bg {
    background: linear-gradient(135deg, #080d2a 0%, #111855 55%, #0c1540 100%);
    min-height: 100vh;
}

/* CTA section blue gradient */
.coretec-cta-bg {
    background: linear-gradient(135deg, #343CD9 0%, #1e26b5 100%);
}

/* Brand boxes hover effect */
.brand-box {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-box:hover {
    border-color: var(--base-color) !important;
    box-shadow: 0 8px 24px rgba(52, 60, 217, 0.12);
}

/* Form inputs */
.cotizacion-form .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}
.cotizacion-form .form-control:focus {
    border-color: var(--base-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 60, 217, 0.15);
}

/* Check icon circles */
.check-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: var(--base-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero brand tags */
.hero-brands span {
    opacity: 0.9;
}
.hero-brands .separator {
    opacity: 0.4;
}

/* Section paddings */
.section-py {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 991px) {
    .section-py {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .coretec-hero-bg {
        min-height: auto;
    }
}
@media (max-width: 575px) {
    .section-py {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Hero h1 responsive */
@media (max-width: 991px) {
    .coretec-hero-bg h1 {
        font-size: 4.5rem;
        line-height: 4rem;
    }
}
@media (max-width: 575px) {
    .coretec-hero-bg h1 {
        font-size: 3.5rem;
        line-height: 3.2rem;
    }
}
