:root {
    /* ── Colour Palette ─────────────────────────────────────────── */
    --navy:          #0D2146;
    --navy-dark:     #09183a;
    --navy-light:    #163168;
    --gold:          #B8860B;
    --gold-light:    #d4a017;
    --gold-pale:     #f7f0dc;
    --white:         #ffffff;
    --off-white:     #f8f9fc;
    --text-dark:     #1a1e2e;
    --text-muted:    #6b7280;
    --border:        #e5e7eb;
    --success:       #10b981;
    --danger:        #ef4444;
    --card-shadow:   0 4px 24px rgba(13,33,70,0.10);
    --card-hover:    0 12px 40px rgba(13,33,70,0.18);
    --radius:        12px;
    --radius-lg:     18px;
    --transition:    all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base & Typography ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    margin: 0;
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--navy); }

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar-vigoorr {
    background: var(--navy) !important;
    padding: 0 1.5rem;
    border-bottom: 3px solid var(--gold);
    min-height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar-vigoorr .navbar-brand {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white) !important;
    text-decoration: none;
}
.navbar-vigoorr .navbar-brand span {
    color: var(--gold);
}
/* Logo image in navbar */
.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.navbar-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(184,134,11,0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}
.navbar-brand-logo:hover .navbar-logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(184,134,11,0.55));
}
.navbar-brand-text {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}
.navbar-brand-text .brand-r {
    color: var(--gold);
}
.navbar-vigoorr .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    font-size: 0.93rem;
    padding: 1.4rem 1rem !important;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}
.navbar-vigoorr .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
    transition: width 0.25s ease;
}
.navbar-vigoorr .nav-link:hover,
.navbar-vigoorr .nav-link.active {
    color: var(--gold) !important;
}
.navbar-vigoorr .nav-link:hover::after,
.navbar-vigoorr .nav-link.active::after {
    width: 80%;
}
.navbar-vigoorr .navbar-toggler {
    border: 1.5px solid rgba(184,134,11,0.4);
    padding: 0.35rem 0.6rem;
}
.navbar-vigoorr .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28184,134,11,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Mega dropdown */
.mega-dropdown { position: static !important; }
.mega-dropdown-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    background: var(--navy-dark);
    border: none;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1.5rem 2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    margin-top: 0 !important;
}
.mega-col-title {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(184,134,11,0.3);
    margin-bottom: 0.75rem;
}
.mega-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.88rem;
    padding: 0.3rem 0 !important;
    display: block;
    transition: var(--transition);
    text-decoration: none;
}
.mega-link:hover {
    color: var(--gold) !important;
    padding-left: 0.5rem !important;
}

/* ── CTA Buttons ────────────────────────────────────────────────── */
.btn-vigoorr-primary {
    background: var(--gold);
    color: var(--navy-dark) !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(184,134,11,0.35);
    text-decoration: none;
    display: inline-block;
}
.btn-vigoorr-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,134,11,0.45);
    color: var(--navy-dark) !important;
}
.btn-vigoorr-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-vigoorr-outline:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(184,134,11,0.08);
}
.btn-vigoorr-navy {
    background: var(--navy);
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13,33,70,0.25);
    text-decoration: none;
    display: inline-block;
}
.btn-vigoorr-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,33,70,0.35);
}

