﻿:root {
    --bg: #f4f7fb;
    --card: #ffffff;
    --card-light: #f8f9fd;
    --primary: #7c5cff;
    --primary-light: #9d87ff;
    --secondary: #14c38e;
    --text: #1b2430;
    --text-muted: #6b7280;
    --border: rgba(255,255,255,0.08);
    --danger: #ff5f6d;
    --shadow: 0 10px 30px rgba(0,0,0,0.35);
    --radius: 22px;
    --transition: all .3s ease;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
}

/* MOBILE MENU */

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--text);
}

.mobile-actions {
    display: none;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1400px, 95%);
    margin: auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, #eef3f9 0%, #dde7f5 100%);
    border-bottom: 1px solid var(--border);
}

.p-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.public-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    /*font-family: 'Inter', 'Segoe UI', sans-serif;*/
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.public-logo span {
    color: var(--primary-light);
}

    .public-logo img {
        flex-shrink: 0;
        object-fit: contain;
    }



.p-nav-links {
    display: flex;
    gap: 2rem;
}

    .p-nav-links a {
        color: var(--text-muted);
        transition: var(--transition);
        position: relative;
    }

        .p-nav-links a:hover {
            color: var(--text);
        }

        .p-nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: var(--transition);
        }

        .p-nav-links a:hover::after {
            width: 100%;
        }

.p-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: .8rem 1.3rem;
    border-radius: 999px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

input[type="text"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

     hover 
    input:hover,
    select:hover {
        border-color: rgba(124, 92, 255, 0.4);
    }

     focus 
    input:focus,
    select:focus {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
    }



/* HERO */
.hero {
    padding: 4rem 0 2rem;
    display: block;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: .95;
    margin-bottom: 1.5rem;
}

    .hero-text h1 span {
        color: var(--primary-light);
    }

.hero-text {
    width: 100%;
}

    .hero-text p {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

.hero-card {
    background: linear-gradient(145deg, #1d2230, #141824);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 480px;
}

    .hero-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(124,92,255,.3), transparent 45%);
    }

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3142, #0f1117);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}


/* =========================
   SEARCH BOX (MODERN CLEAN)
========================= */

.search-box {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}


.search-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
}


.search-box .form-control,
.search-box .form-select {
    height: 38px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

    /* focus animation */
    .search-box .form-control:focus,
    .search-box .form-select:focus {
        border-color: #7c5cff;
        box-shadow: 0 0 0 3px rgba(124,92,255,0.15);
    }

/* search button */
.search-btn {
    height: 38px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
}

/* more filters link */
.search-more {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT + RIGHT alignment containers */
.search-actions-left,
.search-actions-right {
    display: flex;
    align-items: center;
}

/* links (same style you already had) */
.search-more a {
    font-size: 13px;
    color: #7c5cff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

    /* hover */
    .search-more a:hover {
        text-decoration: underline;
    }

/* clear filter slightly different (optional better UX) */
.search-actions-right a {
    color: #ef4444;
}

/* advanced filters spacing */
.advanced-filters {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

/* checkbox alignment */
.form-check-label {
    font-size: 13px;
    color: #475569;
}

/* mobile optimization */
@media (max-width: 768px) {
    .search-box {
        padding: 10px;
    }

        .search-box .row > div {
            margin-bottom: 8px;
        }
    .search-more {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
}

.main-layout {
    width: 100%;
    padding: 0;
}

.ticket-grid {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    gap: 1.5rem;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}


.hotel-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    /* FIXED HEIGHT */
    height: 240px;
    transition: 0.2s ease;
}

    .hotel-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    }

/* image side */
.hotel-thumb {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

    .hotel-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hotel-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    height: 100%;
}
.hotel-top h5 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}


/* header row */
.hotel-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.hotel-info h5 {
    font-size: 1.05rem;
    margin: 0;
}

.location {
    font-size: 0.85rem;
    color: #64748b;
}

.rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7c5cff;
}

/* description */
.hotel-content p {
    font-size: 12.5px;
    color: #64748b;
}

/* bottom section */
.hotel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.price-box small {
    font-size: 11px;
    color: #6b7280;
}

.price-box h3 {
    font-size: 1rem;
    margin: 0;
    color: #7c5cff;
}

/* button */
.hotel-bottom .btn {
    padding: 6px 12px;
    font-size: 12px;
}

@media (max-width: 992px) {

    .hotel-grid {
        grid-template-columns: 1fr;
    }

    .hotel-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hotel-thumb {
        height: 220px;
    }
}

.auth-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.auth-container {
    width: min(1200px, 95%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 3rem;
    align-items: center;
}

.auth-left h1 {
    /*font-family: 'Inter', 'Segoe UI', sans-serif;*/
    font-size: 2.5rem;
    line-height: .95;
    margin-bottom: 1.5rem;
}

    .auth-left h1 span {
        color: var(--primary-light);
    }

.auth-left p {
    max-width: 540px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: rgba(124,92,255,.12);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-feature {
    color: var(--text-muted);
    font-size: .95rem;
}

.auth-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.auth-card-header {
    margin-bottom: 2rem;
}

    .auth-card-header h2 {
        font-size: 2rem;
        margin-bottom: .5rem;
    }

    .auth-card-header p {
        color: var(--text-muted);
    }

.auth-group {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.3rem;
}

    .auth-group label {
        font-size: .92rem;
        color: var(--text-muted);
    }

.auth-input {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.12);
    background: #fff;
    padding: 0 1rem;
    outline: none;
    font-size: .95rem;
    transition: var(--transition);
}

    .auth-input:focus {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 4px rgba(124,92,255,.1);
    }

.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text-muted);
    font-size: .9rem;
}

