/* ====================== */
/*       FSAlbert EN      */
/* ====================== */

@font-face {
    font-family: 'FSAlbert';
    src: url('/css/FSAlbert_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FSAlbert';
    src: url('/css/FSAlbert-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'FSAlbertArabic';
    src: url('/css/FSAlbertArabic.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FSAlbertArabic';
    src: url('/css/FSAlbertArabic-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* ====================== */
/*       GLOBAL FONT      */
/* ====================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* Arabic + English */
    font-family: 'FSAlbertArabic', 'FSAlbert';
}


:root {
    --navy: #081640;
    --panel: #071a47;
    --white: #ffffff;
    --accent: #ff7a00;
    --muted: #c9c9d0;
    --input-bg: #ffffff;
    --card-radius: 12px;
    --phone-border: #0b1224;
}

body {
    /*font-family: "Poppins", system-ui, Segoe UI, Roboto, Helvetica, Arial;*/
    background: linear-gradient(180deg, #020617 0%, #021a3a 100%);
    min-height: 100vh;
    padding: 30px 0;
    color: var(--white);
}

.omantel-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-wrapper {
    width: 100%;
    max-width: 420px;
}

.top-logo {
    margin-bottom: 20px;
}

.brand-logo {
    height: 56px;
    object-fit: contain;
    float:right;
}

/* Phone container styling */
.phone-container {
    width: 100%;
    border-radius: 28px;
    background: var(--navy);
    padding: 22px 18px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 6px solid var(--phone-border);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Title styling */
.title {
    margin-top: 26%;
    text-align: center;
}
.title p {
    margin: 0;
    font-size: 36px;
    /* font-weight: 600; */
    letter-spacing: 0.4px;
    color: var(--white);
}
.title h1 {
    margin: 6px 0 0;
    font-size: 43px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.6px;
}

.title h2 {
    margin: 6px 0 0;
    font-size: 33px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.6px;
}


/* Step pill styling */
.step-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 20px;
    margin-top: 10px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    font-weight: 600;
}

/* Form elements */
.form-wrapper {
    margin-top: 18px;
}

.form-intro {
    margin-bottom: 20px;
}

.intro-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.intro-note {
    font-size: 20px;
    color: var(--muted);
}

.required-star {
    color: var(--accent);
}

.form-label {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--white);
}

.omantel-input {
    background: var(--input-bg);
    border-radius: 10px;
    padding: 12px 14px;
    color: #111;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    border: none;
    width: 100%;
    font-size: 20px;
}

.omantel-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.25);
    border: none;
}

.text-light {
    color: var(--muted) !important;
    font-size: 16px;
}

.small-hint {
    font-size: 20px;
    color: var(--muted);
}

/* Button styling */
.omantel-btn {
    display: block;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.omantel-btn:hover {
    background: #e56d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

.omantel-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

/* Alert styling */
.alert {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 20px;
    border: none;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.text-danger {
    color: #ff6b6b !important;
    font-size: 13px;
}

/* Modal styling */
.omantel-modal {
    background: var(--navy);
    border-radius: 12px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.omantel-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.omantel-modal .modal-title {
    font-weight: 600;
}

.omantel-btn-outline {
    display: block;
    padding: 10px 20px;
    border-radius: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.omantel-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 420px) {
    body {
        padding: 12px;
    }
    .page-wrapper {
        max-width: 330px;
    }
}
