/* ===================================
   Wudhus Customer Portal
   Responsive desktop + mobile
   =================================== */

:root {
    --contrast: #1a1d2e;
    --contrast-2: #2a2e4a;
    --background: #f6f7fb;
    --card: #ffffff;
    --accent: #6366f1;
    --accent-2: #8b5cf6;

    --primary-hover: #5558e3;
    --text-primary: #1a1d2e;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --border-soft: #eef0f4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    --nav-height: 64px;
    --container-max: 1200px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { height: 100%; }
body {
    font-family: "Gabarito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    background: var(--background);
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Top nav ===== */
.topnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border-color);
    height: var(--nav-height);
}
.topnav-inner {
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 800;
    flex-shrink: 0;
}
.brand-mark {
    width: 36px; height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 14px rgba(99,102,241,0.35);
}
.brand-name { font-size: 19px; letter-spacing: -0.3px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-link i { font-size: 13px; opacity: 0.85; }
.nav-link:hover { background: #f1f3f8; color: var(--text-primary); }
.nav-link.active {
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.12));
    color: var(--accent);
}
.nav-link.active i { opacity: 1; }

.topnav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
}

.icon-btn {
    position: relative;
    width: 40px; height: 40px;
    background: #f3f4f8;
    border: 1px solid var(--border-color);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 15px;
    transition: background 0.15s ease, transform 0.05s ease;
    font-family: inherit;
}
.icon-btn:hover { background: #e9ecf3; }
.icon-btn:active { transform: scale(0.96); }
.badge-dot {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--danger-color);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px; height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}

/* User menu */
.user-menu { position: relative; }
.user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f3f4f8;
    border: 1px solid var(--border-color);
    padding: 5px 12px 5px 5px;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    color: var(--text-primary);
    transition: background 0.15s ease;
}
.user-trigger:hover { background: #e9ecf3; }
.user-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.user-avatar.lg { width: 44px; height: 44px; font-size: 15px; border-radius: 12px; }
.user-name-inline { font-weight: 700; font-size: 14px; }
.user-chev { font-size: 11px; color: var(--text-muted); }

.user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 280px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
    overflow: hidden;
    z-index: 110;
    animation: pop 0.15s ease;
}
.dropdown-head {
    display: flex; gap: 12px; align-items: center;
    padding: 14px;
    border-bottom: 1px solid var(--border-soft);
    background: #fafbff;
}
.dropdown-name { font-weight: 800; font-size: 14px; }
.dropdown-email { font-size: 12px; color: var(--text-muted); }
.dropdown-link {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}
.dropdown-link i {
    width: 18px; text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
.dropdown-link:hover { background: #f5f6fb; }
.dropdown-link.danger { color: var(--danger-color); }
.dropdown-link.danger i { color: var(--danger-color); }
.dropdown-divider { height: 1px; background: var(--border-soft); margin: 4px 0; }

.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
    background:
        radial-gradient(900px 350px at 90% -10%, rgba(139,92,246,0.45), transparent 60%),
        radial-gradient(900px 350px at 0% 110%, rgba(99,102,241,0.4), transparent 60%),
        linear-gradient(180deg, #1a1d2e 0%, #232742 100%);
    color: #fff;
    padding: 36px 0 80px;
    position: relative;
}
.hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 240px; }
.hero-eyebrow {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}
.hero-title { font-size: 32px; font-weight: 800; margin: 6px 0 8px; line-height: 1.15; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 15px; }

.hero-stats {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.hero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 140px;
    backdrop-filter: blur(10px);
}
.hero-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
}
.hero-stat-value { font-size: 22px; font-weight: 800; margin-top: 4px; }
.hero-stat-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ===== Main ===== */
.main {
    margin-top: -56px;
    position: relative;
    z-index: 1;
    flex: 1;
    padding-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 12px;
}
.section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}
.btn-link-small {
    background: none; border: none;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.btn-link-small:hover { color: var(--primary-hover); }

/* ===== Card widget ===== */
.card-widget {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    border: 1px solid var(--border-color);
}

.widget-title { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.widget-subtitle { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/* ===== Alert / outstanding invoice card ===== */
.alert-card {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2e4a 60%, #4338ca 130%);
    color: #fff;
    border: none;
    box-shadow: 0 14px 30px rgba(26,29,46,0.22);
    overflow: hidden;
    position: relative;
    margin-top: 0;
}
.alert-card::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.4), transparent 70%);
    top: -120px; right: -90px;
    pointer-events: none;
}
.alert-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    flex-wrap: wrap;
}
.alert-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(245,158,11,0.4);
}
.alert-meta { flex: 1; min-width: 200px; }
.alert-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(245,158,11,0.18);
    color: #fcd34d;
    margin-bottom: 6px;
}
.alert-amount { font-size: 32px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.alert-sub { font-size: 13px; color: rgba(255,255,255,0.65); }
.alert-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ===== Two-column grid ===== */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.grid-main, .grid-side {
    min-width: 0;
}

@media (min-width: 960px) {
    .grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
        gap: 28px;
    }
}