/* ── Hero Section ───────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(184,134,11,0.12);
    border-radius: 50%;
    animation: pulse-ring 6s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(184,134,11,0.08);
    border-radius: 50%;
    animation: pulse-ring 6s ease-in-out 2s infinite;
}
@keyframes pulse-ring {
    0%,100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.06); opacity: 1; }
}
.hero-badge {
    display: inline-block;
    background: rgba(184,134,11,0.15);
    border: 1px solid rgba(184,134,11,0.4);
    color: var(--gold-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white) !important;
    line-height: 1.18;
    margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stat-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 0.25rem;
}
.hero-floating-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* ── Section Styles ─────────────────────────────────────────────── */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.divider-gold {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 0.75rem 0 1.25rem;
}
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Vertical Cards (Homepage) ──────────────────────────────────── */
.vertical-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}
.vertical-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.vertical-card:hover { 
    box-shadow: var(--card-hover);
    transform: translateY(-6px);
    border-color: rgba(13,33,70,0.15);
}
.vertical-card:hover::before { transform: scaleX(1); }
.vertical-card-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}
.vertical-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.vertical-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.vertical-card-count {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.vertical-card-link {
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    margin-top: auto;
}
.vertical-card:hover .vertical-card-link { color: var(--gold); gap: 0.7rem; }

/* ── Stage Cards ─────────────────────────────────────────────────── */
.stages-section {
    background: linear-gradient(180deg, var(--off-white) 0%, #eef1f8 100%);
    padding: 5rem 0;
}
.stage-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stage-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.stage-card:hover {
    box-shadow: var(--card-hover);
    transform: translateY(-4px);
    border-color: rgba(184,134,11,0.25);
}
.stage-card:hover::after { transform: scaleX(1); }
.stage-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(13,33,70,0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}
.stage-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.stage-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.stage-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* Admin active stage highlight */
.stage-card.stage-active {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbf0 0%, var(--white) 100%);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.2), var(--card-shadow);
}
.stage-card.stage-done {
    opacity: 0.65;
}
.stage-card.stage-done .stage-number { color: rgba(16,185,129,0.12); }
.stage-card.stage-done .stage-badge { background: var(--success); color: white; }

/* ── Service Page Header ────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(184,134,11,0.1);
    border-radius: 50%;
}
.page-header-breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.75rem;
}
.page-header-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.page-header-breadcrumb a:hover { color: var(--gold); }
.page-header-breadcrumb .separator { margin: 0 0.5rem; }
.page-header-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 0.75rem;
}
.page-header-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
}
.vertical-pill {
    display: inline-block;
    background: rgba(184,134,11,0.18);
    border: 1px solid rgba(184,134,11,0.35);
    color: var(--gold-light);
    padding: 0.25rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ── Enquiry Form ───────────────────────────────────────────────── */
.enquiry-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}
.enquiry-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.form-control-vigoorr {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.93rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    background: #fafbfc;
}
.form-control-vigoorr:focus {
    border-color: var(--navy-light);
    box-shadow: 0 0 0 3px rgba(13,33,70,0.08);
    background: var(--white);
    outline: none;
}
.form-label-vigoorr {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.form-error { font-size: 0.82rem; color: var(--danger); margin-top: 0.25rem; }

/* ── Service Sub-Cards (Vertical Listing) ───────────────────────── */
.service-list-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}
.service-list-card:hover {
    box-shadow: var(--card-hover);
    transform: translateY(-4px);
    border-color: var(--navy-light);
}
.service-list-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.service-list-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.service-list-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.service-list-arrow {
    font-size: 0.8rem;
    color: var(--navy-light);
    font-weight: 600;
    transition: var(--transition);
}
.service-list-card:hover .service-list-arrow {
    color: var(--gold);
    padding-left: 4px;
}

/* ── Sitemap Page ───────────────────────────────────────────────── */
.sitemap-vertical-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius) var(--radius) 0 0;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.sitemap-vertical-header i { color: var(--gold); font-size: 1.1rem; }
.sitemap-col-body {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1rem 0;
}
.sitemap-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.sitemap-link:hover {
    background: var(--gold-pale);
    border-left-color: var(--gold);
    color: var(--navy);
}
.sitemap-link i { color: var(--text-muted); font-size: 0.8rem; }

/* ── Highlights / Features Boxes ───────────────────────────────── */
.highlight-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.highlight-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
}
.highlight-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}
.highlight-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.highlight-text  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border: 1px solid rgba(184,134,11,0.15);
    border-radius: 50%;
}
.cta-banner h3 {
    color: var(--white) !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
    border-top: 3px solid var(--gold);
}
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}
.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(184,134,11,0.3));
    flex-shrink: 0;
}
.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0;
}
.footer-brand span { color: var(--gold); }
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-link {
    display: block;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}
.footer-link:hover { color: var(--gold) !important; padding-left: 6px; }
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 2.5rem 0 1.5rem;
}
.footer-bottom {
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.2);
    margin-top: 1.5rem;
}
.footer-bottom-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-left: 0.35rem;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark) !important;
}

/* ── Alert / Flash Messages ─────────────────────────────────────── */
.flash-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    font-size: 0.93rem;
    font-weight: 500;
}
.flash-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    font-size: 0.93rem;
    font-weight: 500;
}

