/* =========================
   GeneratePress reset
========================= */

#masthead,
.site-header,
#site-navigation,
#mobile-menu-control-wrapper,
.site-footer,
.site-info,
#colophon {
    display: none !important;
}

body,
#page,
.site,
.site-content,
.content-area,
.site-main,
.inside-article {
    background: transparent !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    background: #070b16;
}

body {
    background:
        radial-gradient(circle at 10% 15%, rgba(0,190,255,.14), transparent 35%),
        radial-gradient(circle at 90% 85%, rgba(255,70,70,.10), transparent 40%),
        #070b16;
    color: #fff;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 0;
}

/* =========================
   Header / Menu
========================= */

.el-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    max-height: 78px;
    z-index: 999;
    background: rgba(7, 11, 22, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.el-header__container {
    max-width: 1180px;
    height: 78px;
    max-height: 78px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.el-logo {
    height: 78px;
    max-width: 260px;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.el-logo span {
    color: #05c8ee;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}

.el-logo img.el-logo-desktop {
    display: block !important;
    max-height: 54px !important;
    max-width: 240px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.el-logo img.el-logo-mobile {
    display: none !important;
    max-height: 44px !important;
    max-width: 54px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.el-header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.el-nav {
    display: flex;
    gap: 34px;
}

.el-nav a {
    color: #c4ccda;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: .2s ease;
}

.el-nav a:hover {
    color: #05c8ee;
}

.el-lang-switcher {
    display: flex;
    gap: 8px;
}

.el-lang-switcher a {
    color: #c4ccda;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
}

.el-lang-switcher a.active,
.el-lang-switcher a:hover {
    color: #031018;
    background: #05c8ee;
    border-color: #05c8ee;
}

.el-burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    cursor: pointer;
    padding: 11px;
}

.el-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    margin: 5px 0;
    transition: .25s ease;
}

@media (max-width: 1024px) {
    .el-logo {
        max-width: 210px;
    }

    .el-logo img.el-logo-desktop {
        max-width: 190px !important;
        max-height: 46px !important;
    }

    .el-nav {
        gap: 22px;
    }
}

@media (max-width: 900px) {
    .el-header {
        height: 72px;
        max-height: 72px;
        overflow: visible;
    }

    .el-header__container {
        height: 72px;
        max-height: 72px;
        position: relative;
        padding: 0 16px;
    }

    .el-logo {
        height: 72px;
        max-width: 70px;
    }

    .el-logo img.el-logo-desktop {
        display: none !important;
    }

    .el-logo img.el-logo-mobile {
        display: block !important;
    }

    .el-burger {
        display: block;
    }

    .el-header__right {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 22px;
        border-radius: 18px;
        background: rgba(9, 15, 30, .96);
        border: 1px solid rgba(255,255,255,.10);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 60px rgba(0,0,0,.35);
    }

    .el-header.is-open .el-header__right {
        display: flex;
    }

    .el-header.is-open .el-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .el-header.is-open .el-burger span:nth-child(2) {
        opacity: 0;
    }

    .el-header.is-open .el-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .el-nav {
        flex-direction: column;
        gap: 0;
    }

    .el-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 15px;
    }

    .el-lang-switcher {
        justify-content: center;
    }
}

/* =========================
   Hero
========================= */

.el-hero {
    position: relative;
    min-height: 100vh;
    padding: 115px 20px 80px;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    width: 100%;
    text-align: center;
}

.el-badge {
    display: inline-flex;
    padding: 8px 23px;
    margin-bottom: 36px;
    border-radius: 999px;
    border: 1px solid rgba(5,198,235,.35);
    background: rgba(5,198,235,.08);
    color: #04c8ed;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .7px;
}

.el-title {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5.8vw, 86px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
}

.el-text {
    max-width: 760px;
    margin: 30px auto 0;
    color: #9aa4b8;
    font-size: 21px;
    line-height: 1.7;
    font-weight: 500;
}

.el-buttons {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.el-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.el-btn--primary {
    background: #05c1e8;
    color: #031018;
    box-shadow: 0 0 35px rgba(5,193,232,.22);
}

.el-btn--secondary {
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
}

.el-btn:hover {
    transform: translateY(-3px);
}

.el-divider {
    width: 80%;
    height: 1px;
    margin: 72px auto 42px;
    background: rgba(255,255,255,.12);
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.el-stat strong {
    display: block;
    color: #05c8ee;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 14px;
}

.el-stat small {
    display: block;
    color: #717b91;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .el-hero {
        padding: 95px 16px 70px;
    }

    .el-title {
        letter-spacing: -1px;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .el-text {
        font-size: 17px;
    }

    .el-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .el-divider {
        margin-top: 50px;
    }
}

/* =========================
   Benefits
========================= */

.el-benefits {
    position: relative;
    padding: 120px 20px 105px;
    color: #fff;
    overflow: hidden;
}

.el-benefits__container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.el-benefits__head {
    max-width: 760px;
    margin-bottom: 70px;
}

.el-benefits__head h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.el-benefits__head p {
    margin: 0;
    max-width: 720px;
    color: #96a1b8;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 500;
}

.el-benefits__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.el-benefit-card {
    min-height: 360px;
    padding: 42px 38px;
    border-radius: 18px;
    background: rgba(18,25,43,.82);
    border: 1px solid rgba(255,255,255,.10);
    transition: .25s ease;
}

.el-benefit-card--active {
    border-color: rgba(5,198,235,.45);
    box-shadow: 0 0 35px rgba(5,198,235,.08);
}

.el-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(5,198,235,.35);
}

.el-benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 34px;
    border-radius: 14px;
    background: rgba(5,198,235,.12);
    color: #05c8ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
}

.el-benefit-card h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.el-benefit-card p {
    margin: 0;
    color: #98a3b8;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 900px) {
    .el-benefits__cards {
        grid-template-columns: 1fr;
    }

    .el-benefit-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .el-benefits {
        padding: 90px 16px;
    }

    .el-benefits__container {
        width: 100%;
        max-width: 100%;
    }

    .el-benefits__cards {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
    }

    .el-benefit-card {
        width: 100%;
        max-width: 100%;
        padding: 34px 28px;
        overflow-wrap: break-word;
    }
}

/* =========================
   Services
========================= */

.el-services {
    position: relative;
    padding: 120px 20px;
    color: #fff;
    overflow: hidden;
}

.el-services__container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.el-services__head {
    max-width: 760px;
    margin-bottom: 44px;
}

.el-services__head h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.el-services__head p {
    margin: 0;
    color: #96a1b8;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 500;
}

.el-services__tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.el-service-tab {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #9aa4b8;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.el-service-tab.active,
.el-service-tab:hover {
    background: #05c8ee;
    border-color: #05c8ee;
    color: #031018;
}

.el-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.el-service-card {
    min-height: 520px;
    padding: 42px 36px;
    border-radius: 18px;
    background: rgba(18,25,43,.82);
    border: 1px solid rgba(255,255,255,.10);
    display: flex;
    flex-direction: column;
    transition: .25s ease;
}

.el-service-card.active,
.el-service-card:hover {
    border-color: rgba(5,198,235,.45);
    box-shadow: 0 0 35px rgba(5,198,235,.08);
    transform: translateY(-5px);
}

.el-service-card__category {
    color: #718096;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.el-service-card__icon {
    color: #05c8ee;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 34px;
}

.el-service-card h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 27px;
    line-height: 1.22;
    font-weight: 900;
}

.el-service-card p {
    margin: 0 0 24px;
    color: #98a3b8;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.el-service-card ul {
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.el-service-card li {
    position: relative;
    color: #9aa4b8;
    font-size: 16px;
    line-height: 1.65;
    padding-left: 24px;
    margin-bottom: 12px;
}

.el-service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 5px;
    height: 5px;
    background: #05c8ee;
}

.el-service-card__result {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #9aa4b8;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .el-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .el-services {
        padding: 90px 16px;
    }

    .el-services__grid {
        grid-template-columns: 1fr;
    }

    .el-service-card {
        min-height: auto;
        padding: 34px 28px;
    }
}

@media (max-width: 480px) {
    .el-services {
        padding-left: 14px;
        padding-right: 14px;
    }

    .el-services__tabs {
        gap: 8px;
    }

    .el-service-tab {
        padding: 11px 16px;
        font-size: 13px;
    }

    .el-service-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 26px;
        border-radius: 16px;
        overflow: hidden;
    }

    .el-service-card h3 {
        font-size: 25px;
        line-height: 1.25;
        overflow-wrap: break-word;
    }

    .el-service-card p,
    .el-service-card li,
    .el-service-card__result {
        font-size: 15px;
    }

    .el-service-card__category {
        font-size: 11px;
    }
}

/* =========================
   Footer
========================= */

.el-footer {
    position: relative;
    padding: 90px 20px 0;
    color: #9aa4b8;
    border-top: 1px solid rgba(255,255,255,.08);
}

.el-footer__container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.el-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 70px;
    padding-bottom: 70px;
}

