/* ========================================
   Plaza Groundworks & Civil Engineering
   Color Scheme from Logo:
   - Primary Black: #1a1a1a
   - Accent Lime: #b5cc18
   - Grey Text: #888888
   - White: #ffffff
   ======================================== */

:root {
    --plaza-black: #1a1a1a;
    --plaza-dark: #222222;
    --plaza-lime: #b5cc18;
    --plaza-lime-dark: #9ab315;
    --plaza-grey: #888888;
    --plaza-light-grey: #f5f5f5;
    --plaza-white: #ffffff;
}

/* ---- Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background: var(--plaza-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- Navbar ---- */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--plaza-lime);
}

.navbar-brand-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--plaza-white) !important;
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.navbar-brand-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--plaza-lime) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--plaza-lime) !important;
}

.btn-plaza-sm {
    background: var(--plaza-lime);
    color: var(--plaza-black) !important;
    border: none;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-plaza-sm:hover {
    background: var(--plaza-lime-dark);
    color: var(--plaza-black) !important;
    transform: translateY(-1px);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    padding-top: 90px;
    padding-bottom: 60px;
    background: var(--plaza-black);
    background-image:
        linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(34, 34, 34, 0.85) 100%),
        url('/images/services/commercial1.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(34, 34, 34, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--plaza-white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-accent-line {
    width: 120px;
    height: 5px;
    background: var(--plaza-lime);
    margin: 1.5rem 0;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-plaza {
    background: var(--plaza-lime);
    color: var(--plaza-black);
    border: 2px solid var(--plaza-lime);
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-plaza:hover {
    background: var(--plaza-lime-dark);
    border-color: var(--plaza-lime-dark);
    color: var(--plaza-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 204, 24, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: var(--plaza-white) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--plaza-white) !important;
    color: var(--plaza-black) !important;
    border-color: var(--plaza-white) !important;
    transform: translateY(-2px);
}

/* ---- Section Common ---- */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--plaza-black);
    letter-spacing: -0.5px;
}

.section-accent {
    width: 50px;
    height: 4px;
    background: var(--plaza-lime);
    margin: 0.75rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--plaza-grey);
    max-width: 560px;
    margin: 0.5rem auto 0;
}

/* ---- Stats Strip ---- */
.stats-strip {
    background: var(--plaza-black);
    border-bottom: 3px solid var(--plaza-lime);
    padding: 1.5rem 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--plaza-lime);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* ---- Services Cards ---- */
.services-section {
    padding: 5rem 0;
    background: var(--plaza-white);
}

.service-card {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.1) 100%);
}

.service-card-body {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.service-card-num {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--plaza-lime);
    margin-bottom: 0.4rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--plaza-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.service-card-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--plaza-lime);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-card-link:hover {
    color: var(--plaza-white);
}

.service-card-phone {
    margin-top: 0.5rem;
}

.service-card-phone a {
    color: var(--plaza-lime);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
}

.service-card-phone a:hover {
    color: var(--plaza-white);
}

/* ---- Credentials (accreditations + partners combined) ---- */
.credentials-section {
    padding: 5rem 0;
    background: var(--plaza-dark);
}

.creds-certs {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.creds-certs img {
    height: 70px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(30%) brightness(1.4);
    transition: all 0.2s;
}

.creds-certs img:hover { opacity: 1; filter: grayscale(0%) brightness(1.4); }

.creds-partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.cred-partner-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    min-height: 65px;
    transition: all 0.2s;
}

.cred-partner-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--plaza-lime);
}

.cred-partner-item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(40%) brightness(1.3);
    opacity: 0.75;
    transition: all 0.2s;
}

.cred-partner-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
}

/* ---- Contact Section ---- */
.contact-section {
    padding: 5rem 0;
    background: var(--plaza-black);
    color: var(--plaza-white);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(181,204,24,0.12);
    border: 1px solid rgba(181,204,24,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plaza-lime);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--plaza-white);
    font-weight: 500;
}

.contact-cta-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 2.5rem;
}

.contact-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--plaza-white);
    margin-bottom: 0.5rem;
}

.contact-cta-sub {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

/* Hero eyebrow */
.hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--plaza-lime);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-item:last-of-type {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--plaza-lime);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--plaza-lime);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--plaza-lime);
}

/* ---- Footer ---- */
.site-footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: var(--plaza-grey);
    font-size: 0.9rem;
}

.footer-heading {
    color: var(--plaza-lime);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--plaza-lime);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--plaza-lime);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: var(--plaza-black);
    padding: 8rem 0 4rem;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plaza-lime);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--plaza-white);
    letter-spacing: -0.5px;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin-top: 0.5rem;
}

.breadcrumb-light .breadcrumb-item a {
    color: var(--plaza-lime);
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.badge-category {
    display: inline-block;
    background: var(--plaza-lime);
    color: var(--plaza-black);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* ---- Projects ---- */
.projects-section {
    padding: 4rem 0 6rem;
}

.projects-filter .btn-outline-secondary {
    border-color: #ddd;
    color: #555;
}

.projects-filter .btn-outline-secondary:hover {
    background: var(--plaza-black);
    border-color: var(--plaza-black);
    color: var(--plaza-white);
}

.project-card {
    background: var(--plaza-white);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.project-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--plaza-light-grey);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plaza-grey);
    background: #f0f0f0;
}