/* ── Admin Panel ────────────────────────────────────────────────── */
.admin-wrapper { min-height: 100vh; background: #f0f2f8; }
.admin-sidebar {
    width: 260px;
    background: var(--navy-dark);
    border-right: 3px solid var(--gold);
    min-height: 100vh;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.admin-sidebar-brand {
    padding: 1.5rem 1.5rem 1.25rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}
.admin-sidebar-brand span { color: var(--gold); }
.admin-sidebar-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(184,134,11,0.4));
    margin-bottom: 0.25rem;
}
.admin-sidebar-subtitle {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.15rem;
}
.admin-nav-section {
    padding: 1.25rem 0.75rem 0.5rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
    margin: 0.1rem 0;
}
.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(184,134,11,0.1);
    color: var(--gold) !important;
    border-left-color: var(--gold);
}
.admin-nav-link i { width: 18px; text-align: center; font-size: 0.95rem; }
.admin-content {
    margin-left: 260px;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.admin-topbar-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.admin-main { padding: 2rem; flex: 1; }
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}
.admin-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafbfc;
}
.admin-card-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.admin-card-body { padding: 1.5rem; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--card-shadow);
}
.stat-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.stat-icon.navy  { background: rgba(13,33,70,0.1);  color: var(--navy); }
.stat-icon.gold  { background: rgba(184,134,11,0.1); color: var(--gold); }
.stat-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.stat-icon.red   { background: rgba(239,68,68,0.1);  color: var(--danger); }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label  { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Admin Table */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
    background: #f3f4f8;
    color: var(--navy);
    font-weight: 700;
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}
.admin-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafbff; }

/* Badges */
.badge-vertical {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.badge-research { background: #eff6ff; color: #1d4ed8; }
.badge-ip       { background: #f0fdf4; color: #15803d; }
.badge-authoring{ background: #fdf4ff; color: #7e22ce; }
.badge-legal    { background: #fff7ed; color: #b45309; }
.badge-active   { background: #eff6ff; color: #1d4ed8; }
.badge-archived { background: #f0fdf4; color: #15803d; }
.badge-pending  { background: #fffbeb; color: #b45309; }
.badge-done     { background: #f0fdf4; color: #15803d; }

/* Admin Login */
.admin-login-wrap {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.admin-login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.admin-login-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.3rem;
}
.admin-login-logo span { color: var(--gold); }

/* Stage Timeline */
.stage-timeline { position: relative; }
.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: -1.25rem;
    width: 2px;
    background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    z-index: 1;
}
.timeline-dot.active { border-color: var(--gold); background: var(--gold); color: var(--white); }
.timeline-dot.done   { border-color: var(--success); background: var(--success); color: var(--white); }
.timeline-body {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    flex: 1;
    font-size: 0.87rem;
}
.timeline-stage-name { font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.timeline-meta { font-size: 0.78rem; color: var(--text-muted); }
.timeline-remark { margin-top: 0.35rem; font-size: 0.83rem; color: var(--text-dark); }

/* ── Utilities ──────────────────────────────────────────────────── */
.bg-navy      { background: var(--navy) !important; }
.bg-navy-dark { background: var(--navy-dark) !important; }
.text-gold    { color: var(--gold) !important; }
.text-navy    { color: var(--navy) !important; }
.border-gold  { border-color: var(--gold) !important; }
.rounded-vigoorr { border-radius: var(--radius) !important; }
.py-section   { padding-top: 5rem; padding-bottom: 5rem; }
.py-section-sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .admin-sidebar { position: relative; width: 100%; min-height: auto; }
    .admin-content { margin-left: 0; }
    .hero-section  { padding: 70px 0 60px; min-height: auto; }
    .mega-dropdown-menu { position: relative !important; width: auto; }
}
@media (max-width: 768px) {
    .admin-main { padding: 1.25rem; }
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; }
    .hero-title { font-size: 2rem; }
    .hero-stat-row { gap: 1.5rem; }
    .enquiry-section { padding: 1.5rem; }
}

/* ── Admin Login — Logo ─────────────────────────────────────────── */
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 2rem;
}
.admin-login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.admin-login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-align: center;
}
.admin-login-logo span { color: var(--gold); }
.admin-login-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(184,134,11,0.4));
    margin-bottom: 0.25rem;
}

/* ── Responsive logo adjustments ───────────────────────────────── */
@media (max-width: 400px) {
    .navbar-logo-img { width: 36px; height: 36px; }
    .navbar-brand-text { font-size: 1.35rem; }
}

