/* ═══════════════════════════════════════════════════════════════════
   SHEREHE PLATFORM — site.css
   Corporate & Formal | Blue & White | Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ──────────────────────────────────────────────── */
:root {
    --sherehe-navy:        #0B2447;
    --sherehe-blue:        #1565C0;
    --sherehe-blue-mid:    #1976D2;
    --sherehe-blue-light:  #42A5F5;
    --sherehe-blue-pale:   #EBF3FF;
    --sherehe-gold:        #C8A951;
    --sherehe-white:       #FFFFFF;
    --sherehe-off-white:   #F7F9FC;
    --sherehe-gray-100:    #F0F4F8;
    --sherehe-gray-300:    #CBD5E0;
    --sherehe-gray-500:    #718096;
    --sherehe-gray-700:    #2D3748;
    --sherehe-text:        #1A202C;
    --sherehe-shadow:      0 4px 24px rgba(11, 36, 71, 0.10);
    --sherehe-shadow-lg:   0 8px 48px rgba(11, 36, 71, 0.15);
    --sherehe-radius:      8px;
    --sherehe-radius-lg:   16px;
    --font-display:        'Cormorant Garamond', Georgia, serif;
    --font-body:           'DM Sans', system-ui, sans-serif;
    --transition:          all 0.25s ease;
    --navbar-height:       72px;
}

/* ── BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--sherehe-text);
    background: var(--sherehe-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--sherehe-navy);
}

a { color: var(--sherehe-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--sherehe-blue-mid); }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
.sherehe-navbar {
    height: var(--navbar-height);
    background: var(--sherehe-white);
    border-bottom: 1px solid rgba(11, 36, 71, 0.08);
    box-shadow: 0 2px 12px rgba(11, 36, 71, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.sherehe-navbar.scrolled {
    box-shadow: var(--sherehe-shadow);
}

.sherehe-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    border-radius: var(--sherehe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sherehe-gold);
    font-size: 1.2rem;
}

.brand-text { display: flex; align-items: baseline; gap: 1px; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sherehe-navy);
    letter-spacing: -0.3px;
}
.brand-suffix {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sherehe-blue);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sherehe-gray-700);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--sherehe-blue);
    background: var(--sherehe-blue-pale);
}
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--sherehe-blue);
    border-radius: 2px;
}

.btn-nav-login {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sherehe-navy);
    border: 1.5px solid var(--sherehe-navy);
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    transition: var(--transition);
}
.btn-nav-login:hover {
    background: var(--sherehe-navy);
    color: var(--sherehe-white);
}

.btn-nav-register {
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    color: var(--sherehe-white);
    padding: 0.4rem 1.25rem;
    border-radius: 6px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.3);
}
.btn-nav-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.4);
    color: var(--sherehe-white);
}

/* User menu */
.btn-user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--sherehe-blue-pale);
    border: 1.5px solid var(--sherehe-gray-300);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sherehe-navy);
}
.user-avatar-sm {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.user-initials-sm {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sherehe-blue);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 600;
}

.sherehe-dropdown {
    border: 1px solid var(--sherehe-gray-300);
    border-radius: var(--sherehe-radius);
    box-shadow: var(--sherehe-shadow-lg);
    padding: 0.5rem;
}
.sherehe-dropdown .dropdown-item {
    border-radius: 6px;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
}
.sherehe-dropdown .dropdown-item:hover {
    background: var(--sherehe-blue-pale);
    color: var(--sherehe-blue);
}