.auth-link {
    color: var(--primary);
    font-size: .9rem;
}

.auth-btn {
    width: 100%;
    height: 56px;
    border-radius: 16px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.8rem 0;
}

    .auth-divider::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background: rgba(15,23,42,0.08);
    }

    .auth-divider span {
        position: relative;
        background: #fff;
        padding: 0 1rem;
        color: var(--text-muted);
        font-size: .85rem;
    }

.social-btn {
    width: 100%;
    height: 56px;
    border-radius: 16px;
}

.auth-bottom-text {
    margin-top: 1.8rem;
    text-align: center;
    color: var(--text-muted);
    font-size: .92rem;
}

    .auth-bottom-text a {
        color: var(--primary);
        font-weight: 600;
    }

/* RESPONSIVE */

@media(max-width:992px) {

    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-left {
        text-align: center;
    }

        .auth-left p {
            margin-inline: auto;
        }

    .auth-features {
        align-items: center;
    }
}

@media(max-width:768px) {

    .auth-page {
        padding: 2rem 0;
    }

    .auth-card {
        padding: 2rem 1.4rem;
    }

    .auth-left h1 {
        font-size: 3.2rem;
    }

    .auth-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* =========================
   PAGE COMMON
========================= */

.page-section {
    padding: 4rem 0;
}

.page-hero {
    text-align: center;
    margin-bottom: 3rem;
}

    .page-hero h1 {
        /*font-family: 'Inter', 'Segoe UI', sans-serif;*/
        font-size: 3rem;
        margin-bottom: 1rem;
    }

        .page-hero h1 span {
            color: var(--primary-light);
        }

    .page-hero p {
        max-width: 700px;
        margin: auto;
        color: var(--text-muted);
    }

/* =========================
   ABOUT PAGE
========================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(124,92,255,0.08);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius);
}

    .stat-card h3 {
        font-size: 2rem;
        color: var(--primary);
    }

/* =========================
   CONTACT PAGE
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.08);
}

.message-box {
    min-height: 140px;
    padding-top: 1rem;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.info-card {
    background: rgba(255,255,255,0.6);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* FOOTER */
footer {
    background: linear-gradient(180deg, #dfe7f2 0%, #cfd9e8 100%);
    border-top: 1px solid rgba(15,23,42,0.12);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 3rem;
}

    .footer-grid h4 {
        margin-bottom: 1rem;
    }

    .footer-grid p,
    .footer-grid a {
        color: var(--text-muted);
        line-height: 2;
    }

.copyright {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    font-size: .9rem;
}

/* Aligns the logo and paragraph side-by-side */
.footer-brand-col {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem; /* Space between logo and text */
}

    /* Prevents the logo from shrinking or distorting */
    .footer-brand-col img {
        flex-shrink: 0;
        object-fit: contain;
    }

/* Optional: Stack them vertically on small mobile devices */
@media (max-width: 480px) {
    .footer-brand-col {
        flex-direction: column;
        gap: 1rem;
    }
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .hero,
    .main-layout {
        grid-template-columns: 1fr;
    }

    .search-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-btn {
        width: 100%;
    }

    .sidebar {
        position: static;
    }
}

@media(max-width:768px) {

    .p-navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .p-nav-actions {
        display: none;
    }

    .p-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 20px 20px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

        .p-nav-links.active {
            display: flex;
        }

        .p-nav-links a {
            padding: 1rem;
            border-radius: 12px;
        }

            .p-nav-links a:hover {
                background: rgba(124,92,255,.08);
            }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: .8rem;
        margin-top: 1rem;
    }

        .mobile-actions .btn {
            width: 100%;
        }

    .search-box {
        grid-template-columns: 1fr;
    }

    .hotel-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hotel-thumb {
        height: 220px;
    }

    .hotel-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }


}