.el-footer__brand img {
    max-height: 46px;
    width: auto;
    margin-bottom: 28px;
}

.el-footer__brand strong {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 28px;
}

.el-footer h4 {
    color: #738099;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.el-footer p,
.el-footer a {
    color: #9aa4b8;
    font-size: 16px;
    line-height: 1.8;
    text-decoration: none;
}

.el-footer a:hover {
    color: #05c8ee;
}

.el-footer__col,
.el-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.el-footer__buttons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.el-footer__buttons a {
    color: #05c8ee;
    border: 1px solid rgba(5,200,238,.25);
    background: rgba(5,200,238,.06);
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
}

.el-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.el-footer__bottom div {
    display: flex;
    gap: 28px;
}

@media (max-width: 1000px) {
    .el-footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .el-footer {
        padding-top: 70px;
    }

    .el-footer__top {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .el-footer__bottom {
        flex-direction: column;
    }

    .el-footer__bottom div {
        flex-direction: column;
        gap: 10px;
    }

    .el-footer__buttons {
        flex-direction: column;
    }
}


/* contact form */
.el-contact {
    position: relative;
    padding: 120px 20px;
    color: #fff;
}

.el-contact__container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.el-contact__info h2 {
    margin: 0 0 24px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 900;
}

.el-contact__info p {
    color: #9aa4b8;
    font-size: 20px;
    line-height: 1.65;
    margin: 0 0 40px;
}

.el-contact__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.el-contact__items div,
.el-contact__items a {
    color: #d7deea;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.6;
}

.el-contact-form {
    background: rgba(18,25,43,.82);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 42px;
}

.el-contact-form h3 {
    margin: 0 0 28px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.el-contact-form input,
.el-contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 17px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #fff;
    outline: none;
    font-size: 16px;
}

.el-contact-form input::placeholder,
.el-contact-form textarea::placeholder {
    color: #7f8aa3;
}

.el-contact-form button {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 12px;
    background: #05c8ee;
    color: #031018;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.el-contact-form__message {
    margin-top: 16px;
    color: #05c8ee;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .el-contact__container {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 600px) {
    .el-contact {
        padding: 90px 16px;
    }

    .el-contact-form {
        padding: 30px 24px;
    }
}
/* contact form */


/* =========================
   ESTIMATE FORM
========================= */

.el-estimate-form {
    padding: 120px 20px;
    position: relative;
    z-index: 2;
}

.el-estimate-form__container {
    max-width: 1180px;
    margin: 0 auto;
}

.el-estimate-form__head {
    text-align: center;
    margin-bottom: 50px;
}

.el-estimate-form__head h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 900;
}

.el-estimate-form__head p {
    max-width: 720px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.7;
}

.el-estimate-request-form {
    background: rgba(18, 25, 43, .88);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.20);
}

