/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* =========================================
   BODY
========================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f3;
    color: #111;
    min-height: 100vh;
}


/* =========================================
   PAGE WRAPPER
========================================= */

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}


/* =========================================
   FORM CONTAINER
========================================= */

.form-container {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}


/* =========================================
   WELCOME SCREEN
========================================= */

.welcome-screen {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
}


/* =========================================
   WELCOME LOGO
========================================= */

.welcome-logo {
    margin-bottom: 45px;
}


.welcome-logo-img {
    display: block;
    width: 100px;
    max-width: 100px;
    height: auto;
    object-fit: contain;
}


/* =========================================
   WELCOME CONTENT
========================================= */

.welcome-content {
    width: 100%;
    max-width: 650px;
}


.welcome-small-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 22px;
    text-transform: uppercase;
}


.welcome-content h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    color: #111;
    margin-bottom: 25px;
}


.welcome-content p {
    max-width: 560px;
    margin: 0 auto 38px;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}


/* =========================================
   START BUTTON
========================================= */

.start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 9px;

    background: #FFD000 !important;
    background-color: #FFD000 !important;

    color: #111111 !important;

    border: 1px solid #FFD000 !important;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.start-btn:hover {
    background: #e6bb00 !important;
    background-color: #e6bb00 !important;
    border-color: #e6bb00 !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.start-btn:active {
    transform: translateY(0);
}


/* =========================================
   HEADER
========================================= */

.form-header {
    padding: 28px 45px 24px;
    border-bottom: 1px solid #e8e8e8;
    background: #ffffff;
}


/* =========================================
   LOGO SECTION
========================================= */

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80px;
    flex-shrink: 0;
}


.socioshoot-logo {
    display: block;
    width: 80px !important;
    max-width: 80px !important;
    height: auto !important;
    object-fit: contain;
}


/* =========================================
   SCALE TEXT
========================================= */

.scale-text {
    flex: 1;
    text-align: right;
    font-size: 15px;
    color: #111;
    letter-spacing: 0.2px;
}


.scale-text strong {
    font-weight: 600;
}


/* =========================================
   PROGRESS AREA
========================================= */

.progress-area {
    margin-top: 25px;
}


.progress-text {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 9px;
}


.progress-bar {
    width: 100%;
    height: 6px;
    background: #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
}


.progress-fill {
    width: 12.5%;
    height: 100%;
    background: #FFD000;
    border-radius: 20px;
    transition: width 0.35s ease;
}


/* =========================================
   FORM
========================================= */

#marketingForm {
    width: 100%;
}


/* =========================================
   FORM STEP
========================================= */

.form-step {
    display: none;
    padding: 55px 70px 45px;
    min-height: 450px;
}


.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   STEP NUMBER
========================================= */

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #111;
    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 25px;
}


/* =========================================
   HEADINGS
========================================= */

.form-step h1 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    color: #111;
    margin-bottom: 12px;
}


.subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 35px;
}


/* =========================================
   INPUT GROUP
========================================= */

.input-group {
    width: 100%;
    margin-bottom: 25px;
}


.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 9px;
}


/* =========================================
   INPUTS
========================================= */

.input-group input,
.input-group textarea {
    width: 100%;

    border: 1px solid #d8d8d8;

    background: #ffffff;

    color: #111;

    border-radius: 10px;

    padding: 15px 17px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.input-group input {
    height: 52px;
}


.input-group textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.5;
}


.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #999;
}


.input-group input:focus,
.input-group textarea:focus {
    border-color: #111;

    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.06);
}


/* =========================================
   OPTIONS GRID
========================================= */

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


/* =========================================
   BUDGET OPTIONS
========================================= */

.budget-options {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


/* =========================================
   OPTION CARD
========================================= */

.option-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 58px;

    padding: 16px 18px;

    border: 1px solid #dddddd;

    border-radius: 10px;

    background: #ffffff;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.option-card:hover {
    border-color: #111;
    background: #fafafa;
    transform: translateY(-1px);
}


.option-card span {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}


/* =========================================
   CHECKBOX / RADIO
========================================= */

.option-card input {
    appearance: none;
    -webkit-appearance: none;

    width: 19px;
    height: 19px;

    border: 1.5px solid #999;

    margin-right: 13px;

    flex-shrink: 0;

    cursor: pointer;

    background: #ffffff;

    position: relative;

    transition: all 0.2s ease;
}


/* =========================================
   CHECKBOX
========================================= */

.option-card input[type="checkbox"] {
    border-radius: 5px;
}


/* =========================================
   RADIO
========================================= */

.option-card input[type="radio"] {
    border-radius: 50%;
}


/* =========================================
   CHECKED STATE
========================================= */

.option-card input:checked {
    background: #FFD000;
    border-color: #FFD000;
}


/* =========================================
   CHECKBOX TICK
========================================= */

.option-card input[type="checkbox"]:checked::after {

    content: "";

    position: absolute;

    width: 5px;
    height: 9px;

    border-right: 2px solid #111;
    border-bottom: 2px solid #111;

    transform: rotate(45deg);

    left: 6px;
    top: 3px;
}


