/* iiSHEEG ONE-PAGE LAYOUT */
html, body { height: 100%; overflow: hidden; }
main { height: calc(100vh - 56px); overflow: hidden; }

.ii-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: "Inter", sans-serif;
    background: #0d1b2a;
}

/* HERO */
.ii-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 20px 40px;
    align-items: center;
    flex-shrink: 0;
}
.ii-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}
.ii-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}
.ii-card {
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px;
}
.ii-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.ii-tab {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    padding: 6px 16px 8px;
    cursor: pointer;
    font-family: inherit;
}
.ii-tab.active {
    color: #14b8a6;
    border-bottom: 2px solid #14b8a6;
}
.ii-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ii-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 7px 10px;
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
    font-family: inherit;
    box-sizing: border-box;
}
.ii-input::placeholder { color: rgba(255,255,255,0.25); }
.ii-textarea { resize: none; }
.ii-select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 7px 10px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 10px;
    font-family: inherit;
    box-sizing: border-box;
}
.ii-btn {
    width: 100%;
    background: #14b8a6;
    color: #fff;
    border: none;
    padding: 9px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.ii-btn:hover { background: #0d9488; }
.ii-loading { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 10px; }
.ii-answer {
    background: rgba(20,184,166,0.08);
    border-left: 3px solid #14b8a6;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.ii-answer strong { color: #14b8a6; display: block; margin-bottom: 6px; }
.ii-answer p { margin: 0; }
.ii-error { font-size: 12px; color: #e8454a; margin-top: 10px; }

/* CATEGORIES */
.ii-cats-wrap {
    padding: 10px 40px 8px;
    flex-shrink: 0;
    border-top: 0.5px solid rgba(255,255,255,0.06);
}
.ii-cats-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.ii-cats {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.ii-cat {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 7px 4px;
    text-align: center;
    text-decoration: none;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.ii-cat:hover {
    background: rgba(20,184,166,0.1);
    border-color: rgba(20,184,166,0.3);
}
.ii-cat-icon { font-size: 16px; }
.ii-cat-name { font-size: 10px; color: rgba(255,255,255,0.5); line-height: 1.2; }

/* FOOTER */
.ii-footer {
    margin-top: auto;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #0d1b2a;
}
.ii-footer-brand { font-weight: 800; font-size: 14px; color: #fff; }
.ii-footer-brand span { color: #14b8a6; }
.ii-footer-links { display: flex; gap: 16px; }
.ii-footer-links a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; }
.ii-footer-links a:hover { color: #fff; }
.ii-footer-eco { font-size: 11px; color: rgba(255,255,255,0.2); }
.ii-footer-eco a { color: rgba(255,255,255,0.3); text-decoration: none; }

/* Hide the existing Bootstrap footer and override body bg */
.iisheeg-footer { display: none !important; }
body { background: #0d1b2a !important; }