/* steps */
.el-estimate-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 30px 34px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(8, 14, 29, .45);
}

.el-estimate-steps button {
    position: relative;
    min-height: 48px;
    padding: 0 22px 0 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: #7f8aa3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
}

.el-estimate-steps button::before {
    content: attr(data-step);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #d7deea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    transition: .25s ease;
}

.el-estimate-steps button.active {
    background: rgba(5, 200, 238, .15);
    border-color: rgba(5, 200, 238, .55);
    color: #05c8ee;
    box-shadow: 0 0 24px rgba(5,200,238,.16);
}

.el-estimate-steps button.active::before {
    background: #05c8ee;
    color: #031018;
    box-shadow: 0 0 18px rgba(5,200,238,.45);
}

.el-estimate-steps button.completed {
    background: rgba(18, 208, 138, .12);
    border-color: rgba(18, 208, 138, .45);
    color: #12d08a;
}

.el-estimate-steps button.completed::before {
    content: '✓';
    background: #12d08a;
    color: #031018;
}

.el-estimate-steps span {
    white-space: nowrap;
}

/* step content */
.el-estimate-step {
    display: none;
    padding: 42px;
}

.el-estimate-step.active {
    display: block;
}

.el-estimate-step h3 {
    margin: 0 0 26px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.el-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.el-form-grid label,
.el-estimate-step > label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

/* inputs */
.el-estimate-request-form input,
.el-estimate-request-form select,
.el-estimate-request-form textarea {
    width: 100%;
    min-height: 58px;
    padding: 18px 20px;
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.05) !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 15px;
    transition: .2s ease;
}

