/* JAPRO L'AHOME LIMITED - Enterprise Hardware E-Commerce Design System v2.0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    --primary: #0f172a;          /* Deep Navy */
    --primary-light: #1e293b;    /* Navy Light */
    --primary-dark: #090d16;     /* Midnight Navy */
    --accent: #f97316;           /* Construction Orange */
    --accent-hover: #ea580c;     /* Deep Orange */
    --accent-light: #ffedd5;    /* Soft Orange Tint */
    --steel: #475569;            /* Steel Gray */
    --steel-light: #94a3b8;      /* Light Steel */
    --steel-dark: #334155;       /* Dark Steel */
    --concrete: #e2e8f0;         /* Concrete Gray */
    --bg: #f8fafc;               /* Concrete Light Neutral */
    --bg-white: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --danger: #ef4444;
    --success: #16a34a;
    --info: #0ea5e9;
    --warning: #eab308;
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.16);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
body { 
    font-family: var(--font-body); 
    color: var(--text); 
    background: var(--bg); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-heading); 
    font-weight: 700; 
    line-height: 1.25; 
    color: var(--primary);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }

/* Buttons & Badges */
.btn-accent { 
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)); 
    color: #fff !important; 
    font-weight: 600; 
    border: none; 
    padding: 12px 28px; 
    border-radius: var(--radius-sm); 
    font-size: 0.95rem; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); 
    transition: var(--transition);
}
.btn-accent:hover { 
    background: linear-gradient(135deg, var(--accent-hover), #c2410c); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.45); 
}
.btn-outline-dark { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    font-weight: 600; 
    padding: 10px 24px; 
    border-radius: var(--radius-sm); 
    background: transparent; 
    transition: var(--transition); 
}
.btn-outline-dark:hover { 
    background: var(--primary); 
    color: #fff !important; 
    transform: translateY(-2px);
}
.btn-sm-accent { 
    background: var(--accent); 
    color: #fff !important; 
    font-weight: 600; 
    border: none; 
    padding: 8px 16px; 
    border-radius: var(--radius-sm); 
    font-size: 0.85rem; 
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-sm-accent:hover { 
    background: var(--accent-hover); 
    transform: translateY(-1px);
}
.badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.75rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-title { 
    font-weight: 800; 
    font-size: 1.85rem; 
    position: relative; 
    display: inline-block; 
    margin-bottom: 0.5rem;
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: -6px; 
    left: 0; 
    width: 50px; 
    height: 4px; 
    background: var(--accent); 
    border-radius: 2px; 
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* Announcement Bar & Header */
.top-bar {
    background: var(--primary-dark);
    color: var(--steel-light);
    font-size: 0.825rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a { color: var(--steel-light); }
.top-bar a:hover { color: var(--accent); }

.header-main {
    background: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: var(--shadow-md);
}
.navbar-brand { 
    font-family: var(--font-heading);
    font-size: 1.45rem; 
    font-weight: 800; 
    color: #fff !important; 
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-badge {
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search Bar */
.search-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.search-form .form-control {
    padding: 0.75rem 1.25rem;
    font-size: 0.925rem;
    border: none;
    background: #fff;
}
.search-form .form-control:focus {
    box-shadow: none;
}
.search-form .btn-search {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    transition: var(--transition);
}
.search-form .btn-search:hover { background: var(--accent-hover); }

/* Navigation & Mega Menu */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.6rem 1rem !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.mega-nav-bar {
    background: var(--primary-light);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mega-nav-bar .nav-link {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Section Redesign */
.hero-section-v2 {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 41, 59, 0.88) 100%), 
                url('https://images.unsplash.com/photo-1541888946425-d0fbb186a5b3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
    padding: 5.5rem 0 6rem;
    overflow: hidden;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.hero-title-v2 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-title-v2 span {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle-v2 {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
    margin-bottom: 2.25rem;
}
.hero-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #f1f5f9;
}
.hero-check-item i { color: var(--accent); font-size: 1.1rem; }

.hero-stats-banner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 3.5rem;
}
.hero-stat-box { text-align: center; }
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Trust Bar */
.trust-bar-v2 {
    background: #fff;
    border-bottom: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
}
.trust-card-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.5rem 1.25rem;
    border-right: 1px solid var(--concrete);
    transition: var(--transition);
}
.trust-card-v2:last-child { border-right: none; }
.trust-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}
.trust-title-v2 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}
.trust-sub-v2 {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Category Cards Redesign */
.category-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.category-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.category-card-v2 .cat-img-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.category-card-v2:hover .cat-img-box {
    background: var(--accent-light);
    color: var(--accent);
    transform: scale(1.1);
}
.category-card-v2 .cat-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.category-card-v2 .cat-count-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.category-card-v2 .cat-starting-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: auto;
}
.category-card-v2 .cat-browse-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 0.75rem;
    transition: var(--transition);
}
.category-card-v2:hover .cat-browse-btn {
    color: var(--accent);
    transform: translateX(4px);
}

/* Product Card Redesign */
.product-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(249, 115, 22, 0.4);
}
.product-card-v2 .img-container {
    position: relative;
    padding-top: 80%;
    background: #f1f5f9;
    overflow: hidden;
}
.product-card-v2 .img-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card-v2:hover .img-container img {
    transform: scale(1.08);
}
.product-card-v2 .badge-list {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-card-v2 .badge-chip {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-chip.sale { background: var(--danger); color: #fff; }
.badge-chip.featured { background: var(--primary); color: #fff; }
.badge-chip.new { background: var(--accent); color: #fff; }
.badge-chip.bestseller { background: var(--warning); color: var(--primary); }

.product-card-v2 .wishlist-btn-v2 {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel);
    font-size: 1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}
.product-card-v2 .wishlist-btn-v2:hover,
.product-card-v2 .wishlist-btn-v2.active {
    background: var(--danger);
    color: #fff;
}

.product-card-v2 .quick-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.product-card-v2:hover .quick-overlay {
    opacity: 1;
}
.product-card-v2 .quick-overlay button {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transform: translateY(10px);
    transition: var(--transition);
}
.product-card-v2:hover .quick-overlay button {
    transform: translateY(0);
}

.product-card-v2 .card-body-v2 {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-v2 .brand-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.product-card-v2 .product-title-v2 {
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}
.product-card-v2 .rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
    color: var(--warning);
    margin-bottom: 0.6rem;
}
.product-card-v2 .rating-stars .rating-num {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: 4px;
}
.product-card-v2 .price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 0.75rem;
}
.product-card-v2 .current-price-v2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}
.product-card-v2 .old-price-v2 {
    font-size: 0.85rem;
    color: var(--steel-light);
    text-decoration: line-through;
}
.product-card-v2 .stock-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    margin-bottom: 0.85rem;
}
.stock-indicator.in-stock { color: var(--success); }
.stock-indicator.low-stock { color: var(--warning); }
.stock-indicator.out-of-stock { color: var(--danger); }

.product-card-v2 .card-actions {
    display: flex;
    gap: 8px;
}
.product-card-v2 .card-actions .btn-add-cart {
    flex: 2;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.825rem;
    border: none;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}
.product-card-v2 .card-actions .btn-add-cart:hover {
    background: var(--accent-hover);
}
.product-card-v2 .card-actions .btn-quote {
    flex: 1;
    background: var(--bg);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.825rem;
    border: 1px solid var(--concrete);
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.product-card-v2 .card-actions .btn-quote:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ─── Shop Product Grid: 2 cards per row ────────────────────────────────── */
.product-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}
@media (max-width: 575px) {
    .product-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
/* Taller image for wider 2-column cards */
.product-grid-v2 .product-card-v2 .img-container {
    padding-top: 65%;
}
/* Bigger card body */
.product-grid-v2 .product-card-v2 .card-body-v2 {
    padding: 1.5rem 1.5rem 1.25rem;
}
/* Bigger product title */
.product-grid-v2 .product-card-v2 .product-title-v2 {
    font-size: 1.05rem;
    font-weight: 700;
    -webkit-line-clamp: 2;
    min-height: 2.8em;
}
/* Bigger price */
.product-grid-v2 .product-card-v2 .current-price-v2 {
    font-size: 1.45rem;
}
/* Bigger action buttons */
.product-grid-v2 .product-card-v2 .card-actions .btn-add-cart,
.product-grid-v2 .product-card-v2 .card-actions .btn-quote {
    padding: 13px 18px;
    font-size: 0.9rem;
}


/* Tabbed Featured Products */
.nav-pills-custom {
    display: inline-flex;
    background: #e2e8f0;
    padding: 4px;
    border-radius: 30px;
    gap: 4px;
}
.nav-pills-custom .nav-link {
    border-radius: 25px;
    padding: 8px 20px !important;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--steel) !important;
    transition: var(--transition);
}
.nav-pills-custom .nav-link.active {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow);
}

/* Brands Section */
.brand-card-v2 {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.brand-card-v2:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.brand-card-v2 .brand-logo-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.brand-card-v2 .brand-name-v2 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

/* Bulk Quotation Section */
.quote-banner-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.quote-banner-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    pointer-events: none;
}
.quote-banner-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.quote-banner-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 2rem;
}
.boq-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.boq-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.925rem;
}
.boq-feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Why JAPRO Cards */
.why-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.why-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}
.why-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.why-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Customer Reviews / Testimonials */
.review-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.review-card-v2:hover {
    box-shadow: var(--shadow-md);
}
.review-stars {
    color: var(--warning);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.review-text {
    font-size: 0.95rem;
    color: var(--steel-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.review-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.review-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.review-author-role {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* Project Gallery Cards */
.gallery-card-v2 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding-top: 65%;
}
.gallery-card-v2 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card-v2:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}
.gallery-tag {
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Building Tips / Blog Cards */
.blog-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.blog-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card-v2 .blog-body {
    padding: 1.5rem;
}
.blog-card-v2 .blog-meta {
    font-size: 0.775rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.blog-card-v2 .blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.blog-card-v2 .blog-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Enterprise Footer */
.footer-v2 {
    background: var(--primary-dark);
    color: #cbd5e1;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
}
.footer-v2 h5, .footer-v2 h6 {
    color: #fff;
}
.footer-v2 a {
    color: #94a3b8;
    transition: var(--transition);
}
.footer-v2 a:hover {
    color: var(--accent);
}
.footer-v2 ul {
    padding-left: 0;
    list-style: none;
}
.footer-v2 ul li {
    margin-bottom: 0.65rem;
}

/* Admin Dashboard Styling System */
.admin-sidebar-v2 {
    background: var(--primary-dark);
    min-height: 100vh;
    color: #94a3b8;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-sidebar-v2 .nav-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    padding: 1rem 1.25rem 0.4rem;
}
.admin-sidebar-v2 .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem !important;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    transition: var(--transition);
}
.admin-sidebar-v2 .nav-link i { font-size: 1.1rem; color: #64748b; }
.admin-sidebar-v2 .nav-link:hover,
.admin-sidebar-v2 .nav-link.active {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent) !important;
}
.admin-sidebar-v2 .nav-link:hover i,
.admin-sidebar-v2 .nav-link.active i {
    color: var(--accent);
}

.kpi-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--concrete);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.kpi-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.kpi-card-v2 .kpi-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.kpi-card-v2 .kpi-icon-v2.orange { background: var(--accent-light); color: var(--accent); }
.kpi-card-v2 .kpi-icon-v2.blue { background: #dbeafe; color: #2563eb; }
.kpi-card-v2 .kpi-icon-v2.green { background: #d1fae5; color: #059669; }
.kpi-card-v2 .kpi-icon-v2.purple { background: #f3e8ff; color: #9333ea; }
.kpi-card-v2 .kpi-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}
.kpi-card-v2 .kpi-lbl {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.kpi-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    float: right;
}
.kpi-trend.up { background: #d1fae5; color: #059669; }
.kpi-trend.down { background: #fee2e2; color: #dc2626; }

/* ─── Admin KPI Card v2 (Enterprise-grade) ─── */
.kpi-card-v2 {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.kpi-card-v2:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.kpi-icon-v2 {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    background: #fff8f1;
    color: var(--accent);
}
.kpi-icon-v2.orange { background: #fff7ed; color: #f97316; }
.kpi-icon-v2.green  { background: #f0fdf4; color: #16a34a; }
.kpi-icon-v2.blue   { background: #eff6ff; color: #2563eb; }
.kpi-icon-v2.red    { background: #fef2f2; color: #dc2626; }
.kpi-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
    display: block;
}
.kpi-lbl {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}