/* ============================================================
   PAGES.CSS — Shared inner-page styles (exact original design)
   Matches: rocktransportation.com About / Fleet / Track / Login / Contact
============================================================ */

/* ---- Page Hero (dark gradient, centered) ---- */
.page-hero {
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    padding: 130px 0 73px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.4), transparent);
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    line-height: 1;
    color: var(--white);
}

.page-hero h1 .highlight {
    color: var(--red);
}

.page-hero p {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Section heading ---- */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--white);
}

.section-title h2 .highlight {
    color: var(--red);
}

/* ---- Service / Fleet Cards (grid) ---- */
.cards-section {
    background: #1a1a1a;
    padding: 72px 0 80px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.cards-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}

.service-card {
    background: #222222;
    border: 1px solid #2e2e2e;
    padding: 28px 24px;
    transition: border-color 0.25s, transform 0.25s;
    border-radius: 2px;
}

.service-card:hover {
    border-color: rgba(227, 27, 35, 0.35);
    transform: translateY(-2px);
}

.service-card .card-icon {
    color: var(--red);
    margin-bottom: 14px;
    display: flex;
}

.service-card h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    color: var(--white);
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.service-card .card-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
}

/* ---- Footer (original site style) ---- */
.site-footer-orig {
    background: #111111;
    border-top: 1px solid #2a2a2a;
    padding: 56px 0 0;
}

.footer-orig-grid {
    gap: 48px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-around;
}

.footer-orig-brand {}

.footer-orig-brand .tagline {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-orig-col h5 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-orig-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-orig-links a {
    font-size: 13.5px;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-orig-links a:hover {
    color: var(--white);
}

.footer-orig-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-orig-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray);
}

.footer-orig-contact-item svg {
    color: var(--red);
    flex-shrink: 0;
}

.footer-orig-contact-item a {
    color: var(--gray);
    transition: color 0.2s;
}

.footer-orig-contact-item a:hover {
    color: var(--white);
}

.footer-orig-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--gray2);
}

.footer-orig-bottom a {
    color: var(--red);
}

/* ---- Original Logo component (matches actual site) ---- */
.logo-orig {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-orig img {
    height: 44px;
    width: auto;
}

.logo-orig .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-orig .logo-rock {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-orig .logo-rock span {
    color: var(--red);
}

.logo-orig .logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray2);
    margin-top: 2px;
}

/* ---- Track page ---- */
.track-hero-wrap {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    background: #111;
}

.track-hero-wrap h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.track-hero-wrap h1 .highlight {
    color: var(--red);
}

.track-hero-wrap p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 420px;
}

.track-search-row {
    display: flex;
    gap: 0;
    max-width: 540px;
    width: 100%;
    margin-bottom: 14px;
}

.track-search-input {
    flex: 1;
    height: 52px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-right: none;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font);
    padding: 0 18px;
    outline: none;
    transition: border-color 0.2s;
}

.track-search-input::placeholder {
    color: var(--gray2);
}

.track-search-input:focus {
    border-color: var(--red);
}

.track-search-btn {
    height: 52px;
    padding: 0 28px;
    background: #dc2828;
    border: 1px solid var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.track-search-btn:hover {
    background: #dc2828;
    border-color: #dc2828;
}

.track-demo-hint {
    font-size: 12px;
    color: var(--gray2);
}

/* Track result card */
.track-result-card {
    margin-top: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    max-width: 620px;
    width: 100%;
    text-align: left;
    display: none;
}

.track-result-card.visible {
    display: block;
}

.trc-header {
    padding: 18px 24px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trc-id {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
}

.trc-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.trc-badge.in-transit {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.trc-badge.delivered {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.trc-badge.pending {
    background: rgba(107, 114, 128, 0.1);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Stepper */
.trc-stepper {
    padding: 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
}

.trc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
}

.trc-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray2);
    position: relative;
    z-index: 1;
}

.trc-step-dot.done {
    background: #dc2828;
    border-color: #dc2828;
    color: #fff;
}

.trc-step-dot.active {
    background: #111;
    border-color: #dc2828;
    color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.2);
}

.trc-step-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray2);
    white-space: nowrap;
}

.trc-step-line {
    flex: 1;
    height: 2px;
    background: #333;
    margin-bottom: 18px;
}

.trc-step-line.done {
    background: var(--red);
}

/* Info rows */
.trc-info {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-bottom: 1px solid #2a2a2a;
}

.trc-info-item .lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 4px;
}

.trc-info-item .val {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.trc-info-item .val.red {
    color: var(--red);
}

.trc-log {
    padding: 20px 24px;
}

.trc-log-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 16px;
}

.trc-log-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
}

.trc-log-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    bottom: -8px;
    width: 2px;
    background: #2a2a2a;
}

.trc-log-item:last-child::before {
    display: none;
}

.trc-log-item:last-child {
    margin-bottom: 0;
}

.trc-log-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gray2);
}

.trc-log-item.done .trc-log-dot {
    border-color: #22c55e;
    color: #22c55e;
}

