body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
    color: #0e1625;
}

/* ================= HERO ================= */
/* ================= BUSINESS HERO ================= */

/* ================= HERO ================= */

.business-hero {
    background: linear-gradient(
                    135deg,
                    rgba(30,167,215,0.85),
                    rgba(14,22,37,0.85)
                ),
                url('../images/hero_business.png') center/cover no-repeat;

    padding: 220px 20px 160px;
    text-align: center;
    color: #fff;
}

.business-hero h1 {
    font-size: 52px;
    font-weight: 800;
}

.business-hero p {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0.95;
}

/* ================= BACKGROUND ================= */

.business-form-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #f4f9fd, #ffffff);
    overflow: hidden;
}

/* Floating shapes */

.business-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: #1ea7d7;
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 350px;
    height: 350px;
    background: #0f5c7f;
    bottom: -120px;
    right: -100px;
}

/* ================= FORM CARD ================= */

.business-form-container {
    position: relative;
    max-width: 750px;
    margin: auto;
    padding: 70px 50px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(25px);
    border-radius: 24px;

    box-shadow:
        0 40px 80px rgba(0,0,0,0.08),
        0 10px 30px rgba(30,167,215,0.15);

    text-align: center;
}

.business-form-container h2 {
    font-size: 32px;
    font-weight: 700;
}

.form-subtitle {
    margin: 15px 0 40px;
    color: #6c7a89;
}

/* ================= INPUTS ================= */

.input-group,
.textarea-group {
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.input-group input,
.textarea-group textarea {
    width: 100%;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    background: #fff;
    transition: 0.3s ease;
}

.textarea-group textarea {
    min-height: 130px;
    resize: none;
}

.input-group label,
.textarea-group label {
    position: absolute;
    left: 16px;
    top: 18px;
    color: #94a3b8;
    font-size: 14px;
    transition: 0.3s ease;
    pointer-events: none;
    background: #fff;
    padding: 0 6px;
}

.input-group input:focus,
.textarea-group textarea:focus {
    border-color: #1ea7d7;
    box-shadow: 0 0 0 4px rgba(30,167,215,0.1);
    outline: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.textarea-group textarea:focus + label,
.textarea-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #1ea7d7;
}

/* ================= FILE UPLOAD ================= */

.file-upload {
    margin-bottom: 30px;
}

.upload-label {
    display: block;
    padding: 18px;
    border-radius: 16px;
    border: 2px dashed #1ea7d7;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.upload-label:hover {
    background: rgba(30,167,215,0.05);
}

.upload-label input {
    display: none;
}

/* ================= BUTTON ================= */

.business-btn {
    margin-top: 10px;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #0f5c7f, #1ea7d7);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.business-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(30,167,215,0.35);
}

/* ================= RESPONSIVE ================= */

/* ================= BUSINESS HERO – MOBILE ================= */

/* ================= BUSINESS HERO – MOBILE MATCH CONTACT ================= */

/* ================= FORCE BUSINESS HERO MOBILE FIX ================= */

@media (max-width: 768px) {

    .business-hero {
        padding: 160px 40px 100px !important;
        text-align: center;
        min-height: auto !important;
    }

    .business-hero h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .business-hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

}

/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #0e1625, #162c46);
    color: #ffffff;
    padding-top: 100px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col {
    text-align: center;
}
.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #1ea7d7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1ea7d7;
    padding-left: 5px;
}

.footer-contact-info li {
    color: #cbd5e1;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1ea7d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #1ea7d7;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0b1220;
    color: #9aa5b1;
    font-size: 14px;
}

.nav-links a.active {
    color: #1ea7d7;
    font-weight: 600;
}
.contact-info-footer li {
    justify-content: center;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    color: #1ea7d7;
    width: 18px;
}

.contact-info a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-info a:hover {
    color: #1ea7d7;
}
/* FORCE FIX FOOTER CONTACT BACKGROUND */

.footer .contact-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}