/* ============================================================
   asiaracims — Design System
   Client pages: match AsiaRAC website (navy #0a1628, gold #d4af37)
   Admin panel:  navy #202c5d, gold #B99B3B
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Admin palette */
    --navy: #202c5d;
    --navy-dark: #161f44;
    --navy-mid: #2a3870;
    --navy-light: #3a4e8a;
    --gold: #B99B3B;
    --gold-light: #d4b84e;
    --gold-bg: #fdf8ec;
    /* Shared */
    --white: #ffffff;
    --bg: #f4f6fb;
    --text: #222;
    --text-muted: #666;
    --border: #e2e6ef;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 2px 12px rgba(32,44,93,.08);
    --shadow-lg: 0 8px 32px rgba(32,44,93,.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all .25s ease;
    /* AsiaRAC website palette (client header/footer) */
    --rac-navy:      #0a1628;
    --rac-navy-med:  #1a2d4a;
    --rac-navy-lgt:  #2d4466;
    --rac-gold:      #d4af37;
    --rac-gold-lgt:  #f4d774;
    --rac-gold-drk:  #b8941f;
    --rac-off-white: #f8f7f4;
    --rac-gray:      #e5e5e5;
    --rac-muted:     #5a6a7e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background: var(--rac-off-white); color: var(--rac-navy); line-height: 1.6; }
a { text-decoration: none; color: var(--rac-navy); transition: var(--transition); }
a:hover { color: var(--rac-gold); }
img { max-width: 100%; height: auto; }


/* ══════════════════════════════════════════════════════════
   CLIENT HEADER — matches AsiaRAC website exactly
   ══════════════════════════════════════════════════════════ */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 5%;
    background: var(--rac-navy);
    border-bottom: 2px solid rgba(212,175,55,.25);
    transition: all .4s;
}
.logo img { max-width: 160px; width: 100%; height: auto; object-fit: contain; transition: transform .3s; }
.logo:hover img { transform: scale(1.04); }

.navlist { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.navlist > li { position: relative; }
.navlist a {
    display: inline-block; font-size: .82rem;
    color: rgba(255,255,255,.88); margin: 0 14px; padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all .25s; font-weight: 500;
    letter-spacing: 1.2px; text-transform: uppercase;
}
.navlist a:hover,
.navlist a.nav-active { color: var(--rac-gold); border-bottom-color: var(--rac-gold); }
.navlist a.nav-highlight { color: var(--rac-gold); }
.navlist a.nav-highlight:hover { color: var(--rac-gold-lgt); }

.navlist .dropdown-menu {
    background: var(--rac-navy);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.navlist .dropdown-menu .dropdown-item {
    font-size: .82rem; color: rgba(255,255,255,.85);
    padding: .55rem 1.4rem; transition: all .25s;
}
.navlist .dropdown-menu .dropdown-item:hover {
    background: rgba(212,175,55,.1); color: var(--rac-gold);
}

.nav-content { display: flex; align-items: center; }
.btn-whatsapp {
    background: #25d366; color: #fff !important;
    border-radius: 50px; border: none;
    padding: 9px 20px; font-size: .8rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(37,211,102,.35);
    cursor: pointer; transition: all .25s;
    display: inline-flex; align-items: center;
}
.btn-whatsapp i { margin-right: 7px; font-size: 15px; }
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.45); }

/* Mobile nav */
.whatsapp-btn { display: none; }
.whatsapp-mini-btn {
    background: #25d366; color: #fff; border: none;
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.toggle_btn { display: none; cursor: pointer; font-size: 1.4rem; color: var(--rac-gold); }

.dropdown_bar_menu {
    display: none; flex-direction: column;
    background: var(--rac-navy);
    position: absolute; top: 100%; right: 0; width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,.25); z-index: 999;
    list-style: none; margin: 0; padding: 0;
}
.dropdown_bar_menu li { padding: .9rem 1.2rem; border-bottom: 1px solid rgba(212,175,55,.12); text-align: center; }
.dropdown_bar_menu li a { color: rgba(255,255,255,.88); font-size: .9rem; }
.dropdown_bar_menu li:hover { background: rgba(212,175,55,.08); }
.dropdown_bar_menu.open { display: flex; }

.submenu {
    list-style: none; padding: 0; margin: 0; display: none;
    position: absolute; left: 0; top: 100%;
    background: var(--rac-navy);
    border: 1px solid rgba(212,175,55,.2); border-radius: 8px; z-index: 999;
}
.submenu li { padding: .6rem 1.4rem; white-space: nowrap; }
.has-submenu:hover .submenu { display: block; }

@media (max-width: 768px) {
    .navlist { display: none; }
    .toggle_btn { display: block; }
    .nav-content { display: none; }
    .whatsapp-btn { display: block; }
    .submenu { position: static; }
}