.trc-log-item.active .trc-log-dot {
    border-color: var(--red);
    color: var(--red);
    background: rgba(227, 27, 35, 0.1);
}

.trc-log-content .trc-log-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.trc-log-content .trc-log-meta {
    font-size: 11.5px;
    color: var(--gray2);
    margin-top: 2px;
}

/* Not found state */
.track-not-found {
    display: none;
    margin-top: 20px;
    background: rgba(227, 27, 35, 0.07);
    border: 1px solid rgba(227, 27, 35, 0.25);
    padding: 20px 24px;
    max-width: 540px;
    width: 100%;
    font-size: 14px;
    color: var(--gray);
}

.track-not-found.visible {
    display: block;
}

.track-not-found strong {
    color: var(--white);
}

/* ---- Login page ---- */
.login-wrap {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 0px 80px;
    background: #111;
}

.login-wrap h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
    color: var(--red);
}

.login-wrap .login-sub {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 36px;
}

.login-card {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    padding: 36px 32px;
    border-radius: 10px;
    width: 450px;
}

.login-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-card-icon {
    color: var(--red);
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.login-card-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;

}

.login-field-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 7px;
    display: block;

}

.login-field {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    transition: border-color 0.2s;
    margin-bottom: 18px;
    border-radius: 5px;
}

.login-field:focus-within {
    border-color: var(--red);
}

.login-field svg {

    color: #888;
    flex-shrink: 0;
    width: 44px;
    /* padding (28) + icon width (16) */
    box-sizing: content-box;
}

.login-field input {
    flex: 1;
    height: 44px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--white);
    font-family: var(--font);
}

.login-field input::placeholder {
    color: var(--gray2);
}

.login-field .eye-btn {
    background: none;
    border: none;
    color: var(--gray2);
    cursor: pointer;
    padding: 0 0px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.login-field .eye-btn:hover {
    color: var(--white);
}

.login-forgot {
    text-align: right;
    margin-top: -12px;
    margin-bottom: 24px;
}

.login-forgot a {
    font-size: 12px;
    color: var(--red);
    transition: color 0.2s;
}

.login-forgot a:hover {
    color: #dc2828;
}

.login-submit-btn {
    width: 100%;
    height: 44px;
    background: var(--red);
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    font-family: var(--font);
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
}

.login-submit-btn:hover {
    background: #dc2828;
}

.login-signup-link {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: var(--gray2);
}

.login-signup-link a {
    color: var(--red);

    transition: color 0.2s;
}

.login-admin-link {
    margin-top: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--gray2);
}

.login-admin-link a {
    color: var(--red);
}

/* ---- Contact page ---- */
.contact-wrap-section {
    background: #111;
    padding: 0 0 80px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* Contact stepper (same as home booking) */
.contact-booking {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
}

.contact-info-box {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    padding: 28px 24px;
}

.contact-info-box h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.contact-info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-info-row:last-child {
    margin-bottom: 0;
}

.ci-icon {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 1px;
}

.ci-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 2px;
}

.ci-val {
    font-size: 13.5px;
    color: var(--white);
}

.contact-divider {
    height: 1px;
    background: #2a2a2a;
    margin: 20px 0;
}

.contact-response-note {
    font-size: 12.5px;
    color: var(--gray2);
    line-height: 1.65;
}

/* Booking form (contact page style — same as original site) */
.booking-step-form {
    padding: 28px 28px 24px;
}

.booking-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    padding-top: 24px;
    padding-bottom: 0;
    margin-bottom: 24px;
}

.bs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bs-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray2);
    transition: all 0.3s;
}

.bs-dot.active {
    background: #dc2828;
    border-color: #dc2828;
    color: var(--white);
}

.bs-dot.done {
    background: #1e1e1e;
    border-color: var(--red);
    color: var(--red);
}

.bs-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray2);
    white-space: nowrap;
}

.bs-dot.active~.bs-lbl {
    color: var(--white);
}

.bs-line {
    flex: 1;
    height: 2px;
    background: #2a2a2a;
    margin-bottom: 18px;
}

.bs-line.done {
    background: var(--red);
}

/* Material tile grid in form */
.material-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.material-tile-orig {
    border: 1px solid #2e2e2e;
    background: #111;
    padding: 16px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.material-tile-orig:hover {
    border-color: #444;
    color: var(--white);
}

.material-tile-orig.selected {
    border-color: var(--red);
    color: var(--white);
    background: rgba(227, 27, 35, 0.07);
}

.material-tile-orig svg {
    flex-shrink: 0;
}

/* Form field styles */
.form-field-group {
    margin-bottom: 16px;
}

.form-field-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-bottom: 7px;
}

.form-field-label .required {
    color: var(--red);
}

