/* ===================== GLOBAL FONT + BACKGROUND ===================== */
body {
    font-family: 'Expo Arabic', sans-serif !important;
    background-color: #f7f9fc;
}




/* ===================== FOOTER ===================== */
.minimal-footer {
    background: #6900FF;
    color: #fff;
    padding: 8px 0 !important;
    font-size: 0.85rem;
}

.minimal-footer a {
    color: #e6d9ff;
    text-decoration: none;
    font-size: 0.85rem;
}

.minimal-footer a:hover {
    text-decoration: underline;
}

.small-text {
    margin: 0;
    padding: 0;
}

/* ===================== FULL HEIGHT WRAPPER ===================== */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

#footer-container {
    flex-shrink: 0;
}

/* ===================== CONTAINER ===================== */
.container {
    max-width: 1200px;
}

/* ===================== TITLES ===================== */
.page-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
}

.page-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* ===================== LANDING GRID ===================== */
/* 2 cards per row — tight layout like Torod UI */
.landing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

/* ===================== CARD STYLING ===================== */
.option-card {
    height: 100%;                 /* unified height for all cards */
    width: 100%;
    background: #fff;
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 !important;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===================== ICON ===================== */
.icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #f3e8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: #6900FF;
    font-size: 30px;
}

/* ===================== CARD TEXT ===================== */
.option-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.option-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 6px;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
    .landing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .option-card {
        height: auto;
        padding: 25px;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
