.cf-section {
    min-height: 100vh;
    /* background: linear-gradient(135deg, rgba(19, 30, 37, 0.95), rgba(26, 41, 128, 0.85)),
                url('/api/placeholder/1920/1080') center/cover fixed; */
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.cf-container {
    display: flex;
    max-width: 1300px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cf-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,var(--steelblue-1),var(--steelblue-5));
}

.cf-info {
    flex: 1;
    padding: 60px;
    /* background: linear-gradient(135deg, #1a2980, #26d0ce); */
    background: linear-gradient(90deg,var(--steelblue-1),var(--steelblue-5));
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 10px;
}

.cf-info::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.cf-info h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    /* color: #fff; */
}

.cf-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #fff;
    /* color: #fff; */
}

.cf-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    padding-left: 25px;
}

.cf-card:hover {
    transform: translateY(-5px);
}

.cf-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.cf-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cf-form {
    flex: 1;
    padding: 60px;
    background: #fff;
    padding-top: 10px;
}

.cf-form h2 {
    /* color: white; */
    margin-bottom: 40px;
    font-size: 2.5em;
    position: relative;
}

.cf-form h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background:var(--steelblue-1);
}

.cf-form-group {
    margin-bottom: 20px;
    position: relative;
}

.cf-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
    font-size: 0.95em;
}

.cf-form-group input,
.cf-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.cf-form-group input:focus,
.cf-form-group textarea:focus {
    border-color: var(--steelblue-1);
    outline: none;
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.1);
    background: #fff;
}

.cf-form-group textarea {
    height: 140px;
    resize: vertical;
}

.cf-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s;
}

.cf-whatsapp:hover {
    background: #edf7f7;
}

.cf-whatsapp input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cf-whatsapp label {
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.cf-submit {
    background: linear-gradient(135deg, var(--steelblue-1), var(--steelblue-5));
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 208, 206, 0.3);
}

.cf-submit::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cf-submit:hover::after {
    left: 100%;
}

.cf-error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    padding-left: 10px;
}

.cf-success {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: cf-slideIn 0.5s ease-out;
}

@keyframes cf-slideIn {
    from {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .cf-container {
        flex-direction: column;
        margin: 20px;
    }

    .cf-info,
    .cf-form {
        padding: 40px;
    }

    .cf-info h2,
    .cf-form h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .cf-section {
        padding: 20px 10px;
    }

    .cf-info,
    .cf-form {
        padding: 30px 20px;
    }

    .cf-info h2,
    .cf-form h2 {
        font-size: 1.8em;
    }

    .cf-card {
        padding: 20px;
    }
}