/* =========================================
   RADIO DOT
========================================= */

.option-card input[type="radio"]:checked::after {

    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    background: #111;

    border-radius: 50%;

    left: 5px;
    top: 5px;
}


/* =========================================
   SELECTED OPTION CARD
========================================= */

.option-card:has(input:checked) {

    border-color: #FFD000;

    background: #fffdf0;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.04);
}


/* =========================================
   NAVIGATION
========================================= */

.form-navigation {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 25px 70px 35px;

    border-top: 1px solid #eeeeee;

    background: #ffffff;
}


/* =========================================
   ALL NAVIGATION BUTTONS
========================================= */

.form-navigation button {

    height: 50px;

    padding: 0 25px;

    border-radius: 9px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================
   BACK BUTTON
========================================= */

.back-btn {

    background: #ffffff;

    color: #222;

    border: 1px solid #d5d5d5;
}


.back-btn:hover {

    border-color: #111;

    background: #f8f8f8;
}


/* =========================================
   NEXT BUTTON - YELLOW
========================================= */

#nextBtn {

    margin-left: auto;

    background: #FFD000 !important;

    background-color: #FFD000 !important;

    color: #111111 !important;

    border: 1px solid #FFD000 !important;
}


#nextBtn:hover {

    background: #e6bb00 !important;

    background-color: #e6bb00 !important;

    border-color: #e6bb00 !important;

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.10);
}


#nextBtn:active {

    transform: translateY(0);

}


/* =========================================
   SUBMIT BUTTON - BLACK
========================================= */

#submitBtn {

    display: none;

    margin-left: auto;

    background: #111111 !important;

    background-color: #111111 !important;

    color: #ffffff !important;

    border: 1px solid #111111 !important;
}


#submitBtn:hover {

    background: #333333 !important;

    background-color: #333333 !important;

    border-color: #333333 !important;

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.10);
}


/* =========================================
   MOBILE - TABLET
========================================= */

@media (max-width: 768px) {


    .page-wrapper {
        padding: 15px;
    }


    .form-container {
        border-radius: 14px;
    }


    /* WELCOME */

    .welcome-screen {
        min-height: 600px;
        padding: 50px 25px;
    }


    .welcome-logo {
        margin-bottom: 35px;
    }


    .welcome-logo-img {
        width: 85px;
        max-width: 85px;
    }


    .welcome-small-text {
        font-size: 10px;
        letter-spacing: 1.5px;
    }


    .welcome-content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }


    .welcome-content p {
        font-size: 15px;
    }


    .start-btn {
        height: 52px;
        padding: 0 26px;
    }


    /* HEADER */

    .form-header {
        padding: 22px 22px 20px;
    }


    .logo-section {
        gap: 15px;
    }


    .logo {
        width: 65px;
    }


    .socioshoot-logo {
        width: 65px !important;
        max-width: 65px !important;
    }


    .scale-text {
        font-size: 13px;
    }


    .progress-area {
        margin-top: 20px;
    }


    /* FORM */

    .form-step {
        padding: 40px 25px 35px;
        min-height: 420px;
    }


    .step-number {
        width: 42px;
        height: 42px;
        font-size: 13px;
        margin-bottom: 20px;
    }


    .form-step h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }


    .subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }


    .options-grid {
        grid-template-columns: 1fr;
    }


    .form-navigation {
        padding: 20px 25px 25px;
    }


    .form-navigation button {
        height: 48px;
        padding: 0 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {


    .page-wrapper {
        padding: 8px;
    }


    .form-container {
        border-radius: 12px;
    }


    /* WELCOME */

    .welcome-screen {
        min-height: 580px;
        padding: 40px 18px;
    }


    .welcome-logo-img {
        width: 75px;
        max-width: 75px;
    }


    .welcome-content h1 {
        font-size: 34px;
        line-height: 1.08;
    }


    .welcome-content p {
        font-size: 14px;
        line-height: 1.6;
    }


    .start-btn {
        width: 100%;
        max-width: 280px;
    }


    /* FORM */

    .form-header {
        padding: 18px;
    }


    .logo {
        width: 58px;
    }


    .socioshoot-logo {
        width: 58px !important;
        max-width: 58px !important;
    }


    .scale-text {
        font-size: 12px;
    }


    .form-step {
        padding: 32px 18px 30px;
    }


    .form-step h1 {
        font-size: 25px;
    }


    .subtitle {
        font-size: 14px;
    }


    .input-group input {
        height: 50px;
        padding: 14px;
    }


    .input-group textarea {
        padding: 14px;
    }


    .option-card {
        padding: 14px;
        min-height: 55px;
    }


    .option-card span {
        font-size: 14px;
    }


    .form-navigation {
        padding: 18px;
    }


    .form-navigation button {
        font-size: 13px;
        padding: 0 16px;
    }

}


/* =========================================
   VERY SMALL SCREENS
========================================= */

@media (max-width: 360px) {


    .welcome-content h1 {
        font-size: 30px;
    }


    .scale-text {
        font-size: 11px;
    }


    .form-step h1 {
        font-size: 23px;
    }


    .form-navigation button {
        padding: 0 13px;
    }

}