/* ── TOAST MESSAGES ─────────────────────────────────────────────── */
.sherehe-toast {
    position: fixed;
    top: calc(var(--navbar-height) + 12px);
    right: 20px;
    z-index: 9999;
    padding: 0.875rem 1.25rem;
    border-radius: var(--sherehe-radius);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 400px;
    box-shadow: var(--sherehe-shadow-lg);
    display: flex;
    align-items: center;
}
.sherehe-toast.success { background: #D4EDDA; color: #155724; border-left: 4px solid #28A745; }
.sherehe-toast.error   { background: #F8D7DA; color: #721C24; border-left: 4px solid #DC3545; }
.sherehe-toast.info    { background: #D1ECF1; color: #0C5460; border-left: 4px solid #17A2B8; }

/* ── SECTION BASICS ─────────────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sherehe-blue);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--sherehe-navy);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--sherehe-gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.sherehe-hero {
    min-height: calc(100vh - var(--navbar-height));
    background: linear-gradient(160deg, var(--sherehe-navy) 0%, #0d3b6e 50%, #1565C0 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 169, 81, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(21, 101, 192, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255, 0.04) 0%, transparent 40%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.35);
    color: var(--sherehe-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.7rem; animation: pulse 2s infinite; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--sherehe-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    color: var(--sherehe-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--sherehe-gold);
    color: var(--sherehe-navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.3);
}
.btn-hero-primary:hover {
    background: #e0bc5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.4);
    color: var(--sherehe-navy);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--sherehe-white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.18);
    color: var(--sherehe-white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sherehe-gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero floating card */
.hero-visual { position: relative; }
.hero-card-float {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--sherehe-radius-lg);
    padding: 2rem;
    animation: float 4s ease-in-out infinite;
}
.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}
.hero-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.hero-pill {
    display: inline-block;
    background: rgba(200, 169, 81, 0.2);
    border: 1px solid rgba(200, 169, 81, 0.3);
    color: var(--sherehe-gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── FEATURE CARDS ──────────────────────────────────────────────── */
.feature-card {
    background: var(--sherehe-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    border-color: var(--sherehe-blue-light);
    box-shadow: var(--sherehe-shadow);
    transform: translateY(-4px);
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--sherehe-blue-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--sherehe-blue);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--sherehe-blue);
    color: white;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sherehe-navy);
    margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.9rem; color: var(--sherehe-gray-500); line-height: 1.65; }

/* ── ROLE CARDS ─────────────────────────────────────────────────── */
.role-card {
    background: var(--sherehe-white);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    box-shadow: var(--sherehe-shadow);
    transition: var(--transition);
    height: 100%;
}
.role-card:hover { transform: translateY(-6px); box-shadow: var(--sherehe-shadow-lg); }
.role-card-header {
    padding: 2rem;
    text-align: center;
}
.role-card-header.organizer  { background: linear-gradient(135deg, #0B2447, #1565C0); }
.role-card-header.provider   { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.role-card-header.attendee   { background: linear-gradient(135deg, #4A148C, #7B1FA2); }
.role-icon-lg {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    display: block;
}
.role-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    margin: 0;
}
.role-card-body { padding: 1.75rem; }
.role-features { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.role-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--sherehe-gray-700);
    padding: 6px 0;
    border-bottom: 1px solid var(--sherehe-gray-100);
}
.role-features li:last-child { border-bottom: none; }
.role-features li i { color: var(--sherehe-blue); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

/* ── PROCESS STEPS ──────────────────────────────────────────────── */
.process-section { background: var(--sherehe-navy); }
.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
}
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(200, 169, 81, 0.15);
    border: 2px solid var(--sherehe-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sherehe-gold);
    margin: 0 auto 1.25rem;
}
.step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonial-card {
    background: var(--sherehe-off-white);
    border-left: 4px solid var(--sherehe-blue);
    border-radius: var(--sherehe-radius);
    padding: 1.75rem;
    height: 100%;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--sherehe-navy);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--sherehe-blue); }
.testimonial-role   { font-size: 0.8rem; color: var(--sherehe-gray-500); }

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue-mid));
    padding: 70px 0;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: white;
    margin-bottom: 1rem;
}
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }
.btn-cta {
    background: var(--sherehe-gold);
    color: var(--sherehe-navy);
    font-weight: 600;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-cta:hover {
    background: #e0bc5e;
    color: var(--sherehe-navy);
    transform: translateY(-2px);
}

/* ── AUTH PAGES ─────────────────────────────────────────────────── */
.auth-page {
    min-height: calc(100vh - var(--navbar-height));
    background: linear-gradient(160deg, var(--sherehe-navy) 0%, #0d3b6e 100%);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}
.auth-card {
    background: var(--sherehe-white);
    border-radius: var(--sherehe-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--sherehe-shadow-lg);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.auth-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--sherehe-navy);
    margin-bottom: 0.25rem;
}
.auth-subtitle { font-size: 0.9rem; color: var(--sherehe-gray-500); margin-bottom: 2rem; }

.auth-divider {
    display: flex; align-items: center; gap: 12px;
    color: var(--sherehe-gray-500); font-size: 0.8rem;
    margin: 1.5rem 0;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1;
    height: 1px; background: var(--sherehe-gray-300);
}

/* ── FORM CONTROLS ──────────────────────────────────────────────── */
.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sherehe-gray-700);
    margin-bottom: 0.4rem;
}
.form-control, .form-select {
    border: 1.5px solid var(--sherehe-gray-300);
    border-radius: var(--sherehe-radius);
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--sherehe-text);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--sherehe-blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
    outline: none;
}
.form-control.is-invalid { border-color: #DC3545; }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12); }
.input-group-text {
    background: var(--sherehe-gray-100);
    border: 1.5px solid var(--sherehe-gray-300);
    color: var(--sherehe-gray-500);
}

/* Role selection */
.role-select-group { display: flex; gap: 10px; flex-wrap: wrap; }
.role-option input[type="radio"] { display: none; }
.role-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border: 2px solid var(--sherehe-gray-300);
    border-radius: var(--sherehe-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sherehe-gray-700);
    min-width: 90px;
    text-align: center;
}
.role-option label i { font-size: 1.3rem; color: var(--sherehe-gray-500); transition: var(--transition); }
.role-option input:checked + label {
    border-color: var(--sherehe-blue);
    background: var(--sherehe-blue-pale);
    color: var(--sherehe-blue);
}
.role-option input:checked + label i { color: var(--sherehe-blue); }