/* ===== Status pills ===== */
.status-pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-paid      { background: #d1fae5; color: #065f46; }
.status-pending   { background: #fef3c7; color: #92400e; }

/* ===== Booking card ===== */
.booking-top {
    display: flex;
    gap: 16px;
    align-items: stretch;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-soft);
}
.booking-date-tile {
    width: 72px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 8px 16px rgba(99,102,241,0.32);
}
.booking-day { font-size: 28px; font-weight: 800; line-height: 1; }
.booking-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 5px;
    opacity: 0.95;
}
.booking-headline { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.booking-service { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.booking-window {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}
.booking-window i { color: var(--accent); }

.booking-meta {
    list-style: none;
    padding: 16px 0 6px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .booking-meta { grid-template-columns: 1fr 1fr; }
    .booking-meta li:last-child { grid-column: 1 / -1; }
}
.booking-meta li { display: flex; gap: 12px; align-items: flex-start; }
.meta-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: #f3f4f8;
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}
.meta-value { font-size: 14px; color: var(--text-primary); font-weight: 600; }

.booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
    flex-wrap: wrap;
}
.booking-actions .btn { flex: 1; min-width: 140px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 11px;
    padding: 11px 18px;
    font: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    min-height: 42px;
    transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    line-height: 1;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn i { font-size: 13px; }

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 14px rgba(99,102,241,0.3);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 8px 18px rgba(99,102,241,0.4); }

.btn-secondary {
    background: #f3f4f8;
    color: var(--text-primary);
    border-color: var(--border-color);
}
.btn-secondary:hover { background: #e9ecf3; }

.btn-danger {
    background: var(--danger-color);
    color: #fff;
    box-shadow: 0 6px 14px rgba(239,68,68,0.3);
}
.btn-danger:hover { background: #dc2626; }

.btn-danger-ghost {
    background: #fff;
    color: var(--danger-color);
    border-color: #fecaca;
}
.btn-danger-ghost:hover { background: #fef2f2; }

.btn-white {
    background: #fff;
    color: var(--contrast);
}
.btn-white:hover { background: #f3f4f8; }

.btn-light-on-dark {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-light-on-dark:hover { background: rgba(255,255,255,0.18); }

/* ===== List card ===== */
.list-card { padding: 6px 18px; }
.list-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
}
.list-row.last { border-bottom: 0; }
.list-row-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.invoice-row-icon { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }
.history-row-icon { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }

.list-row-body { flex: 1; min-width: 0; }
.list-row-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.list-row-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.list-row-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.row-chev {
    width: 32px; height: 32px;
    background: #f3f4f8;
    border: none;
    border-radius: 9px;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: background 0.15s ease;
}
.row-chev:hover { background: #e9ecf3; color: var(--text-primary); }

/* ===== Account card ===== */
.account-card { display: flex; flex-direction: column; gap: 14px; }
.account-row { display: flex; gap: 12px; align-items: flex-start; }

/* ===== Support card ===== */
.support-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.support-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(99,102,241,0.3);
}
.support-body { flex: 1; min-width: 0; }
.support-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.support-actions .btn { flex: 1; min-width: 110px; }

/* ===== Footer ===== */
.site-foot {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
}
.site-foot-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.site-foot-links { display: flex; gap: 18px; }
.site-foot-links a { color: var(--text-secondary); font-weight: 600; }
.site-foot-links a:hover { color: var(--accent); }

/* ===== Drawer (mobile nav) ===== */
.drawer {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex;
    animation: fade 0.18s ease;
}
.drawer[hidden] { display: none; }
.drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.55);
}
.drawer-panel {
    position: relative;
    margin-left: auto;
    width: 86%;
    max-width: 340px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    animation: slideInRight 0.22s ease;
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-soft);
}
.drawer-nav {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}
.drawer-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 11px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
}
.drawer-link i {
    width: 22px; text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}