.form-field-input {
    width: 100%;
    height: 46px;
    background: #111;
    border: 1px solid #333;
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    padding: 0 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-field-input::placeholder {
    color: #555;
}

.form-field-input:focus {
    border-color: #dc2828;
}

.form-field-input.error {
    border-color: #dc2828;
}

.form-field-input.textarea-field {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 80px;
}

select.form-field-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-continue-btn {
    background: #dc2828;
    border: 1px solid #dc2828;
    color: var(--white);
    padding: 0 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    float: right;
}

.booking-continue-btn:hover {
    background: #dc2828;
}

.booking-back-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--gray);
    height: 46px;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    float: left;
    transition: border-color 0.2s, color 0.2s;
    font-family: var(--font);
}

.booking-back-btn:hover {
    border-color: #555;
    color: var(--white);
}

.form-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #2a2a2a;
    overflow: hidden;
}

/* Success state */
.booking-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    gap: 16px;
}

.booking-success.show {
    display: flex;
}

.booking-success .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.booking-success h3 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-success p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    max-width: 320px;
}

.ref-box {
    background: #111;
    border: 1px solid #333;
    padding: 14px 24px;
    text-align: center;
}

.ref-box .ref-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 4px;
}

.ref-box .ref-id {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--red);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cards-grid.three-col {
        grid-template-columns: 1fr 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 768px) {

    .footer-orig-grid {
        display: block !important;
    }

    .reveal {
        margin-bottom: 0px !important;
    }

    .track-hero-wrap {
        min-height: calc(80vh - 50px);
        padding: 60px 24px;
        padding-bottom: 0px;
    }

    .booking-step-header {
        gap: 0px !important;
    }

    .track-hero-wrap p {
        margin-bottom: 0px !important;
    }

    .login-wrap {
        min-height: calc(100vh - 68px);
        padding: 110px 24px;
        padding-bottom: 30px !important;
    }

    .footer-orig-brand .tagline {
        max-width: unset !important;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid.three-col {
        grid-template-columns: 1fr;
    }

    .material-tiles {
        grid-template-columns: 1fr;
    }

    .form-two-col {
        grid-template-columns: 1fr;
    }

    .footer-orig-grid {
        grid-template-columns: 1fr;
    }

    .trc-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-orig-links {
        list-style: none;
        display: block;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        display: block;
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================================
   ADMIN PORTAL
============================================================ */

.admin-split {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
}

.admin-left {
    flex: 1;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Subtle grid overlay for left side */
.admin-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: cover, 40px 40px, 40px 40px;
    pointer-events: none;
}

.admin-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
}

.admin-ops-title {

    font-size: 24px;
    letter-spacing: 4.8px;
    font-weight: 500;
    color: #f2f2f2b2;
    margin: 30px 0 15px;
    text-transform: uppercase;
}

.admin-ops-sub {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.admin-status-badge {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #555;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-right {
    flex: 1;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.admin-portal-card {
    width: 100%;
    max-width: 400px;
}

.admin-tab-group {
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    margin-bottom: 40px;
}

.admin-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #666;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.admin-tab-btn.active {
    background: #1f1f1f;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.admin-portal-header {
    margin-bottom: 30px;
}

.admin-portal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 8px;
}

.admin-portal-sub {
    color: #777;
    font-size: 14px;
}

.admin-input-group {
    margin-bottom: 24px;
}

.admin-input-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.admin-input-wrap {
    position: relative;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: border-color 0.2s;
}

.admin-input-wrap:focus-within {
    border-color: #444;
}

.admin-input-wrap svg {
    color: #888;
    flex-shrink: 0;
}

.admin-input-wrap input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 12px;
    width: 100%;
    font-size: 14px;
    outline: none;
}

.admin-input-wrap input::placeholder {
    color: #333;
}

.admin-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 13px;
    cursor: pointer;
}

.admin-check input {
    accent-color: #e31b23;
}

.admin-forgot {
    color: #777;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.admin-forgot:hover {
    color: #fff;
}

.admin-login-btn {
    width: 100%;
    background: #e31b23;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.admin-login-btn:hover {
    background: #dc2828;
}

.admin-info-box {
    margin-top: 30px;
    background: #121212;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 12px;
}

.admin-footer {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

.admin-copy {
    color: #444;
    font-size: 11px;
    margin-bottom: 6px;
}

.admin-restricted {
    color: #333;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .admin-split {
        flex-direction: column;
    }

    .admin-left {
        min-height: 350px;
    }
}

.admin-logo {
    height: 75px;
    width: auto;
    margin: auto;
}

/* Toast Notifications */
#notify-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 9999;
    pointer-events: none;
}

.admin-toast {
    width: 380px;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    animation: slideIn 0.3s ease-out forwards;
    transition: opacity 0.5s;
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.admin-toast.fade-out {
    opacity: 0;
}

.admin-toast-success {
    background: #111;
    border: 1px solid #222;
    color: #fff;
}

.admin-toast-success strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.admin-toast-success p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.admin-toast-error {
    background: #e31b23;
    color: #fff;
    border: none;
}

.admin-toast-error strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.admin-toast-error p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}



.login-field svg {
    color: #333;
    /* or any visible color */
}

.admin-check input[type="checkbox"] {
    background-color: black;
}