@media (max-width: 600px) {
    .price-row {
        grid-template-columns: 1fr;
    }
}


.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.10);
    padding: 2.2rem;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
    /*font-family: 'Inter', 'Segoe UI', sans-serif;*/
    font-size: 2.4rem;
    font-weight: 700;
}

    .auth-logo span {
        color: var(--primary);
    }

.auth-title {
    text-align: center;
    margin-bottom: .5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: .95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.auth-group {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

    .auth-group label {
        font-size: .9rem;
        color: var(--text-muted);
    }

    .auth-group input {
        width: 100%;
        height: 56px;
        border-radius: 16px;
        border: 1px solid rgba(15,23,42,0.10);
        background: #fff;
        padding: 0 1rem;
        font-size: .95rem;
        outline: none;
        transition: var(--transition);
    }

        .auth-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(124,92,255,.12);
        }

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    color: var(--text-muted);
}

    .auth-options a {
        color: var(--primary);
        font-weight: 600;
    }

.auth-submit {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    font-size: 1rem;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: .5rem 0;
    color: var(--text-muted);
    font-size: .85rem;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 42%;
        height: 1px;
        background: rgba(15,23,42,0.08);
    }

    .auth-divider::before {
        left: 0;
    }

    .auth-divider::after {
        right: 0;
    }

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-btn {
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.10);
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

    .social-btn:hover {
        transform: translateY(-2px);
    }

.auth-footer-text {
    text-align: center;
    margin-top: 1.8rem;
    font-size: .92rem;
    color: var(--text-muted);
}

    .auth-footer-text a {
        color: var(--primary);
        font-weight: 700;
    }

.fixed-footer {
    margin-top: auto;
}

.room-icon {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

    .room-icon li {
        list-style-type: none;
        display: inline-block;
        width: 30px;
        height: 30px;
        margin-right: 15px;
        margin-bottom: 15px;
        cursor: pointer;
        background-repeat: no-repeat;
        background-size: contain;
        transition: 0.5s;
    }

@media (max-width: 575.98px) {
    .room-icon li {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

.room-icon li.icon-1 {
    background-image: url(../img/icon/shield.png);
}

    .room-icon li.icon-1:hover {
        background-image: url(../img/icon/shield-hover.png);
    }

.room-icon li.icon-2 {
    background-image: url(../img/icon/air-conditioner.png);
}

.room-icon li.icon-2:hover {
    background-image: url(../img/icon/air-conditioner-hover.png);
}

.room-icon li.icon-3 {
    background-image: url(../img/icon/shower.png);
}

    .room-icon li.icon-3:hover {
        background-image: url(../img/icon/shower-hover.png);
    }

.room-icon li.icon-4 {
    background-image: url(../img/icon/towel.png);
}

    .room-icon li.icon-4:hover {
        background-image: url(../img/icon/towel-hover.png);
    }

.room-icon li.icon-5 {
    background-image: url(../img/icon/television.png);
}

    .room-icon li.icon-5:hover {
        background-image: url(../img/icon/television-hover.png);
    }

.room-icon li.icon-6 {
    background-image: url(../img/icon/wifi.png);
}

    .room-icon li.icon-6:hover {
        background-image: url(../img/icon/wifi-hover.png);
    }

.room-icon li.icon-7 {
    background-image: url(../img/icon/kitchen.png);
}

    .room-icon li.icon-7:hover {
        background-image: url(../img/icon/kitchen-hover.png);
    }



/* =========================
   STATUS / MESSAGE PAGES
========================= */

.status-page {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.status-card {
    width: 100%;
    max-width: 720px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.status-icon {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--danger);
}

.success-check {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,195,142,.12);
    color: var(--secondary);
    font-size: 3rem;
    font-weight: 700;
}

.status-card h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.status-card p {
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 560px;
    margin: auto;
}

.status-note {
    margin-top: 1.2rem;
}

.status-center-list {
    display: inline-block;
    text-align: left; 
    margin: 2rem auto 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}


.status-actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.success-card {
    border-top: 5px solid var(--secondary);
}

.pending-card {
    border-top: 5px solid #f59e0b;
}

.danger-card {
    border-top: 5px solid var(--danger);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .status-card {
        padding: 3rem 1.5rem;
    }

    .status-icon {
        font-size: 4rem;
    }

    .success-check {
        width: 85px;
        height: 85px;
        font-size: 2.5rem;
    }


    .status-center-list {
        display: block; 
        text-align: left;
        padding-left: 1.5rem;
        margin-top: 1.5rem;
    }
    .status-actions {
        flex-direction: column;
    }

        .status-actions .btn {
            width: 100%;
        }
}