/* ══════════════════════════════════════════════════════════
   CLIENT HERO — AsiaRAC style with overlay gradient
   ══════════════════════════════════════════════════════════ */
.client-hero {
    position: relative; width: 100%;
    min-height: 65vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,22,40,.88) 0%, rgba(26,45,74,.75) 100%),
                url('../img/team-05.png') no-repeat center center;
    background-size: cover;
    margin-top: 66px;
    padding: 80px 5% 100px;
}
.client-hero h4 {
    font-size: .78rem; color: var(--rac-gold);
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 16px; font-weight: 600;
}
.client-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700; color: #fff;
    margin-bottom: 16px; line-height: 1.2;
}
.client-hero p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }


/* ══════════════════════════════════════════════════════════
   CLIENT FORM CARDS
   ══════════════════════════════════════════════════════════ */
.inquiry-form-card {
    max-width: 760px;
    margin: -60px auto 70px;
    position: relative; z-index: 10;
    background: var(--white);
    border-radius: 16px;
    padding: 48px 44px;
    box-shadow: 0 12px 48px rgba(10,22,40,.14);
}
.inquiry-form-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--rac-navy); margin-bottom: 28px; text-align: center;
}
.inquiry-form-card h2::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--rac-gold); margin: 10px auto 0; border-radius: 2px;
}

.status-card {
    max-width: 680px;
    margin: -60px auto 70px;
    position: relative; z-index: 10;
    background: var(--white);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 12px 48px rgba(10,22,40,.14);
    text-align: center;
}
.status-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--rac-navy); margin-bottom: 20px;
}

.status-result {
    margin-top: 28px; padding: 24px 28px;
    background: #f8f9fc; border-radius: 12px; text-align: left;
    border: 1px solid var(--rac-gray);
}
.status-result .info-row {
    display: flex; justify-content: space-between;
    padding: 11px 0; border-bottom: 1px solid #eee;
    font-size: .9rem;
}
.status-result .info-row:last-child { border: none; }
.status-result .info-label { font-weight: 600; color: var(--rac-navy); }


/* ══════════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block; margin-bottom: 6px;
    font-size: .85rem; font-weight: 600; color: var(--rac-navy-med);
}
.form-control-custom {
    width: 100%; padding: 11px 14px;
    border: 0; border-bottom: 2px solid var(--rac-gray);
    border-radius: 0;
    font-family: 'Poppins', sans-serif; font-size: .9rem;
    transition: border-color .25s; background: transparent; color: var(--rac-navy);
}
.form-control-custom:focus {
    outline: none; border-bottom-color: var(--rac-gold);
    box-shadow: none;
}
.form-control-custom::placeholder { color: var(--rac-muted); }
textarea.form-control-custom { resize: vertical; min-height: 120px; border: 1px solid var(--rac-gray); border-radius: 8px; padding: 12px 14px; background: #fafafa; }
textarea.form-control-custom:focus { border-color: var(--rac-gold); }
select.form-control-custom { cursor: pointer; background: transparent; border: 0; border-bottom: 2px solid var(--rac-gray); appearance: none; -webkit-appearance: none; }


/* ══════════════════════════════════════════════════════════
   BUTTONS (client pages)
   ══════════════════════════════════════════════════════════ */
.btn-primary-custom {
    background: var(--rac-navy); color: #fff; border: 2px solid var(--rac-navy);
    padding: 11px 28px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: .82rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover {
    background: transparent; color: var(--rac-navy);
    transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10,22,40,.12);
}

