/* =========================
   GET STARTED SECTION
========================= */
.get-started-section {
    padding: 100px 0;
    backdrop-filter: blur(4px);
    position: relative;
    max-width: 1400px;
    margin: 80px auto;
}

.get-started-section::before,
.get-started-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.get-started-section::before {
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(126, 217, 87, 0.15);
}

.get-started-section::after {
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(108, 92, 231, 0.15);
}

.get-started-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.gs-header {
    text-align: center;
    margin-bottom: 50px;
}

.gs-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gs-header h2 .color-orange {
    color: var(--color-orange);
}

.gs-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* FORM WRAPPER */
.gs-form-wrapper {
    max-width: 600px;
    margin: auto;
    background: rgba(18, 18, 18, 0.95);
    padding: 30px 25px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

/* FORM */
.gs-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gs-form .form-group {
    position: relative;
}

.gs-form input,
.gs-form textarea {
    width: 100%;
    padding: 16px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.gs-form textarea {
    resize: none;
}

/* FLOATING LABEL */
.gs-form label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.gs-form input:focus+label,
.gs-form input:not(:placeholder-shown)+label,
.gs-form textarea:focus+label,
.gs-form textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: var(--color-orange);
    background: rgba(18, 18, 18, 0.95);
}

/* BUTTON */
.gs-form button {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .gs-header h2 {
        font-size: 32px;
    }

    .gs-header p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .get-started-section {
        padding: 80px 10px;
    }

    .gs-header h2 {
        font-size: 28px;
    }

    .gs-header p {
        font-size: 15px;
    }

    .gs-form-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .get-started-section {
        padding: 60px 0;
    }

    .gs-form input,
    .gs-form textarea {
        font-size: 14px;
        padding: 14px 10px;
    }
}
