/* =====================================================
   PREMIUM CONSULTATION PAGE
   ===================================================== */


/* =====================================================
   MAIN BACKGROUND
   ===================================================== */

.premium-consultation {

    min-height: 100vh;

    width: 100%;

    padding: 80px 25px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(45, 212, 191, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(99, 102, 241, 0.20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071c24,
            #0b2932 45%,
            #101a38
        );
}


/* =====================================================
   BACKGROUND GRID
   ===================================================== */

.premium-consultation::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.06;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.5) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    pointer-events: none;
}


/* =====================================================
   FLOATING ORBS
   ===================================================== */

.premium-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

    animation: floatingOrb 7s ease-in-out infinite;
}


.orb-one {

    width: 300px;
    height: 300px;

    background:
        radial-gradient(
            circle,
            rgba(45,212,191,0.25),
            transparent 70%
        );

    top: -100px;
    left: -80px;
}


.orb-two {

    width: 400px;
    height: 400px;

    background:
        radial-gradient(
            circle,
            rgba(99,102,241,0.22),
            transparent 70%
        );

    right: -150px;
    bottom: -180px;

    animation-delay: -3s;
}


.orb-three {

    width: 180px;
    height: 180px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.08),
            transparent 70%
        );

    top: 30%;
    right: 10%;

    animation-delay: -5s;
}


@keyframes floatingOrb {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(20px,-25px);
    }
}


/* =====================================================
   MAIN CARD
   ===================================================== */

.premium-card {

    width: 100%;

    max-width: 1050px;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    position: relative;

    z-index: 5;

    overflow: hidden;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.96);

    box-shadow:
        0 40px 100px rgba(0,0,0,0.35);

    border:
        1px solid rgba(255,255,255,0.5);

    animation: cardEntrance 0.8s ease;
}