/* Photo upload */
.photo-upload-zone {
    border: 2px dashed var(--sherehe-gray-300);
    border-radius: var(--sherehe-radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.photo-upload-zone:hover { border-color: var(--sherehe-blue); background: var(--sherehe-blue-pale); }
.photo-preview {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    display: block;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-sherehe {
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--sherehe-radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(21, 101, 192, 0.25);
    width: 100%;
}
.btn-sherehe:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(21, 101, 192, 0.35);
    color: white;
}

.btn-google {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--sherehe-white);
    border: 1.5px solid var(--sherehe-gray-300);
    border-radius: var(--sherehe-radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sherehe-gray-700);
    padding: 0.65rem 1rem;
    width: 100%;
    transition: var(--transition);
}
.btn-google:hover { background: var(--sherehe-gray-100); color: var(--sherehe-text); }
.btn-google img { width: 18px; height: 18px; }

/* ── PAGE HEADER (inner pages) ──────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--sherehe-navy) 0%, #0d3b6e 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.15);
}
.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 0.5rem;
}
.page-header-sub { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb { background: none; padding: 0; margin-top: 1rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item.active { color: var(--sherehe-gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.sherehe-footer { background: var(--sherehe-navy); }
.footer-top { padding: 60px 0 40px; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.footer-brand .brand-name { color: white; font-size: 1.4rem; }
.footer-brand .brand-suffix { color: var(--sherehe-blue-light); }

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--sherehe-gold);
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--sherehe-gold); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}
.footer-contact li i { color: var(--sherehe-gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--sherehe-gold);
    color: var(--sherehe-navy);
    border-color: var(--sherehe-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 12px; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--sherehe-gold); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-info-card {
    background: var(--sherehe-navy);
    color: white;
    border-radius: var(--sherehe-radius-lg);
    padding: 2.5rem;
    height: 100%;
}
.contact-info-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--sherehe-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.contact-form-card {
    background: var(--sherehe-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--sherehe-shadow);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
.value-card {
    padding: 2rem;
    border-radius: var(--sherehe-radius-lg);
    background: var(--sherehe-off-white);
    border: 1px solid var(--sherehe-gray-100);
    transition: var(--transition);
}
.value-card:hover { background: var(--sherehe-blue-pale); border-color: var(--sherehe-blue-light); }
.value-icon {
    font-size: 2rem;
    color: var(--sherehe-blue);
    margin-bottom: 1rem;
    display: block;
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.bg-off-white { background: var(--sherehe-off-white); }
.bg-navy { background: var(--sherehe-navy); }
.text-gold { color: var(--sherehe-gold); }
.text-navy { color: var(--sherehe-navy); }
.text-blue { color: var(--sherehe-blue); }

.divider-gold {
    width: 50px; height: 3px;
    background: var(--sherehe-gold);
    border-radius: 2px;
    margin: 1rem 0;
}
.divider-gold.center { margin: 1rem auto; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-stats { gap: 24px; }
    .sherehe-navbar { height: auto; padding: 12px 0; }
    .auth-page { padding: 2rem 1rem; }
    .auth-card { padding: 2rem 1.5rem; }
}

@media (max-width: 576px) {
    .hero-cta-group { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .role-select-group { justify-content: center; }
    .section-pad { padding: 50px 0; }
}


/* ═══════════════════════════════════════════════════════════════════
   MODULE 3 — SERVICE PROVIDER PORTAL
═══════════════════════════════════════════════════════════════════ */

/* ── FILTER SIDEBAR ─────────────────────────────────────────────── */
.filter-card {
    background: var(--sherehe-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sherehe-shadow);
}
.filter-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sherehe-gray-500);
    margin-bottom: 1.25rem;
}
.category-pill {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.855rem;
    color: var(--sherehe-gray-700);
    transition: var(--transition);
    text-decoration: none;
}
.category-pill:hover { background: var(--sherehe-blue-pale); color: var(--sherehe-blue); }
.category-pill.active { background: var(--sherehe-blue-pale); color: var(--sherehe-blue); font-weight: 600; }

/* ── LISTING CARDS ──────────────────────────────────────────────── */
.listing-card {
    background: var(--sherehe-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.listing-card:hover {
    border-color: var(--sherehe-blue-light);
    box-shadow: var(--sherehe-shadow);
    transform: translateY(-3px);
}
.listing-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--sherehe-gray-100);
}
.listing-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.05); }
.listing-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--sherehe-blue-pale), var(--sherehe-gray-100));
    font-size: 3rem;
    color: var(--sherehe-blue);
    opacity: 0.4;
}
.listing-category-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(11, 36, 71, 0.75);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.listing-card-body { padding: 1.1rem; flex: 1; }
.listing-card-footer { padding: 0 1.1rem 1.1rem; }
.listing-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sherehe-navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.listing-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--sherehe-gray-500);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.listing-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sherehe-blue);
    margin-top: 6px;
}

/* ── PROVIDER AVATARS ───────────────────────────────────────────── */
.provider-avatar-xs {
    width: 28px; height: 28px;
    border-radius: 50%; object-fit: cover;
}
.provider-initials-xs {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.provider-avatar-lg {
    width: 80px; height: 80px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}
.provider-initials-lg {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: white;
}

/* ── STARS ──────────────────────────────────────────────────────── */
.star-rating-sm { font-size: 0.75rem; color: var(--sherehe-gold); }
.star-rating    { font-size: 1rem;    color: var(--sherehe-gold); }
.star-picker    { display: flex; gap: 6px; cursor: pointer; }
.star-pick      { font-size: 1.6rem; color: var(--sherehe-gray-300); transition: var(--transition); }

/* ── PROFILE PAGE ───────────────────────────────────────────────── */
.service-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tab {
    display: inline-flex; align-items: center;
    padding: 8px 16px;
    border: 1.5px solid var(--sherehe-gray-300);
    border-radius: 20px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--sherehe-gray-700);
    text-decoration: none;
    transition: var(--transition);
}
.service-tab:hover { border-color: var(--sherehe-blue); color: var(--sherehe-blue); }
.service-tab.active { border-color: var(--sherehe-blue); background: var(--sherehe-blue-pale); color: var(--sherehe-blue); }

