﻿/* getstarted.css — Get Started page-specific styles */

:root {
    --font-trendy: "Plus Jakarta Sans", "Manrope", "Inter", "Segoe UI", sans-serif;
    --font-digital: "Plus Jakarta Sans", "Manrope", "Inter", "Segoe UI", sans-serif;
    --font-loader-display: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
    --font-loader-body: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
}
.getstarted-page {
    padding: 6.7rem 0 3.6rem;
    min-height: 100vh;
    background: #ffffff;
    font-family: var(--font-trendy);
}
.selector-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(64px, 10vh, 112px);
    text-align: center;
    margin-bottom: .9rem;
    padding-block: clamp(.15rem, 1.4vh, .5rem);
}
.selector-title {
    font-family: var(--font-digital);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.1;
    margin-bottom: .2rem;
    color: #23345f;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .26);
}
.selector-subtitle {
    color: #334155;
    font-weight: 600;
    letter-spacing: .01em;
    margin: 0 auto;
}
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}
.business-tile {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    --tile-bg1: #ffffff;
    --tile-bg2: #f8fafc;
    --tile-border: #c3dbff;
    border: 1px solid #c3dbff;
    border-color: var(--tile-border);
    background: linear-gradient(160deg, var(--tile-bg1) 0%, var(--tile-bg2) 100%);
    border-radius: 16px;
    padding: 1rem .95rem;
    min-height: 140px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), inset 0 -2px 0 rgba(30, 64, 175, .16), 0 8px 18px rgba(15, 23, 42, .12);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background-color .28s ease, filter .28s ease;
}
.business-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .45) 0%, rgba(15, 23, 42, .05) 100%);
    pointer-events: none;
    opacity: .58;
}
.business-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: -62%;
    width: 42%;
    height: 100%;
    background: linear-gradient(102deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: left .62s ease, opacity .32s ease;
    pointer-events: none;
}
.business-tile:hover {
    transform: translateY(-4px);
    --tile-bg1: #fff2f7;
    --tile-bg2: #ffe5ef;
    --tile-border: #c3dbff;
    border-color: #c3dbff;
    filter: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), inset 0 -2px 0 rgba(190, 24, 93, .14), 0 16px 28px rgba(15, 23, 42, .16), 0 0 0 1px var(--tile-hover-ring, rgba(195, 219, 255, .58));
}
.business-tile[data-business="school"]:hover,
.business-tile[data-business="studyroom"]:hover,
.business-tile[data-business="library"]:hover,
.business-tile[data-business="bookstore"]:hover {
    --tile-bg1: #f0f7ff;
    --tile-bg2: #dcebff;
    --tile-border: #6ea8ff;
    --tile-hover-ring: rgba(110, 168, 255, .72);
}
.business-tile[data-business="labs"]:hover {
    --tile-bg1: #fff1f7;
    --tile-bg2: #ffddea;
    --tile-border: #ff8fb6;
    --tile-hover-ring: rgba(255, 143, 182, .72);
}
.business-tile[data-business="restaurant"]:hover {
    --tile-bg1: #fff6e9;
    --tile-bg2: #ffe7c3;
    --tile-border: #ffb354;
    --tile-hover-ring: rgba(255, 179, 84, .72);
}
.business-tile[data-business="grocery"]:hover {
    --tile-bg1: #efffed;
    --tile-bg2: #d8f7d2;
    --tile-border: #73d97b;
    --tile-hover-ring: rgba(115, 217, 123, .72);
}
.business-tile[data-business="pharmacy"]:hover {
    --tile-bg1: #fff0fb;
    --tile-bg2: #ffd8f0;
    --tile-border: #f884c6;
    --tile-hover-ring: rgba(248, 132, 198, .72);
}
.business-tile[data-business="hospital"]:hover {
    --tile-bg1: #fff2f0;
    --tile-bg2: #ffdcd6;
    --tile-border: #ff9f8b;
    --tile-hover-ring: rgba(255, 159, 139, .72);
}
.business-tile[data-business="clinic"]:hover {
    --tile-bg1: #ebfffc;
    --tile-bg2: #d3faf1;
    --tile-border: #67d8be;
    --tile-hover-ring: rgba(103, 216, 190, .72);
}
.business-tile[data-business="doctor"]:hover {
    --tile-bg1: #edf7ff;
    --tile-bg2: #d7ecff;
    --tile-border: #70b3ff;
    --tile-hover-ring: rgba(112, 179, 255, .72);
}
.business-tile[data-business="fashion"]:hover,
.business-tile[data-business="salon"]:hover {
    --tile-bg1: #fff1fb;
    --tile-bg2: #ffd9f3;
    --tile-border: #f58cd1;
    --tile-hover-ring: rgba(245, 140, 209, .72);
}
.business-tile[data-business="electronics"]:hover,
.business-tile[data-business="hardware"]:hover,
.business-tile[data-business="automobile"]:hover {
    --tile-bg1: #edf8ff;
    --tile-bg2: #d7ecff;
    --tile-border: #74b5ff;
    --tile-hover-ring: rgba(116, 181, 255, .72);
}
.business-tile[data-business="furniture"]:hover,
.business-tile[data-business="realestate"]:hover,
.business-tile[data-business="lodge"]:hover {
    --tile-bg1: #f5f2ff;
    --tile-bg2: #e4dcff;
    --tile-border: #9f86f7;
    --tile-hover-ring: rgba(159, 134, 247, .72);
}
.business-tile[data-business="ecommerce"]:hover {
    --tile-bg1: #e9fffb;
    --tile-bg2: #cff9f0;
    --tile-border: #58d6ba;
    --tile-hover-ring: rgba(88, 214, 186, .72);
}
.business-tile[data-business="travel"]:hover,
.business-tile[data-business="tourism"]:hover {
    --tile-bg1: #eaf9ff;
    --tile-bg2: #d2efff;
    --tile-border: #66bff2;
    --tile-hover-ring: rgba(102, 191, 242, .72);
}
.business-tile[data-business="ca"]:hover,
.business-tile[data-business="lawyer"]:hover,
.business-tile[data-business="consultancy"]:hover {
    --tile-bg1: #fff8e8;
    --tile-bg2: #ffecc8;
    --tile-border: #efc26a;
    --tile-hover-ring: rgba(239, 194, 106, .72);
}
.business-tile[data-business="events"]:hover,
.business-tile[data-business="convention"]:hover {
    --tile-bg1: #f5eeff;
    --tile-bg2: #e2d3ff;
    --tile-border: #a47cf7;
    --tile-hover-ring: rgba(164, 124, 247, .72);
}
.business-tile[data-business="gym"]:hover {
    --tile-bg1: #edfff4;
    --tile-bg2: #d7f7e4;
    --tile-border: #6fd89a;
    --tile-hover-ring: rgba(111, 216, 154, .72);
}
.business-tile[data-business="other"]:hover {
    --tile-bg1: #f4f6fb;
    --tile-bg2: #e7ebf5;
    --tile-border: #b8c3d8;
    --tile-hover-ring: rgba(184, 195, 216, .72);
}
.business-tile:hover::after {
    left: 132%;
    opacity: 1;
}
.business-tile:hover::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, .1) 60%, rgba(15, 23, 42, .04) 100%);
    opacity: .7;
}
.business-tile.selected {
    background: linear-gradient(155deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .20), 0 18px 30px rgba(15, 23, 42, .16);
}
.business-icon {
    font-size: 2.35rem;
    margin: 0;
    line-height: 1;
}
.business-head {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: .45rem;
    min-height: 100%;
}
.business-title {
    color: #0f172a;
    font-size: 1.08rem;
    margin-bottom: 0;
    font-weight: 700;
    font-family: var(--font-digital);
    letter-spacing: .01em;
}
.selector-section {
    transition: opacity .25s ease;
}
.selector-section.hidden {
    display: none;
}
.details-form-wrap {
    margin-top: 0;
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, #fafdff 0%, #edf4ff 52%, #dce9ff 100%);
    border: 1px solid #aac6f3;
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    display: none;
}
.details-form-wrap.active {
    display: block;
}
.details-form-heading {
    display: none;
    margin-top: clamp(1rem, 2.2vh, 1.8rem);
    margin-bottom: clamp(.8rem, 2vh, 1.3rem);
    text-align: center;
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.2;
    font-family: var(--font-digital);
    color: #2a3f73;
    min-height: clamp(56px, 9vh, 88px);
}
.details-form-heading.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: .4rem;
    font-family: var(--font-trendy);
    letter-spacing: .01em;
}
.field-limit-note {
    display: none;
    margin-top: .38rem;
    font-size: .78rem;
    font-weight: 600;
    color: #c2410c;
    letter-spacing: .01em;
}
.field-limit-note.active {
    display: block;
}
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    border: 1.5px solid #93c5fd;
    border-radius: 10px;
    padding: .7rem .8rem;
    font-size: .95rem;
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(191, 219, 254, .65), inset 0 1px 2px rgba(15, 23, 42, .03);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    font-family: var(--font-trendy);
}
.form-group input[type="text"]:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
    outline: none;
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.phone-input-wrap {
    display: grid;
    grid-template-columns: 96px 1fr;
    min-height: 58px;
    border: 1.5px solid #93c5fd;
    border-radius: 14px;
    overflow: visible;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(191, 219, 254, .65), inset 0 1px 2px rgba(15, 23, 42, .03);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.country-picker {
    position: relative;
    z-index: 45;
    border-right: 1px solid #dbeafe;
    background: #f8fbff;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
}
.country-picker-toggle {
    width: 100%;
    border: 0;
    border-radius: 0;
    height: 100%;
    padding: .72rem .38rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .28rem;
    font-size: .84rem;
    font-weight: 700;
    color: #0f172a;
    background: #f8fbff;
    cursor: pointer;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    font-family: var(--font-digital);
}
.country-picker-toggle:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}
.country-flag-img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .12);
}
.country-code-text {
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-digital);
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: .03em;
    line-height: 1;
}
.country-caret {
    font-size: .7rem;
    color: #475569;
    line-height: 1;
}
.country-picker-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 220px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    box-shadow: 0 14px 26px rgba(2, 6, 23, .16);
    z-index: 60;
    padding: .45rem;
    display: none;
}
.country-picker.open .country-picker-menu {
    display: block;
}
.country-search-wrap {
    margin-bottom: .45rem;
}
.country-search-input {
    width: 100%;
    border: 1.5px solid #c7ddff;
    border-radius: 8px;
    padding: .45rem .52rem;
    font-size: .82rem;
    color: #0f172a;
    background: #f8fbff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, .03);
}
.country-search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .14);
}
.country-options-list {
    max-height: 212px;
    overflow-y: auto;
}
.country-option {
    width: 100%;
    border: 0;
    background: #ffffff;
    color: #0f172a;
    padding: .48rem .56rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-align: left;
    font-size: .86rem;
    cursor: pointer;
    border-radius: 8px;
}
.country-option:hover {
    background: #eff6ff;
}
.country-option .country-flag-img {
    flex-shrink: 0;
}
.phone-input-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}
.phone-input-wrap input[type="tel"] {
    width: 100%;
    border: 0;
    border-radius: 0;
    padding: .74rem .28rem .74rem .56rem;
    font-size: clamp(1.18rem, 2.3vw, 1.32rem);
    font-family: var(--font-digital);
    font-weight: 700;
    letter-spacing: .09em;
    font-variant-numeric: tabular-nums lining-nums;
    text-align: center;
    color: #0f172a;
    background: #ffffff;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
}
.phone-input-wrap input[type="tel"]::placeholder {
    text-align: center;
    font-family: var(--font-trendy);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .01em;
    color: #64748b;
    opacity: 1;
}
.phone-input-wrap input[type="tel"]:placeholder-shown {
    text-align: center;
    font-family: var(--font-trendy);
    font-size: .98rem;
    font-weight: 500;
    letter-spacing: .01em;
}
.isd-select:focus,
.phone-input-wrap input[type="tel"]:focus {
    outline: none;
}
.btn-publish {
    position: relative;
    overflow: hidden;
    width: 78%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
    border: 0;
    border-radius: 14px;
    padding: .98rem 1.25rem;
    font-size: 1.04rem;
    letter-spacing: .01em;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(145deg, #1e40af 0%, #2563eb 54%, #3b82f6 100%);
    cursor: pointer;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .34), inset 0 -3px 0 rgba(13, 43, 122, .75), 0 16px 28px rgba(37, 99, 235, .38), 0 5px 10px rgba(15, 23, 42, .3);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-digital);
}
.btn-publish::before {
    content: '';
    position: absolute;
    top: 0;
    left: -58%;
    width: 42%;
    height: 100%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .45) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-22deg);
    animation: publishShine 2.2s linear infinite;
    will-change: left;
    pointer-events: none;
}
.btn-publish::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 13px;
    border-top: 1px solid rgba(255, 255, 255, .26);
    border-bottom: 1px solid rgba(13, 43, 122, .48);
    pointer-events: none;
}
.btn-publish:hover {
    transform: translateY(-2px);
    filter: saturate(1.12);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .4), inset 0 -3px 0 rgba(13, 43, 122, .82), 0 20px 34px rgba(37, 99, 235, .44), 0 6px 12px rgba(15, 23, 42, .34);
}
.btn-publish:hover::before {
    animation-duration: 1.5s;
}
.btn-publish:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -2px 0 rgba(13, 43, 122, .7), 0 9px 18px rgba(37, 99, 235, .3);
}
.btn-publish .btn-icon {
    font-size: 1.24rem;
    line-height: 1;
    filter: drop-shadow(0 1px 1px rgba(2, 6, 23, .35));
}
@keyframes publishShine {
    0% {
        left: -58%;
    }
    100% {
        left: 138%;
    }
}
.selection-loader {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.selection-loader.active {
    display: flex;
}
.selection-loader-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 1.35rem 1.5rem 1.45rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
    max-width: 460px;
    width: 100%;
}
.selection-loader-gif-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: 0 auto 0.55rem;
    background: #ffffff;
    border-radius: 14px;
}
.selection-loader img {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0;
    background: #ffffff;
    filter: none;
}
.selection-loader h3 {
    margin: 0 0 .55rem;
    font-family: var(--font-loader-display);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(115deg, #1e3a8a 0%, #4338ca 42%, #0f766e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-wrap: balance;
}
@supports not (background-clip: text) {
    .selection-loader h3 {
        color: #1e3a8a;
    }
}
.selection-loader p {
    color: #475569;
    font-family: var(--font-loader-body);
    margin: 0;
    font-size: clamp(0.9rem, 1.9vw, 1.02rem);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 1;
    max-height: none;
    overflow: visible;
    transform: none;
    animation: selectionLoaderSubline 0.55s ease 0.12s both;
}
@keyframes selectionLoaderSubline {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.otp-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    background: rgba(2, 6, 23, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.otp-modal.active {
    display: flex;
}
.otp-modal-card {
    width: 100%;
    max-width: 390px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #cbdaf9;
    box-shadow: 0 26px 52px rgba(15, 23, 42, .28);
    padding: 1rem 1rem .9rem;
}
.otp-modal-title {
    margin: 0 0 .35rem 0;
    color: #1f2f66;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
}
.otp-modal-note {
    margin: 0;
    color: #3f4f74;
    text-align: center;
    font-size: .9rem;
    font-weight: 600;
}
.otp-modal-input {
    margin-top: .8rem;
    display: flex;
    justify-content: center;
    gap: .45rem;
}
.otp-modal-input input {
    width: 56px;
    border: 1px solid #c6d7fb;
    border-radius: 12px;
    background: #f8fbff;
    color: #1f2937;
    font-size: 1.35rem;
    text-align: center;
    font-weight: 700;
    padding: .6rem .2rem;
    outline: none;
}
.otp-modal-input input:focus {
    border-color: #5f93ff;
    box-shadow: 0 0 0 3px rgba(95, 147, 255, .2);
    background: #ffffff;
}
.otp-modal-hint {
    margin-top: .45rem;
    min-height: 1.15rem;
    color: #5a6b90;
    font-size: .8rem;
    text-align: center;
}
.otp-modal-hint.error {
    color: #b42318;
    font-weight: 600;
}
.otp-modal-actions {
    margin-top: .65rem;
    display: flex;
    gap: .5rem;
}
.otp-modal-btn {
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    padding: .62rem .75rem;
}
.otp-modal-btn.secondary {
    background: #eef3ff;
    color: #2b4587;
    flex: 1;
}
.otp-modal-btn.primary {
    background: linear-gradient(135deg, #2d5fd8, #1d4ed8);
    color: #ffffff;
    flex: 1.2;
}
.otp-modal-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}
@media (max-width: 560px) {
    .getstarted-page {
        padding-top: 6.2rem;
    }
    .details-form-heading {
        margin-top: 0;
        margin-bottom: .35rem;
    }
    .details-form-heading.active {
        min-height: 56px;
    }
    .business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }
    .business-tile {
        min-height: 112px;
        padding: .85rem .8rem;
    }
    .business-title {
        font-size: .98rem;
    }
    .phone-input-wrap {
        grid-template-columns: 96px 1fr;
    }
    .btn-publish {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .details-form-wrap {
        width: 36%;
        max-width: none;
    }
}