.drawer-link:hover { background: #f5f6fb; }
.drawer-link.active {
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.12));
    color: var(--accent);
}
.drawer-link.active i { color: var(--accent); }
.drawer-link.danger { color: var(--danger-color); }
.drawer-link.danger i { color: var(--danger-color); }
.drawer-divider { height: 1px; background: var(--border-soft); margin: 8px 0; }

/* ===== Modal ===== */
.modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fade 0.18s ease;
}
.modal[hidden] { display: none; }
.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.55);
}
.modal-panel {
    position: relative;
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    animation: pop 0.18s ease;
    overflow: hidden;
}
.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-soft);
    gap: 12px;
}
.modal-title { font-size: 17px; font-weight: 800; color: var(--text-primary); }
.modal-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.modal-body {
    padding: 16px 20px 4px;
    overflow-y: auto;
}
.modal-foot {
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid var(--border-soft);
    background: #fafbff;
}
@media (max-width: 520px) {
    .modal { padding: 0; align-items: flex-end; }
    .modal-panel {
        max-width: 100%;
        border-radius: 18px 18px 0 0;
        animation: slideUp 0.22s ease;
    }
    .modal-foot .btn { flex: 1; }
}

/* ===== Forms ===== */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.field > span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.field input,
.field select,
.field textarea {
    font: inherit;
    color: var(--text-primary);
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: 11px;
    background: #fff;
    width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 3px solid rgba(99,102,241,0.2);
    border-color: var(--accent);
}

.placeholder-box {
    border: 1px dashed var(--border-color);
    background: #fafbff;
    color: var(--text-muted);
    padding: 28px 16px;
    text-align: center;
    border-radius: 12px;
    font-size: 13px;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    left: 50%; bottom: 24px;
    transform: translateX(-50%);
    background: var(--contrast);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 11000;
    font-size: 13px;
    font-weight: 600;
    animation: toastIn 0.22s ease;
}
.toast[hidden] { display: none; }

/* ===== Animations ===== */
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes pop {
    from { transform: scale(0.96); opacity: 0 }
    to   { transform: scale(1); opacity: 1 }
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0 }
    to   { transform: translateY(0); opacity: 1 }
}
@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0 }
    to   { transform: translateX(0); opacity: 1 }
}
@keyframes toastIn {
    from { transform: translate(-50%, 12px); opacity: 0 }
    to   { transform: translate(-50%, 0); opacity: 1 }
}

/* ===== Mobile tweaks ===== */
@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .user-name-inline, .user-chev { display: none; }
    .user-trigger { padding: 4px; border-radius: 999px; }
}

@media (max-width: 720px) {
    .topnav-inner { gap: 12px; padding: 0 14px; }
    .container { padding: 0 14px; }
    .hero { padding: 28px 0 70px; }
    .hero-title { font-size: 26px; }
    .hero-stats { width: 100%; }
    .hero-stat { flex: 1; min-width: 0; padding: 12px 14px; }
    .hero-stat-value { font-size: 19px; }

    .card-widget { padding: 18px; }

    .alert-card-top { gap: 12px; }
    .alert-actions { width: 100%; }
    .alert-actions .btn { flex: 1; }
    .alert-amount { font-size: 28px; }

    .booking-actions .btn { min-width: 0; }

    .site-foot-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
    .brand-name { display: none; }
    .hero-stats { flex-direction: column; }
}