.btn-gold {
    background: var(--rac-navy); color: #fff;
    border: 2px solid var(--rac-navy);
    padding: 13px 32px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: .85rem; letter-spacing: 1.2px; text-transform: uppercase;
    cursor: pointer; transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover {
    background: transparent; color: var(--rac-navy);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent; color: var(--rac-navy);
    border: 2px solid var(--rac-navy);
    padding: 11px 24px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: .82rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--rac-navy); color: #fff; }


/* ══════════════════════════════════════════════════════════
   FLASH MESSAGES
   ══════════════════════════════════════════════════════════ */
.flash-msg {
    padding: 14px 20px; border-radius: 10px; margin-bottom: 20px;
    font-size: .9rem; font-weight: 500;
}
.flash-msg.success { background: #eaf8ee; color: #0d7a3a; border: 1px solid #bfe9cf; }
.flash-msg.error   { background: #fdeceb; color: #8a1f17; border: 1px solid #f5b5b0; }
.flash-msg.info    { background: #e8f4f8; color: #1a5a7a; border: 1px solid #b5d9e8; }


/* ══════════════════════════════════════════════════════════
   SUCCESS / REFERENCE BOX
   ══════════════════════════════════════════════════════════ */
.ref-box {
    background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(212,175,55,.05));
    border: 2px solid var(--rac-gold);
    border-radius: 12px; padding: 24px;
    margin: 20px 0; text-align: center;
}
.ref-box .ref-label { font-size: .8rem; color: var(--rac-muted); margin-bottom: 6px; letter-spacing: 1px; text-transform: uppercase; }
.ref-box .ref-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--rac-navy); letter-spacing: 3px;
}


/* ══════════════════════════════════════════════════════════
   STATUS BADGES
   ══════════════════════════════════════════════════════════ */
.badge { padding: 5px 12px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-secondary { background: #e2e3e5; color: #383d41; }


/* ══════════════════════════════════════════════════════════
   TIMELINE & MESSAGES
   ══════════════════════════════════════════════════════════ */
.timeline-item {
    display: flex; gap: 14px; margin-bottom: 14px;
    padding-left: 20px; border-left: 3px solid var(--rac-gold);
}
.timeline-item .tl-status { font-size: .88rem; font-weight: 600; color: var(--rac-navy); }
.timeline-item .tl-date   { font-size: .75rem; color: var(--rac-muted); margin-top: 2px; }

.comment-item {
    padding: 16px 18px; border-radius: 10px; margin-bottom: 12px;
    border-left: 4px solid var(--rac-gold);
    background: #fafbfd;
}
.comment-item.client-msg {
    background: #f0f4ff;
    border-left-color: var(--rac-navy);
}
.comment-item .meta { font-size: .78rem; color: var(--rac-muted); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.comment-item .text { font-size: .88rem; line-height: 1.7; }


/* ══════════════════════════════════════════════════════════
   CLIENT FOOTER — matches AsiaRAC website exactly
   ══════════════════════════════════════════════════════════ */
footer {
    background: var(--rac-navy);
    padding: 4rem 5% 2rem;
    color: rgba(255,255,255,.7);
    border-top: 2px solid rgba(212,175,55,.2);
    width: 100%;
}
.footer-container {
    display: flex; justify-content: space-around;
    align-items: flex-start; flex-wrap: wrap;
    max-width: 1200px; margin: 0 auto;
}
.footer-col { flex: 1; margin: 1rem; max-width: 280px; }
.footer-col .material-symbols-outlined { font-size: 18px; margin-right: 8px; color: var(--rac-gold); vertical-align: middle; }
.footer-col h4 {
    font-size: .85rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 1.2rem; color: #fff;
}
.footer-col .dropdown > a::after  { content: " ▾"; font-size: .7rem; }
.footer-col .dropdown:hover > a::after { content: " ▴"; }
.footer-col .dropdown .sub-links  { display: none; padding-left: 14px; }
.footer-col .dropdown:hover .sub-links { display: block; }
.footer-col p, .footer-col ul, .footer-col li { margin: .45rem 0; font-size: .88rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { color: rgba(255,255,255,.65); transition: color .25s; }
.footer-col a:hover { color: var(--rac-gold); }

.social-links { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,175,55,.35); transition: all .25s;
}
.social-links a:hover { background: var(--rac-gold); border-color: var(--rac-gold); transform: translateY(-3px); }
.social-links img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.footer-bottom {
    text-align: center; margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(212,175,55,.15);
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; margin: .3rem 0; }


/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; border-radius: 50px;
    padding: 13px 22px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .82rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    transition: all .25s; z-index: 9999; text-decoration: none;
    animation: waPulse 2.2s ease-in-out infinite;
}
.whatsapp-float i { font-size: 1.25rem; }
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.65); animation: none; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
    50%       { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}


/* ══════════════════════════════════════════════════════════
   LOGIN PAGE (admin)
   ══════════════════════════════════════════════════════════ */
.login-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #202c5d 0%, #2a3870 60%, #161f44 100%);
}
.login-card {
    background: var(--white); border-radius: var(--radius); padding: 48px 40px;
    width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); text-align: center;
}
.login-card img { height: 50px; margin-bottom: 24px; }
.login-card h2 { font-size: 1.3rem; font-weight: 700; color: #202c5d; margin-bottom: 6px; }
.login-card p { color: var(--text-muted); font-size: .88rem; margin-bottom: 28px; }
.login-card .form-control-custom {
    border: 2px solid var(--border); border-bottom: 2px solid var(--border);
    border-radius: var(--radius-sm); background: #fff; padding: 10px 14px;
}
.login-card .form-control-custom:focus { border-color: #B99B3B; box-shadow: 0 0 0 3px rgba(185,155,59,.15); }


/* ══════════════════════════════════════════════════════════
   ADMIN LAYOUT
   ══════════════════════════════════════════════════════════ */
.admin-layout { display: flex; min-height: 100vh; background: var(--bg); }

.sidebar {
    width: 260px; background: #202c5d;
    color: #fff; position: fixed; top: 0; bottom: 0;
    overflow-y: auto; z-index: 900;
    display: flex; flex-direction: column;
}
.sidebar-brand {
    padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.sidebar-brand img { height: 40px; }
.sidebar-brand-text {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}

.sidebar-nav { flex: 1; padding: 16px 0; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 24px; color: rgba(255,255,255,.7);
    font-size: .9rem; font-weight: 500;
    transition: var(--transition); border-left: 3px solid transparent;
    text-decoration: none;
}
.sidebar-nav a:hover { color: #fff; background: rgba(255,255,255,.06); border-left-color: #B99B3B; }
.sidebar-nav a.active { color: #fff; background: rgba(185,155,59,.15); border-left-color: #B99B3B; }
.sidebar-nav a .icon { width: 20px; text-align: center; font-size: 1rem; }
.sidebar-nav .nav-divider { margin: 12px 24px; border-top: 1px solid rgba(255,255,255,.08); }
.sidebar-nav .nav-label {
    padding: 8px 24px; font-size: .72rem;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,.35); font-weight: 600;
}
.sidebar-footer {
    padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.08);
    font-size: .82rem; color: rgba(255,255,255,.45);
}

.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar {
    background: var(--white); padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0,0,0,.04); position: sticky; top: 0; z-index: 800;
}
.admin-topbar h1 { font-size: 1.3rem; font-weight: 700; color: #202c5d; }
.admin-topbar .user-badge { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text-muted); }
.admin-topbar .user-badge .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: #B99B3B; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem;
}
.admin-content { padding: 24px 20px; }


/* ── STAT CARDS (admin) ────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card {
    background: var(--white); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
    border-left: 4px solid #B99B3B;
    display: flex; align-items: center; gap: 16px; transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-card .stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
}
.stat-card .stat-icon.blue   { background: #202c5d; }
.stat-card .stat-icon.yellow { background: #B99B3B; }
.stat-card .stat-icon.green  { background: var(--success); }
.stat-card .stat-icon.red    { background: var(--danger); }
.stat-card .stat-icon.purple { background: #6f42c1; }
.stat-card .stat-info h3 { font-size: 1.6rem; font-weight: 800; color: #202c5d; line-height: 1; }
.stat-card .stat-info p  { font-size: .78rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }


/* ── TABLE (admin) ────── */
.card-panel {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden; margin-bottom: 24px;
}
.card-panel-header {
    padding: 16px 20px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.card-panel-header h2 { font-size: 1.05rem; font-weight: 700; color: #202c5d; }
.card-panel-body { padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.card-panel-body::-webkit-scrollbar { height: 6px; }
.card-panel-body::-webkit-scrollbar-track { background: #f0f2f5; }
.card-panel-body::-webkit-scrollbar-thumb { background: #B99B3B; border-radius: 3px; }
.card-panel-body::-webkit-scrollbar-thumb:hover { background: #202c5d; }

.data-table { width: max-content; min-width: 100%; border-collapse: collapse; }
.data-table th {
    background: #f8f9fc; padding: 10px 12px; text-align: left;
    font-size: .72rem; text-transform: uppercase; letter-spacing: .5px;
    color: var(--text-muted); font-weight: 600; border-bottom: 2px solid var(--border);
    white-space: nowrap;
}
.data-table td { padding: 10px 12px; border-bottom: 1px solid #f0f2f5; font-size: .82rem; vertical-align: middle; white-space: nowrap; }
.data-table tr:hover { background: #fafbfd; }
.data-table .ref-link { color: #202c5d; font-weight: 600; }
.data-table .ref-link:hover { color: #B99B3B; }


/* ── ADMIN BUTTONS ────── */
.btn-sm { padding: 6px 14px; font-size: .8rem; }
.btn-danger { background: var(--danger); color: #fff; border: none; padding: 6px 14px; border-radius: 6px; font-size: .8rem; cursor: pointer; }
.btn-danger:hover { background: #c82333; }


/* ── INQUIRY DETAIL (admin) ────── */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.detail-main, .detail-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-block { padding: 20px 24px; }
.info-block h3 {
    font-size: .9rem; font-weight: 700; color: #202c5d;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px;
    padding-bottom: 10px; border-bottom: 2px solid #B99B3B;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .detail-grid { grid-template-columns: 1fr; }
    .admin-content { padding: 20px 16px; }
}
@media (max-width: 768px) {
    .client-hero { min-height: 50vh; padding: 60px 5% 80px; }
    .inquiry-form-card { margin: -40px 16px 50px; padding: 32px 24px; }
    .status-card { margin: -40px 16px 50px; padding: 32px 20px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { flex-direction: column; }
}
@media (max-width: 480px) {
    .stat-grid { grid-template-columns: 1fr; }
    .inquiry-form-card { padding: 24px 16px; }
}
