/* ================= PAGE BODY ================= */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
    color: #0e1625;
}


/* ================= HERO SECTION ================= */

.freelancer-hero {
    background: linear-gradient(
                    135deg,
                    rgba(14,22,37,0.85),
                    rgba(30,167,215,0.85)
                ),
                url('../images/hero_freelancer.png') center/cover no-repeat;

    padding: 220px 20px 160px;
    text-align: center;
    color: #fff;
}

.freelancer-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1px;
}

.freelancer-hero-content p {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* ================= FORM SECTION ================= */
/* ================= PREMIUM BACKGROUND ================= */

/* ================= BACKGROUND ================= */

.freelancer-form-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #f4f9fd, #ffffff);
    overflow: hidden;
}

/* Soft floating shapes */

.form-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: #1ea7d7;
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 350px;
    height: 350px;
    background: #0f5c7f;
    bottom: -120px;
    right: -100px;
}

/* ================= FORM CARD ================= */

.ultra-form-container {
    position: relative;
    max-width: 700px;
    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;
}

.ultra-form-container h2 {
    font-size: 34px;
    font-weight: 700;
}

.form-subtitle {
    margin: 15px 0 40px;
    color: #6c7a89;
    font-size: 15px;
}

/* ================= FLOATING INPUTS ================= */

.input-group {
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    background: #fff;
    transition: 0.3s ease;
}

.input-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 {
    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 {
    top: -8px;
    font-size: 12px;
    color: #1ea7d7;
}

/* ================= TOGGLE BUTTON ================= */

.toggle-group {
    margin-bottom: 35px;
    text-align: left;
}

.toggle-wrapper {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.toggle-wrapper input {
    display: none;
}

.toggle-wrapper label {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #1ea7d7;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.toggle-wrapper input:checked + label {
    background: #1ea7d7;
    color: #fff;
}

/* ================= 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;
    font-size: 14px;
}

.upload-label:hover {
    background: rgba(30,167,215,0.05);
}

.upload-label input {
    display: none;
}

/* ================= BUTTON ================= */

.ultra-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;
}

.ultra-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(30,167,215,0.35);
}

/* ================= RESPONSIVE ================= */

/* ================= FREELANCER HERO – MOBILE ================= */

@media (max-width: 768px) {

    .freelancer-hero {
        padding: 160px 40px 100px !important;
        text-align: center;
        min-height: auto !important;
    }

    .freelancer-hero-content h1 {
           font-size: 28px !important;
        line-height: 1.3;
    }

    .freelancer-hero-content 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;
}