.el-estimate-request-form textarea {
    min-height: 145px;
    resize: vertical;
}

.el-estimate-request-form input::placeholder,
.el-estimate-request-form textarea::placeholder {
    color: #7f8aa3 !important;
}

.el-estimate-request-form input:focus,
.el-estimate-request-form select:focus,
.el-estimate-request-form textarea:focus {
    border-color: #05c8ee !important;
    background: rgba(255,255,255,.075) !important;
    box-shadow: 0 0 0 4px rgba(5,200,238,.12) !important;
}

.el-estimate-request-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* checkboxes */
.el-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 30px;
    margin-bottom: 34px;
}

.el-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d7deea;
    font-size: 15px;
    font-weight: 800;
}

.el-checkbox-grid input {
    width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    padding: 0 !important;
    accent-color: #05c8ee;
}

/* file */
.el-file-field {
    margin-top: 20px;
    margin-bottom: 30px;
}

.el-file-field input[type="file"] {
    padding: 16px !important;
    cursor: pointer;
}

.el-file-field span {
    display: block;
    margin-top: 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

/* buttons */
.el-estimate-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.el-estimate-actions button {
    min-height: 56px;
    padding: 0 30px;
    border: 0;
    border-radius: 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
    transition: .25s ease;
}

.el-next-step,
.el-submit-estimate {
    background: #05c8ee;
    color: #031018;
    box-shadow: 0 0 30px rgba(5,200,238,.18);
}

.el-prev-step {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12) !important;
}

.el-estimate-actions button:hover {
    transform: translateY(-2px);
}

.el-estimate-message {
    margin-top: 20px;
    color: #05c8ee;
    font-size: 15px;
    font-weight: 800;
}

/* responsive */
@media (max-width: 900px) {
    .el-estimate-form {
        padding: 90px 16px;
    }

    .el-estimate-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 22px;
    }

    .el-estimate-steps button {
        width: 100%;
        justify-content: flex-start;
    }

    .el-form-grid,
    .el-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .el-estimate-step {
        padding: 28px;
    }
}

@media (max-width: 520px) {
    .el-estimate-request-form {
        border-radius: 22px;
    }

    .el-estimate-step {
        padding: 22px;
    }

    .el-estimate-actions {
        flex-direction: column;
    }

    .el-estimate-actions button {
        width: 100%;
    }

    .el-estimate-steps span {
        white-space: normal;
    }
}

.el-field-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 4px rgba(255,77,77,.12) !important;
}

.el-estimate-message.error {
    color: #ff6b6b;
}

.el-estimate-message.success {
    color: #12d08a;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.el-estimate-request-form select,
.el-estimate-request-form select option {
    background: #111827 !important;
    color: #ffffff !important;
}

.el-estimate-request-form select option:hover,
.el-estimate-request-form select option:checked {
    background: #05c8ee !important;
    color: #031018 !important;
}



/* //////start popup */

.el-estimate-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:99999;
}

.el-estimate-popup.active{
    display:flex;
}

.el-estimate-popup__box{
    width:90%;
    max-width:500px;

    background:#09142b;
    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    text-align:center;
}

.el-estimate-popup__icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#14d9ff;

    color:#000;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;
    font-weight:700;
}

.el-estimate-popup__title{
    color:#fff;
    margin-bottom:15px;
}

.el-estimate-popup__text{
    color:#94a3b8;
    margin-bottom:25px;
}

.el-estimate-popup__close{
    border:none;

    background:#14d9ff;
    color:#000;

    padding:14px 30px;

    border-radius:14px;

    font-weight:700;
    cursor:pointer;
}


.el-estimate-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.el-estimate-popup.active {
    display: flex;
}