@keyframes cardEntrance {

    from {
        opacity: 0;

        transform:
            translateY(40px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =====================================================
   LEFT INFORMATION
   ===================================================== */

.premium-info {

    padding: 65px 50px;

    position: relative;

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            145deg,
            #123c44,
            #0d5860 50%,
            #25376d
        );
}


/* Decorative circle */

.premium-info::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    right: -150px;

    bottom: -120px;
}


/* =====================================================
   BADGE
   ===================================================== */

.premium-badge {

    display: inline-block;

    padding: 8px 13px;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.15);

    color: #8ee8dc;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


/* =====================================================
   LEFT HEADING
   ===================================================== */

.premium-info h2 {

    margin: 25px 0 20px;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 43px;

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.premium-info h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #6de1d2,
            #a6a9ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.premium-description {

    max-width: 390px;

    margin: 0 0 35px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   FEATURES
   ===================================================== */

.premium-features {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.premium-feature {

    display: flex;

    align-items: center;

    gap: 14px;
}


.feature-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.12);

    color: #80e2d6;

    font-weight: 700;
}


.premium-feature strong {

    display: block;

    color: white;

    font-size: 14px;

    margin-bottom: 3px;
}


.premium-feature small {

    color: rgba(255,255,255,0.55);

    font-size: 12px;
}


/* =====================================================
   FORM AREA
   ===================================================== */

.premium-form-area {

    padding: 55px 55px 45px;

    background: #ffffff;
}


/* =====================================================
   FORM HEADER
   ===================================================== */

.premium-form-header span {

    color: #55aaa1;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.premium-form-header h3 {

    margin: 7px 0 5px;

    color: #162f35;

    font-size: 27px;

    font-weight: 750;
}


.premium-form-header p {

    margin: 0 0 28px;

    color: #849493;

    font-size: 13px;
}


/* =====================================================
   INPUT ROW
   ===================================================== */

.premium-input-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


/* =====================================================
   FIELD
   ===================================================== */

.premium-field {

    margin-bottom: 16px;
}


.premium-field label {

    display: block;

    margin-bottom: 7px;

    color: #344b4f;

    font-size: 12px;

    font-weight: 700;
}


/* =====================================================
   FIELD BOX
   ===================================================== */

.field-box {

    display: flex;

    align-items: center;

    gap: 9px;

    height: 46px;

    padding: 0 13px;

    box-sizing: border-box;

    border:
        1px solid #dce9e7;

    border-radius: 10px;

    background: #f7fbfa;

    transition: 0.25s ease;
}


.field-box > span {

    color: #55aaa1;

    font-size: 14px;
}


/* =====================================================
   INPUT
   ===================================================== */

.field-box input,
.field-box select {

    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: #30464a;

    font-size: 13px;
}


.field-box input::placeholder {

    color: #9aabaa;
}


.field-box select {

    cursor: pointer;
}


/* =====================================================
   FIELD FOCUS
   ===================================================== */

.field-box:focus-within {

    background: white;

    border-color: #62b8ae;

    box-shadow:
        0 0 0 4px rgba(98,184,174,0.10);
}


/* =====================================================
   TEXTAREA
   ===================================================== */

.premium-field textarea {

    width: 100%;

    min-height: 100px;

    resize: vertical;

    box-sizing: border-box;

    padding: 13px;

    border:
        1px solid #dce9e7;

    border-radius: 10px;

    outline: none;

    background: #f7fbfa;

    color: #30464a;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition: 0.25s ease;
}


.premium-field textarea::placeholder {

    color: #9aabaa;
}


.premium-field textarea:focus {

    background: white;

    border-color: #62b8ae;

    box-shadow:
        0 0 0 4px rgba(98,184,174,0.10);
}


/* =====================================================
   SUBMIT BUTTON
   ===================================================== */

.premium-submit {

    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border: none;

    border-radius: 11px;

    cursor: pointer;

    color: white;

    font-size: 13px;

    font-weight: 700;

    background:
        linear-gradient(
            100deg,
            #51b8aa,
            #6675dc
        );

    box-shadow:
        0 10px 25px rgba(80,140,180,0.25);

    transition: 0.3s ease;
}


.premium-submit strong {

    font-size: 20px;

    transition: 0.3s ease;
}


.premium-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(80,140,180,0.32);
}


.premium-submit:hover strong {

    transform: translateX(5px);
}


/* =====================================================
   SECURITY TEXT
   ===================================================== */

.premium-security {

    margin-top: 14px;

    text-align: center;

    color: #9aabaa;

    font-size: 10px;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .premium-card {

        grid-template-columns: 1fr;

        max-width: 650px;
    }

    .premium-info {

        padding: 45px 40px;
    }

    .premium-info h2 {

        font-size: 36px;
    }

    .premium-description {

        max-width: 550px;
    }

    .premium-features {

        flex-direction: row;

        flex-wrap: wrap;
    }

    .premium-feature {

        flex: 1;

        min-width: 170px;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .premium-consultation {

        padding: 25px 12px;
    }

    .premium-card {

        border-radius: 20px;
    }

    .premium-info {

        padding: 35px 25px;
    }

    .premium-info h2 {

        font-size: 31px;

        letter-spacing: -0.8px;
    }

    .premium-description {

        font-size: 13px;
    }

    .premium-features {

        flex-direction: column;

        gap: 14px;
    }

    .premium-feature {

        flex: none;
    }

    .premium-form-area {

        padding: 35px 22px 30px;
    }

    .premium-form-header h3 {

        font-size: 23px;
    }

    .premium-input-row {

        grid-template-columns: 1fr;

        gap: 0;
    }
}


/* =====================================================
   SMALL PHONE
   ===================================================== */

@media (max-width: 380px) {

    .premium-consultation {

        padding: 15px 8px;
    }

    .premium-info {

        padding: 30px 20px;
    }

    .premium-info h2 {

        font-size: 27px;
    }

    .premium-form-area {

        padding: 30px 17px 25px;
    }

    .premium-field {

        margin-bottom: 13px;
    }
}