.listing-detail-card {
    background: var(--sherehe-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    box-shadow: var(--sherehe-shadow);
}
.listing-cover-img {
    width: 100%; height: 280px;
    object-fit: cover;
    display: block;
}
.listing-detail-body { padding: 2rem; }
.category-tag {
    display: inline-flex; align-items: center;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--sherehe-blue);
    background: var(--sherehe-blue-pale);
    padding: 4px 12px;
    border-radius: 20px;
}
.listing-price-badge {
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    color: white;
    font-size: 0.85rem; font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.btn-contact-sm {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    border: 1.5px solid var(--sherehe-gray-300);
    border-radius: 6px;
    font-size: 0.82rem; font-weight: 500;
    color: var(--sherehe-gray-700);
    text-decoration: none;
    transition: var(--transition);
}
.btn-contact-sm:hover { border-color: var(--sherehe-blue); color: var(--sherehe-blue); }

/* ── PORTFOLIO GRID ─────────────────────────────────────────────── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.portfolio-thumb {
    aspect-ratio: 1;
    border-radius: var(--sherehe-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.portfolio-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.portfolio-thumb:hover img { transform: scale(1.08); }
.portfolio-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,36,71,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 1.4rem;
}
.portfolio-thumb:hover .portfolio-thumb-overlay { opacity: 1; }

/* Manage view */
.portfolio-thumb-manage {
    aspect-ratio: 1;
    border-radius: var(--sherehe-radius);
    overflow: hidden;
    position: relative;
}
.portfolio-thumb-manage img { width:100%;height:100%;object-fit:cover; }
.portfolio-thumb-actions {
    position: absolute; top: 6px; right: 6px;
    display: flex; gap: 4px;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-thumb-manage:hover .portfolio-thumb-actions { opacity: 1; }
.portfolio-delete-btn {
    width: 28px; height: 28px;
    background: rgba(220,53,69,0.9);
    border: none; border-radius: 6px;
    color: white; font-size: 0.8rem;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
}
.portfolio-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    color: white; font-size: 0.7rem;
    padding: 4px 8px;
    text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}

/* ── LIGHTBOX ───────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center; justify-content: center;
    padding: 20px;
}
.lightbox-content {
    position: relative;
    max-width: 90vw; max-height: 90vh;
}
.lightbox-content img {
    max-width: 100%; max-height: 85vh;
    object-fit: contain;
    border-radius: var(--sherehe-radius);
    display: block;
}
.lightbox-close {
    position: absolute; top: -14px; right: -14px;
    width: 36px; height: 36px;
    background: white; border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 1;
}
.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* ── ENQUIRY / REVIEW CARDS ─────────────────────────────────────── */
.enquiry-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 2rem;
    box-shadow: var(--sherehe-shadow);
}
.sticky-sidebar { position: sticky; top: calc(var(--navbar-height) + 20px); }

.stats-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sherehe-shadow);
}
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--sherehe-gray-100);
}
.stats-label { font-size: 0.83rem; color: var(--sherehe-gray-500); }
.stats-value { font-size: 0.9rem; font-weight: 600; color: var(--sherehe-navy); }

.review-card {
    background: var(--sherehe-off-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius);
    padding: 1.25rem;
}
.provider-reply {
    background: var(--sherehe-blue-pale);
    border-left: 3px solid var(--sherehe-blue);
    border-radius: 0 var(--sherehe-radius) var(--sherehe-radius) 0;
    padding: 10px 14px;
    margin-top: 10px;
}
.review-form-card {
    background: var(--sherehe-blue-pale);
    border: 1.5px solid var(--sherehe-blue-light);
    border-radius: var(--sherehe-radius-lg);
    padding: 1.5rem;
}
.alert-info-box {
    background: var(--sherehe-blue-pale);
    border: 1px solid var(--sherehe-blue-light);
    border-radius: var(--sherehe-radius);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--sherehe-blue);
    display: flex; align-items: center;
}

/* ── DASHBOARD LAYOUT ───────────────────────────────────────────── */
.dashboard-wrap {
    display: flex;
    min-height: calc(100vh - var(--navbar-height));
    background: var(--sherehe-gray-100);
}
.dashboard-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--sherehe-navy);
    min-height: 100%;
    position: sticky;
    top: var(--navbar-height);
    height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}
.dashboard-main {
    flex: 1;
    padding: 2rem;
    overflow-x: hidden;
    min-width: 0;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.dashboard-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--sherehe-navy);
    margin: 0;
}
.dashboard-subtitle { font-size: 0.875rem; color: var(--sherehe-gray-500); margin: 4px 0 0; }

/* Sidebar nav */
.sidebar-brand {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}
.sidebar-logo {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
}
.sidebar-logo .brand-name { color: white; font-size: 1.2rem; }
.sidebar-nav-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding: 0 8px;
    margin-bottom: 6px;
}
.sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 2px;
    border: none;
}
.sidebar-link:hover { background: rgba(255,255,255,0.08); color: white; }
.sidebar-link.active { background: var(--sherehe-blue); color: white; }
.sidebar-link i { font-size: 1rem; }

/* ── STAT CARDS (dashboard) ─────────────────────────────────────── */
.stat-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--sherehe-shadow);
}
.stat-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sherehe-navy);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; font-weight: 600; color: var(--sherehe-gray-700); }
.stat-sub   { font-size: 0.75rem; color: var(--sherehe-gray-500); margin-top: 2px; }

/* ── DASH CARDS ─────────────────────────────────────────────────── */
.dash-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--sherehe-shadow);
    height: 100%;
}
.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.dash-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--sherehe-navy);
    margin: 0;
}
.dash-link { font-size: 0.8rem; color: var(--sherehe-blue); font-weight: 500; }
.dash-link:hover { text-decoration: underline; }

/* Enquiry row */
.enquiry-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--sherehe-gray-100);
}
.enquiry-row:hover { background: var(--sherehe-blue-pale); border-color: var(--sherehe-blue-light); }
.enquiry-row.unread { background: var(--sherehe-blue-pale); border-color: var(--sherehe-blue-light); }
.enquiry-row-left { display: flex; align-items: center; gap: 10px; }
.unread-dot {
    width: 8px; height: 8px;
    background: var(--sherehe-blue);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Listing row */
.listing-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--sherehe-gray-100);
}
.listing-row:last-child { border-bottom: none; }