.project-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(26, 26, 26, 0.85);
    color: var(--plaza-lime);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.project-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--plaza-lime);
    color: var(--plaza-black);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.project-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plaza-black);
    margin-bottom: 0.3rem;
}

.project-location {
    font-size: 0.85rem;
    color: var(--plaza-grey);
    margin-bottom: 0.75rem;
}

.project-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    flex: 1;
}

.project-card-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* ---- Project Detail ---- */
.project-detail-section {
    padding: 4rem 0 6rem;
}

.project-detail-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.detail-section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--plaza-black);
}

.detail-description {
    color: #444;
    line-height: 1.85;
    font-size: 1rem;
}

.project-info-card {
    background: var(--plaza-light-grey);
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--plaza-lime);
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plaza-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--plaza-lime-dark);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-value {
    font-size: 0.95rem;
    color: var(--plaza-black);
    font-weight: 500;
}

/* ---- Form Pages ---- */
.form-section {
    padding: 4rem 0 6rem;
}

.form-card {
    background: var(--plaza-white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plaza-black);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--plaza-lime);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.form-control:focus, .form-select:focus {
    border-color: var(--plaza-lime);
    box-shadow: 0 0 0 0.2rem rgba(181, 204, 24, 0.2);
}

/* ---- Contact Page Sidebar ---- */
.contact-info-sidebar {
    background: var(--plaza-black);
    color: var(--plaza-white);
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 90px;
}

.sidebar-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--plaza-lime);
    margin-bottom: 0.5rem;
}

.sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sidebar-phone, .sidebar-email {
    display: block;
    color: var(--plaza-white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-phone:hover, .sidebar-email:hover {
    color: var(--plaza-lime);
}

.sidebar-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 1.25rem 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--plaza-lime);
    border-radius: 50%;
}

/* ---- Admin Table ---- */
.admin-table {
    background: var(--plaza-white);
}