/* ── STATUS BADGES ──────────────────────────────────────────────── */
.status-badge {
    display: inline-flex; align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.status-pendingapproval { background: #FFF3CD; color: #856404; }
.status-approved        { background: #D4EDDA; color: #155724; }
.status-rejected        { background: #F8D7DA; color: #721C24; }
.status-suspended       { background: #E2E3E5; color: #383D41; }
.status-open            { background: #D1ECF1; color: #0C5460; }
.status-inprogress      { background: #CCE5FF; color: #004085; }
.status-hired           { background: #D4EDDA; color: #155724; }
.status-closed          { background: #E2E3E5; color: #383D41; }

/* ── FORM CARD ──────────────────────────────────────────────────── */
.form-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 2rem;
    box-shadow: var(--sherehe-shadow);
}

/* ── TABLE ──────────────────────────────────────────────────────── */
.table-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    box-shadow: var(--sherehe-shadow);
}
.sherehe-table { margin: 0; }
.sherehe-table thead th {
    background: var(--sherehe-off-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sherehe-gray-500);
    border-bottom: 2px solid var(--sherehe-gray-100);
    padding: 12px 16px;
    white-space: nowrap;
}
.sherehe-table tbody td { padding: 12px 16px; vertical-align: middle; border-color: var(--sherehe-gray-100); }
.sherehe-table tbody tr:hover { background: var(--sherehe-blue-pale); }
.table-row-unread { background: #EBF3FF !important; font-weight: 500; }

/* ── ACTION BUTTONS ─────────────────────────────────────────────── */
.btn-icon-sm {
    width: 30px; height: 30px;
    border-radius: 6px;
    background: var(--sherehe-gray-100);
    border: 1px solid var(--sherehe-gray-300);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: var(--sherehe-gray-700);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-icon-sm:hover { background: var(--sherehe-blue-pale); color: var(--sherehe-blue); border-color: var(--sherehe-blue-light); }
.btn-icon-sm.danger:hover { background: #F8D7DA; color: #DC3545; border-color: #DC3545; }

/* ── FILTER TABS ────────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-tab {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--sherehe-gray-700);
    text-decoration: none;
    transition: var(--transition);
    background: white;
    border: 1.5px solid var(--sherehe-gray-300);
}
.filter-tab:hover { border-color: var(--sherehe-blue); color: var(--sherehe-blue); }
.filter-tab.active { background: var(--sherehe-blue); color: white; border-color: var(--sherehe-blue); }

/* ── BADGE COUNT ────────────────────────────────────────────────── */
.badge-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: #DC3545; color: white;
    font-size: 0.7rem; font-weight: 700;
    min-width: 22px; height: 22px;
    border-radius: 11px;
    padding: 0 6px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ── MESSAGE THREAD ─────────────────────────────────────────────── */
.message-thread-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    box-shadow: var(--sherehe-shadow);
    display: flex;
    flex-direction: column;
}
.message-list {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
}
.message-bubble-wrap { display: flex; }
.message-bubble-wrap.me  { justify-content: flex-end; }
.message-bubble-wrap.them{ justify-content: flex-start; }
.message-bubble {
    max-width: 75%;
    border-radius: 12px;
    padding: 0.75rem 1rem;
}
.bubble-me   { background: var(--sherehe-blue); color: white; border-bottom-right-radius: 4px; }
.bubble-them { background: var(--sherehe-gray-100); color: var(--sherehe-text); border-bottom-left-radius: 4px; }
.message-body { font-size: 0.9rem; line-height: 1.6; white-space: pre-wrap; }
.message-meta { font-size: 0.7rem; margin-top: 6px; opacity: 0.7; }
.message-reply-box {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--sherehe-gray-100);
    background: var(--sherehe-off-white);
}

/* ── EMPTY STATES ───────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--sherehe-gray-500);
}
.empty-state h5 { color: var(--sherehe-gray-700); margin-bottom: 0.5rem; }
.empty-state p  { font-size: 0.9rem; }

.empty-state-sm {
    display: flex; align-items: center; gap: 10px;
    padding: 1.5rem;
    color: var(--sherehe-gray-500);
    font-size: 0.875rem;
    background: var(--sherehe-off-white);
    border-radius: var(--sherehe-radius);
}
.empty-state-sm i { font-size: 1.5rem; flex-shrink: 0; }

/* ── RESPONSIVE DASHBOARD ───────────────────────────────────────── */
@media (max-width: 992px) {
    .dashboard-sidebar {
        width: 60px;
        padding: 1rem 0.5rem;
    }
    .dashboard-sidebar .sidebar-nav-label,
    .dashboard-sidebar .brand-name,
    .dashboard-sidebar .sidebar-link span { display: none; }
    .sidebar-link { justify-content: center; padding: 10px; }
    .sidebar-logo { justify-content: center; }
    .dashboard-main { padding: 1.25rem; }
}
@media (max-width: 576px) {
    .dashboard-wrap { flex-direction: column; }
    .dashboard-sidebar { width: 100%; height: auto; flex-direction: row; position: static; padding: 0.75rem 1rem; }
    .sidebar-nav { display: flex; flex-direction: row; gap: 4px; overflow-x: auto; }
    .sidebar-nav-label { display: none; }
    .dashboard-main { padding: 1rem; }
    .stats-card, .filter-card { position: static; }
}


/* ═══════════════════════════════════════════════════════════════════
   MODULE 4 — EVENT MANAGEMENT
═══════════════════════════════════════════════════════════════════ */

/* ── EVENT CARDS (public browse & my events) ────────────────────── */
.event-card {
    background: var(--sherehe-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    border-color: var(--sherehe-blue-light);
    box-shadow: var(--sherehe-shadow);
    transform: translateY(-3px);
}
.event-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.event-card-img-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue-mid));
    font-size: 3.5rem;
    color: rgba(255,255,255,0.25);
}
.event-card-body {
    padding: 1.1rem;
    flex: 1;
}
.event-card-footer {
    padding: 0 1.1rem 1.1rem;
}
.event-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--sherehe-navy);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-card-meta {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--sherehe-gray-500);
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.event-type-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sherehe-blue);
    background: var(--sherehe-blue-pale);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── EVENT ROW (dashboard list) ─────────────────────────────────── */
.event-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--sherehe-gray-100);
}
.event-row:hover {
    background: var(--sherehe-blue-pale);
    border-color: var(--sherehe-blue-light);
}
.event-row-date {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.event-date-day {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.event-date-month {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.event-row-info { flex: 1; min-width: 0; }
.event-row-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sherehe-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.event-row-meta {
    font-size: 0.75rem;
    color: var(--sherehe-gray-500);
    margin-top: 2px;
}

/* ── QUICK ACTION BUTTON ────────────────────────────────────────── */
.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--sherehe-off-white);
    border: 1px solid var(--sherehe-gray-100);
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--sherehe-gray-700);
    transition: var(--transition);
}
.quick-action-btn:hover {
    background: var(--sherehe-blue-pale);
    border-color: var(--sherehe-blue-light);
    color: var(--sherehe-blue);
}
.quick-action-btn i:first-child { font-size: 1.1rem; flex-shrink: 0; }

/* ── STATUS BADGE additions ─────────────────────────────────────── */
.status-draft       { background: #F0F4F8; color: var(--sherehe-gray-700); }
.status-published   { background: #CCE5FF; color: #004085; }
.status-completed   { background: #D4EDDA; color: #155724; }
.status-cancelled   { background: #F8D7DA; color: #721C24; }
.status-confirmed   { background: #D4EDDA; color: #155724; }
.status-pending     { background: #FFF3CD; color: #856404; }
.status-declined    { background: #F8D7DA; color: #721C24; }
.status-accepted    { background: #D4EDDA; color: #155724; }

/* ── FW helper ──────────────────────────────────────────────────── */
.fw-600 { font-weight: 600; }
.text-blue { color: var(--sherehe-blue) !important; }


/* ═══════════════════════════════════════════════════════════════════
   MODULE 5 — TICKETING & INVITATIONS
═══════════════════════════════════════════════════════════════════ */

/* ── TICKET TIER CARDS (public buy page) ────────────────────────── */
.ticket-tier-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 2px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    gap: 1rem;
}
.ticket-tier-card:hover:not(.sold-out) {
    border-color: var(--sherehe-blue);
    box-shadow: var(--sherehe-shadow);
}
.ticket-tier-card.sold-out {
    opacity: 0.6;
    background: var(--sherehe-gray-100);
}
.ticket-tier-left { flex: 1; }
.ticket-tier-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sherehe-navy);
    margin-bottom: 4px;
}
.ticket-tier-desc {
    font-size: 0.85rem;
    color: var(--sherehe-gray-500);
    margin-bottom: 6px;
}
.ticket-tier-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}
.ticket-tier-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sherehe-navy);
}

/* ── TICKET CARD (detail view) ──────────────────────────────────── */
.ticket-card {
    background: white;
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    box-shadow: var(--sherehe-shadow-lg);
    border-top: 6px solid var(--sherehe-blue);
}
.ticket-header {
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.ticket-event-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    flex: 1;
    margin-right: 12px;
}
.ticket-body { padding: 1.75rem; }
.ticket-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sherehe-gray-500);
    margin-bottom: 3px;
}
.ticket-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sherehe-navy);
}
.ticket-qr-section {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    border-top: 2px dashed var(--sherehe-gray-300);
    margin-top: 1.25rem;
}
.ticket-qr-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sherehe-gray-500);
    margin-bottom: 14px;
}
.ticket-qr-img {
    width: 180px;
    height: 180px;
    border: 3px solid var(--sherehe-navy);
    border-radius: 12px;
    display: block;
    margin: 0 auto 12px;
}
.ticket-qr-sub {
    font-size: 0.78rem;
    color: var(--sherehe-gray-500);
}
.ticket-footer {
    padding: 1rem 1.75rem;
    background: var(--sherehe-off-white);
    border-top: 1px solid var(--sherehe-gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* ── MINI TICKET CARD (My Tickets list) ─────────────────────────── */
.ticket-mini-card {
    background: white;
    border: 1.5px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    padding: 1rem;
    transition: var(--transition);
    height: 100%;
}
.ticket-mini-card:hover { border-color: var(--sherehe-blue-light); box-shadow: var(--sherehe-shadow); }
.ticket-mini-card.used  { opacity: 0.65; background: var(--sherehe-gray-100); }
.ticket-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ticket-mini-tier {
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
}
.ticket-mini-event {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sherehe-navy);
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ticket-mini-meta {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--sherehe-gray-500);
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.ticket-mini-code {
    font-family: monospace;
    font-size: 0.72rem;
    color: var(--sherehe-blue);
    letter-spacing: 1px;
}

/* ── TICKET TIER MANAGE (organizer view) ────────────────────────── */
.ticket-tier-manage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    background: var(--sherehe-off-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius);
}
.tier-manage-left { flex: 1; }
.tier-manage-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.tier-price-badge {
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}

/* ── QR SCANNER ─────────────────────────────────────────────────── */
.scan-result {
    border-radius: var(--sherehe-radius-lg);
    padding: 1.75rem;
    text-align: center;
}
.scan-result.valid {
    background: #D4EDDA;
    border: 2px solid #28A745;
    color: #155724;
}
.scan-result.invalid {
    background: #F8D7DA;
    border: 2px solid #DC3545;
    color: #721C24;
}

/* ── STATUS BADGE additions ─────────────────────────────────────── */
.status-active   { background: #D4EDDA; color: #155724; }
.status-expired  { background: #E2E3E5; color: #383D41; }
.status-sent     { background: #CCE5FF; color: #004085; }
.status-opened   { background: #D4EDDA; color: #155724; }

/* ═══════════════════════════════════════════════════════════════════
   MODULE 6 — NOTIFICATIONS
═══════════════════════════════════════════════════════════════════ */

/* ── NOTIFICATION BELL (navbar) ─────────────────────────────────── */
.nav-bell {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sherehe-blue-pale);
    border: 1.5px solid var(--sherehe-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sherehe-navy);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}
.nav-bell:hover {
    background: var(--sherehe-blue);
    color: white;
    border-color: var(--sherehe-blue);
}
.nav-bell-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: #DC3545;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
}

/* ── NOTIFICATION ITEMS ─────────────────────────────────────────── */
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    transition: var(--transition);
    text-align: left;
}
.notif-item:hover  { background: var(--sherehe-blue-pale); border-color: var(--sherehe-blue-light); }
.notif-item.unread { background: var(--sherehe-blue-pale); border-color: var(--sherehe-blue-light); }

.notif-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.notif-icon-blue   { background: var(--sherehe-blue-pale);  color: var(--sherehe-blue); }
.notif-icon-green  { background: #D4EDDA;                   color: #1B5E20; }
.notif-icon-red    { background: #F8D7DA;                   color: #C62828; }
.notif-icon-purple { background: #F3E5F5;                   color: #7B1FA2; }
.notif-icon-gray   { background: var(--sherehe-gray-100);   color: var(--sherehe-gray-500); }

.notif-body   { flex: 1; min-width: 0; }
.notif-title  { font-size: 0.875rem; font-weight: 600; color: var(--sherehe-navy); margin-bottom: 2px; }
.notif-message {
    font-size: 0.82rem;
    color: var(--sherehe-gray-700);
    line-height: 1.5;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notif-time { font-size: 0.72rem; color: var(--sherehe-gray-500); }


/* ═══════════════════════════════════════════════════════════════════
   AMENDMENTS — Installments, Expense Rows, Provider Links
═══════════════════════════════════════════════════════════════════ */

.expense-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--sherehe-off-white);
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius);
    transition: var(--transition);
}
.expense-row:hover { border-color: var(--sherehe-blue-light); }
.expense-row-info  { flex: 1; min-width: 0; }
.expense-row-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   MODULE 9 — RATING & REVIEWS
═══════════════════════════════════════════════════════════════════ */

.star-rating-sm { font-size: 0.85rem; }
.star-rating-lg { font-size: 1.4rem; letter-spacing: 2px; }

/* ── Review card on provider profile ────────────────────────────── */
.review-card {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--sherehe-gray-100);
}
.review-card:last-child { border-bottom: none; }
.review-stars  { color: var(--sherehe-gold); font-size: 0.9rem; }
.review-author { font-weight: 600; font-size: 0.875rem; color: var(--sherehe-navy); }
.review-date   { font-size: 0.75rem; color: var(--sherehe-gray-500); }
.review-body   { font-size: 0.875rem; color: var(--sherehe-gray-700); line-height: 1.7; margin: 8px 0 0; }
.review-reply  {
    background: var(--sherehe-blue-pale);
    border-left: 3px solid var(--sherehe-blue);
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 0.83rem;
    color: var(--sherehe-gray-700);
}
.review-eligibility-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--sherehe-blue-pale);
    color: var(--sherehe-blue);
    padding: 2px 8px;
    border-radius: 10px;
}

/* ── Filter tabs (shared) ────────────────────────────────────────── */
.filter-tabs {
    display: flex;
    gap: 4px;
    background: var(--sherehe-gray-100);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
}
.filter-tab {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sherehe-gray-500);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.filter-tab:hover { color: var(--sherehe-navy); background: white; }
.filter-tab.active {
    background: white;
    color: var(--sherehe-navy);
    box-shadow: 0 1px 4px rgba(11,36,71,0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   MODULE 10 — ADMIN DASHBOARD
═══════════════════════════════════════════════════════════════════ */

/* ── Alert action card ───────────────────────────────────────────── */
.alert-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    transition: var(--transition);
    cursor: pointer;
}
.alert-action-card:hover {
    box-shadow: var(--sherehe-shadow);
    border-color: var(--sherehe-blue-light);
}

/* ── Admin table card ────────────────────────────────────────────── */
.table-card {
    background: white;
    border: 1px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
}

/* ── Status badges additions for admin ──────────────────────────── */
.status-pendingreview { background: #FFF3CD; color: #856404; }
.status-inprogress    { background: #CCE5FF; color: #004085; }
.status-open          { background: #FFF3CD; color: #856404; }
.status-resolved      { background: #D4EDDA; color: #155724; }
.status-closed        { background: #E2E3E5; color: #383D41; }
.status-approved      { background: #D4EDDA; color: #155724; }
.status-rejected      { background: #F8D7DA; color: #721C24; }
.status-pendingreview { background: #FFF3CD; color: #856404; }
.status-pendingapproval { background: #FFF3CD; color: #856404; }

/* ── Badge count (navbar + sidebar) ─────────────────────────────── */
.badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    background: #DC3545;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 9px;
    padding: 0 4px;
}


/* ═══════════════════════════════════════════════════════════════════
   FEATURED EVENTS CAROUSEL
═══════════════════════════════════════════════════════════════════ */

.featured-events-section {
    background: linear-gradient(135deg, var(--sherehe-navy) 0%, #1565C0 100%);
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}

/* ── Carousel slides ─────────────────────────────────────────────── */
.carousel-item { height: 480px; position: relative; }

.carousel-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}
.carousel-item.active .carousel-slide-bg { transform: scale(1.02); }

.carousel-overlay {
    position: absolute; inset: 0;
    backdrop-filter: blur(1px);
}

/* ── Caption ─────────────────────────────────────────────────────── */
.carousel-caption-custom {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.carousel-event-type {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sherehe-gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.carousel-event-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.carousel-event-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.carousel-event-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.carousel-event-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.carousel-meta-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.carousel-event-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-carousel-primary {
    background: var(--sherehe-gold);
    color: var(--sherehe-navy);
    padding: 0.65rem 1.75rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(200,169,81,0.4);
}
.btn-carousel-primary:hover {
    background: #B8962A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,81,0.5);
}

.btn-carousel-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}
.btn-carousel-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    color: white;
}

/* ── Slide number ────────────────────────────────────────────────── */
.carousel-slide-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.slide-current { font-size: 5rem; color: rgba(255,255,255,0.7); line-height: 1; }
.slide-sep     { font-size: 2rem; }
.slide-total   { font-size: 2.5rem; }

/* ── Controls ────────────────────────────────────────────────────── */
.carousel-ctrl-btn {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.2s;
}
.carousel-ctrl-btn:hover {
    background: var(--sherehe-gold);
    border-color: var(--sherehe-gold);
    color: var(--sherehe-navy);
}

/* ── Indicators ──────────────────────────────────────────────────── */
.carousel-indicators { bottom: 90px; }
.carousel-indicators button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    transition: all 0.2s;
}
.carousel-indicators .active {
    background: var(--sherehe-gold);
    width: 24px;
    border-radius: 4px;
}

/* ── Thumbnails ──────────────────────────────────────────────────── */
.carousel-thumbs {
    padding-bottom: 1.5rem;
}
.carousel-thumb {
    width: 80px; height: 56px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    padding: 0;
}
.carousel-thumb .thumb-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
    transition: background 0.2s;
}
.carousel-thumb .thumb-label {
    position: absolute; bottom: 3px; left: 0; right: 0;
    text-align: center;
    font-size: 0.62rem; font-weight: 700;
    color: rgba(255,255,255,0.85);
    z-index: 1;
}
.carousel-thumb.active,
.carousel-thumb:hover {
    border-color: var(--sherehe-gold);
    transform: scale(1.08);
}
.carousel-thumb.active .thumb-overlay { background: rgba(0,0,0,0.1); }

/* ── Empty carousel fallback ────────────────────────────────────── */
@media (max-width: 576px) {
    .carousel-item { height: 380px; }
    .carousel-event-title { font-size: 1.5rem; }
    .carousel-thumb { width: 60px; height: 44px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SM v2.0 — VENUE PROFILE STYLES
═══════════════════════════════════════════════════════════════════ */

.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--sherehe-blue-pale);
    border: 1.5px solid var(--sherehe-blue-light);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sherehe-blue);
    margin: 4px;
    transition: var(--transition);
}
.amenity-chip:hover { background: var(--sherehe-blue); color: white; }
.amenity-chip i { font-size: 0.9rem; }

.package-card {
    border: 1.5px solid var(--sherehe-gray-100);
    border-radius: var(--sherehe-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: white;
}
.package-card:hover { box-shadow: var(--sherehe-shadow); border-color: var(--sherehe-blue-light); }

.package-card-header {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--sherehe-navy), var(--sherehe-blue));
    color: white;
}
.package-card-body { padding: 1.25rem; }

.package-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--sherehe-gray-100);
    font-size: 0.83rem;
}
.package-item-row:last-child { border-bottom: none; }

.inclusion-badge-included  { background:#D4EDDA; color:#155724; }
.inclusion-badge-optional  { background:#FFF3CD; color:#856404; }
.inclusion-badge-mandatory { background:#CCE5FF; color:#004085; }
.inclusion-badge {
    font-size: 0.65rem; font-weight: 700; padding: 2px 8px;
    border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}

.availability-dot {
    width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.dot-available  { background: #1B5E20; }
.dot-blocked    { background: #C62828; }
.dot-booked     { background: #F57F17; }

/* ── Management quick links in Listings ─────────────────────────── */
.btn-mgmt-link {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1.5px solid var(--sherehe-gray-200);
    border-radius: 20px;
    color: var(--sherehe-gray-600);
    text-decoration: none;
    transition: var(--transition);
    background: white;
}
.btn-mgmt-link:hover {
    background: var(--sherehe-off-white);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ── Feature gating (locked premium features) ─────────────────────────── */
.feature-locked {
    opacity: 0.5;
    cursor: not-allowed !important;
    position: relative;
    pointer-events: auto;
}
.feature-locked:hover {
    background: rgba(220, 53, 69, 0.06) !important;
    border-color: rgba(220, 53, 69, 0.25) !important;
}
.feature-locked .bi-lock-fill {
    color: #DC3545;
}