.admin-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--plaza-grey);
    border-bottom: 2px solid var(--plaza-lime);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-new { background: #fff3cd; color: #856404; }
.status-in-progress { background: #cfe2ff; color: #084298; }
.status-closed { background: #d1e7dd; color: #0a3622; }
.status-superadmin { background: var(--plaza-black); color: var(--plaza-lime); }
.status-admin { background: #e2e3e5; color: #41464b; }
.status-user { background: #f8f9fa; color: #495057; }
.status-none { background: #f8f9fa; color: #6c757d; }

/* ---- Enquiry Detail ---- */
.enquiry-dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 0;
}

.enquiry-dl dt {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--plaza-grey);
    display: flex;
    align-items: center;
}

.enquiry-dl dd {
    margin: 0;
    color: var(--plaza-black);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.enquiry-description {
    background: var(--plaza-light-grey);
    border-radius: 8px;
    padding: 1.25rem;
    color: #444;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* ---- Nav Person Icon ---- */
.nav-user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--plaza-white) !important;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-user-btn:hover {
    background: var(--plaza-lime);
    border-color: var(--plaza-lime);
    color: var(--plaza-black) !important;
}

.nav-user-dropdown {
    min-width: 260px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
}

.dropdown-header-block {
    padding: 0.75rem 1.1rem 0.6rem;
}

.nav-dd-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.2rem;
}

.nav-dd-email {
    font-size: 0.85rem;
    color: var(--plaza-white);
    font-weight: 500;
    word-break: break-all;
}

.nav-dd-role {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-top: 0.35rem;
}

.role-superadmin { background: var(--plaza-lime); color: var(--plaza-black); }
.role-admin { background: rgba(255,255,255,0.15); color: var(--plaza-white); }

.dropdown-section-label {
    padding: 0.25rem 1.1rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
}

.nav-user-dropdown .dropdown-item {
    font-size: 0.875rem;
    padding: 0.55rem 1.1rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.15s;
}

.nav-user-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--plaza-white);
}

.dropdown-item-danger {
    color: #ff6b6b !important;
}

.dropdown-item-danger:hover {
    background: rgba(220,53,69,0.15) !important;
    color: #ff6b6b !important;
}

/* ---- My Enquiries ---- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.my-enquiry-card {
    background: var(--plaza-white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.my-enquiry-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.07);
}

.my-enquiry-card.resolved {
    border-left: 4px solid var(--plaza-lime);
}

.my-enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.my-enquiry-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--plaza-black);
    margin: 0 0 0.2rem;
}

.my-enquiry-date {
    font-size: 0.8rem;
    color: var(--plaza-grey);
}

.my-enquiry-body {
    padding: 1.5rem;
}

.my-enquiry-desc {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.my-enquiry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--plaza-grey);
}

/* Resolution badges */
.resolution-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resolution-accepted { background: #d1e7dd; color: #0a3622; }
.resolution-declined { background: #f8d7da; color: #842029; }
.resolution-counter { background: #fff3cd; color: #664d03; }

/* Response boxes shown to customer */
.counter-message-box {
    background: #fffbec;
    border: 1px solid #f0d060;
    border-radius: 8px;
    padding: 1rem;
}

.counter-message-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #856404;
    margin-bottom: 0.5rem;
}

.counter-message-text {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.resolution-box {
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.resolution-accepted { background: #d1e7dd; color: #0a3622; }
.resolution-declined { background: #f8d7da; color: #842029; }
.resolution-pending { background: #f8f9fa; color: #555; border: 1px solid #e0e0e0; }

/* ---- Admin Enquiries List ---- */
.enquiry-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.2s;
}

.stat-chip:hover, .stat-chip.active {
    background: var(--plaza-black);
    color: var(--plaza-white);
}

.stat-chip-count {
    background: #ddd;
    color: #333;
    border-radius: 10px;
    padding: 0.1rem 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.stat-chip-count.urgent {
    background: #dc3545;
    color: white;
}

.stat-chip.active .stat-chip-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

.admin-enquiry-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-enquiry-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--plaza-white);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.admin-enquiry-row:hover {
    border-color: var(--plaza-lime);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transform: translateX(3px);
}

.aer-left {
    min-width: 180px;
}

.aer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--plaza-black);
}

.aer-company {
    font-size: 0.8rem;
    color: var(--plaza-grey);
}

.aer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--plaza-grey);
    margin-top: 0.3rem;
}

.aer-desc {
    flex: 1;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}

.aer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    min-width: 120px;
}

.aer-date {
    font-size: 0.75rem;
    color: var(--plaza-grey);
}

/* ---- Action Cards (admin respond) ---- */
.action-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.action-card-header {
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-card-body {
    padding: 1.25rem;
    background: var(--plaza-white);
}

.action-card-desc {
    font-size: 0.85rem;
    color: var(--plaza-grey);
    margin-bottom: 0.75rem;
}

.action-accept .action-card-header { background: #d1e7dd; color: #0a3622; }
.action-counter .action-card-header { background: #fff3cd; color: #664d03; }
.action-decline .action-card-header { background: #f8d7da; color: #842029; }

.btn-accept {
    background: #198754;
    color: white;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-accept:hover { background: #146c43; color: white; }

.btn-counter {
    background: #e6a817;
    color: #1a1a1a;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-counter:hover { background: #c8920e; color: #1a1a1a; }

.btn-decline {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-decline:hover { background: #b02a37; color: white; }

@media (max-width: 767px) {
    .admin-enquiry-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .aer-right {
        flex-direction: row;
        align-items: center;
        min-width: unset;
    }
}

/* ---- Auth Pages ---- */
.auth-section {
    min-height: calc(100vh - 80px);
    padding: 7rem 0 4rem;
    background: var(--plaza-light-grey);
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--plaza-white);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border: 1px solid #e8e8e8;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-logo-bar {
    width: 50px;
    height: 4px;
    background: var(--plaza-lime);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--plaza-black);
    margin-bottom: 0.4rem;
}

.auth-subtitle {
    color: var(--plaza-grey);
    font-size: 0.95rem;
    margin: 0;
}

.auth-field {
    margin-bottom: 1.25rem;
}

.auth-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444;
    margin-bottom: 0.4rem;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--plaza-grey);
    font-size: 0.9rem;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--plaza-black);
    background: var(--plaza-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.auth-input:focus {
    border-color: var(--plaza-lime);
    box-shadow: 0 0 0 3px rgba(181, 204, 24, 0.15);
}

.auth-input::placeholder {
    color: #bbb;
}

.auth-validation {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.3rem;
}

.auth-alert {
    background: #fff3f3;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #842029;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.auth-alert:empty {
    display: none;
}

.auth-forgot {
    font-size: 0.8rem;
    color: var(--plaza-lime-dark);
    text-decoration: none;
    font-weight: 600;
}

.auth-forgot:hover {
    color: var(--plaza-black);
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.auth-check {
    width: 16px;
    height: 16px;
    accent-color: var(--plaza-lime);
    cursor: pointer;
}

.auth-check-label {
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
    margin: 0;
}

.auth-btn {
    padding: 0.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: var(--plaza-grey);
}

.auth-link {
    color: var(--plaza-lime-dark);
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    color: var(--plaza-black);
}

.auth-requirements {
    background: var(--plaza-light-grey);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
}

.auth-req-title {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
}

.auth-requirements ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--plaza-grey);
}

.auth-requirements li {
    margin-bottom: 0.2rem;
}

/* ---- Nav User Avatar ---- */
.nav-user-avatar {
    width: 30px;
    height: 30px;
    background: var(--plaza-lime);
    color: var(--plaza-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---- Identity Pages Overrides ---- */
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--plaza-lime);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .service-block {
        padding: 3rem 0;
    }

    .service-img {
        height: 200px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        margin-left: 0 !important;
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        gap: 1.5rem;
    }

    .cert-item img {
        height: 60px;
    }
}
