/* ============================================================
   P. Kumar & Associates — Complete Stylesheet
   Color: Maroon + Cream + Dark Gold
   Font:  Arial, Helvetica, sans-serif (system fonts only)
   ============================================================ */

:root {
    --maroon:       #7b1c2e;
    --maroon-dark:  #5a1220;
    --maroon-light: #9e2a3f;
    --gold:         #b8860b;
    --gold-light:   #d4a017;
    --gold-pale:    #f5e6c0;
    --cream:        #fdf8f0;
    --cream-dark:   #f2ead8;
    --white:        #ffffff;
    --text:         #2c2c2c;
    --text-mid:     #555555;
    --text-light:   #888888;
    --border:       #ddd0b8;
    --border-light: #eee5d0;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.15);
    --header-h:     72px;
    --radius:       6px;
    --radius-lg:    10px;
    --transition:   all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: Arial, Helvetica, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a { color: var(--maroon); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--maroon-dark);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold-pale);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

.divider-gold {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 40px;
}
.divider-gold .line { flex: 1; max-width: 60px; height: 2px; background: var(--gold); }
.divider-gold .dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--maroon);
    color: var(--white);
    border-color: var(--maroon);
}
.btn-primary:hover {
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--maroon);
    border-color: var(--maroon);
}
.btn-outline:hover {
    background: var(--maroon);
    color: var(--white);
}
.btn-wa {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-wa:hover {
    background: #1db954;
    border-color: #1db954;
    color: var(--white);
    transform: translateY(-1px);
}
.btn-sm { padding: 7px 16px; font-size: 12px; font-weight: 600; }

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid;
}
.alert-success { background: #f0fdf4; color: #166534; border-color: #22c55e; }
.alert-error   { background: #fef2f2; color: #991b1b; border-color: #ef4444; }

/* Badge */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.badge-pub    { background: #dcfce7; color: #15803d; }
.badge-draft  { background: #fef9c3; color: #a16207; }
.badge-unread { background: #fef3c7; color: #92400e; }
.badge-read   { background: #f3f4f6; color: #6b7280; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--maroon-dark);
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    padding: 6px 0;
    border-bottom: 2px solid var(--gold);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--maroon);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
}
/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 52px;
    height: 52px;
    background: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}
.logo-text { line-height: 1; }
.logo-name {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--maroon-dark);
    letter-spacing: 0.01em;
}
.logo-sub {
    display: block;
    font-size: 10.5px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}
/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}
.nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 8px 13px;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 13px; right: 13px;
    height: 2px;
    background: var(--maroon);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--maroon); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
    margin-left: 8px;
    background: var(--maroon);
    color: var(--white) !important;
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
}
.nav-cta:hover { background: var(--maroon-dark); color: var(--white) !important; transform: translateY(-1px); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--maroon);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 8px 0 16px;
    box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--maroon); background: var(--cream); }
.mobile-nav-cta {
    margin: 12px 20px 0;
    background: var(--maroon);
    color: var(--white) !important;
    border-radius: var(--radius);
    text-align: center;
    padding: 12px;
    font-weight: 700;
    border-bottom: none !important;
}
.mobile-nav-cta:hover { background: var(--maroon-dark); color: var(--white) !important; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--maroon-dark);
    background-image: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    padding: 56px 0 48px;
    border-bottom: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '⚖';
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 180px;
    opacity: 0.04;
    color: var(--gold);
    line-height: 1;
}
.page-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 60%, #c0363a 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--gold);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,0.2);
    border: 1px solid rgba(184,134,11,0.5);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}
.hero-advocate {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-advocate::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--gold);
}
.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
    display: flex;
    gap: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {
    padding: 0 28px 0 0;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold);
}
.hero-card-head {
    background: var(--cream);
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hero-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 3px solid var(--gold);
}
.hero-adv-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 3px;
}
.hero-adv-desg {
    font-size: 11.5px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-card-body { padding: 20px 24px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13.5px;
    color: var(--text-mid);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon { flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.contact-item a { color: var(--text-mid); }
.contact-item a:hover { color: var(--maroon); }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
    background: var(--maroon);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    padding: 0 24px;
    flex-shrink: 0;
}
.marquee-sep { color: var(--gold-light); align-self: center; flex-shrink: 0; font-size: 10px; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}
.adv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--maroon);
}
.adv-card-head {
    background: var(--cream);
    padding: 30px 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.adv-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
    overflow: hidden;
}
.adv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.adv-name { font-size: 1.05rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 4px; }
.adv-desg { font-size: 11.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.adv-cred { font-size: 12.5px; color: var(--gold); font-style: italic; }
.adv-card-body { padding: 20px 24px; }
.adv-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13.5px;
    color: var(--text-mid);
}
.adv-contact-row:last-of-type { border-bottom: none; }
.adv-contact-icon { flex-shrink: 0; color: var(--maroon); }
.adv-contact-row a { color: var(--text-mid); }
.adv-contact-row a:hover { color: var(--maroon); }
.adv-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    margin-top: 18px;
    transition: var(--transition);
}
.adv-cta:hover { background: #1db954; color: var(--white); transform: translateY(-1px); }

/* About Content */
.about-heading { font-size: 1.5rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 18px; }
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}
.content-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 14px;
}
.content-card p:last-child { margin-bottom: 0; }
.content-card strong { color: var(--maroon-dark); }
.quote-box {
    background: var(--cream);
    border-left: 4px solid var(--maroon);
    padding: 18px 22px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 22px 0;
    font-size: 14.5px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
}
.quote-box cite {
    display: block;
    font-style: normal;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--maroon);
    margin-top: 10px;
    letter-spacing: 0.04em;
}
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.vm-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border-top: 3px solid var(--maroon);
}
.vm-icon { font-size: 1.6rem; margin-bottom: 10px; }
.vm-title { font-size: 14px; font-weight: 700; color: var(--maroon-dark); margin-bottom: 8px; }
.vm-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--maroon-dark);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    border-top: 3px solid var(--gold);
}
.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-top-color: var(--maroon);
}
.service-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.service-title { font-size: 15px; font-weight: 700; color: var(--maroon-dark); margin-bottom: 14px; }
.service-list { list-style: none; }
.service-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section { background: var(--maroon-dark); padding: 72px 0; }
.why-section .section-title,
.why-section .tag { color: var(--gold-light); }
.why-section .tag { border-bottom-color: rgba(212,160,23,0.3); }
.why-section .section-sub { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--gold);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-title { font-size: 14.5px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.why-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img-wrap {
    height: 186px;
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
}
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}
.blog-card-body { padding: 20px; }
.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.blog-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-mid);
    font-weight: 600;
}
.blog-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-title a { color: var(--maroon-dark); }
.blog-title a:hover { color: var(--maroon); }
.blog-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; }
.blog-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--maroon);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.blog-read-more:hover { color: var(--gold); gap: 8px; }

/* Blog List (blog.php) */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-list-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--maroon);
}
.blog-list-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.blog-list-img {
    height: 140px;
    overflow: hidden;
    background: var(--cream-dark);
}
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-list-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    height: 100%;
    color: var(--border);
}
.blog-list-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }

/* Blog Post */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.post-article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.post-featured-img { width: 100%; max-height: 380px; object-fit: cover; }
.post-inner { padding: 36px; }
.post-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    color: var(--text-mid);
    font-weight: 600;
    margin-bottom: 16px;
}
.post-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--text-light); margin-bottom: 18px; flex-wrap: wrap; }
.post-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--maroon-dark); margin-bottom: 24px; line-height: 1.3; }
.post-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}
.post-body h2, .post-body h3 { color: var(--maroon-dark); margin: 24px 0 12px; font-size: 1.1rem; }
.post-body p { margin-bottom: 16px; }
.post-body strong { color: var(--maroon-dark); }
.post-body a { color: var(--maroon); }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 16px; }
.post-body li { margin-bottom: 8px; }
.post-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* Sidebar */
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}
.sidebar-head {
    background: var(--maroon);
    color: var(--white);
    padding: 12px 20px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.sidebar-body { padding: 20px; }
.sidebar-post-item { padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-title { font-size: 13px; font-weight: 600; color: var(--maroon-dark); text-decoration: none; display: block; margin-bottom: 3px; line-height: 1.4; }
.sidebar-post-title:hover { color: var(--maroon); }
.sidebar-post-date { font-size: 11.5px; color: var(--text-light); }

/* Sidebar (blog.php) */
.blog-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.page-link:hover, .page-link.current { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background: var(--cream);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--maroon-dark); margin-bottom: 10px; }
.cta-band p { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--maroon);
}
.form-card-title { font-size: 1.3rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 6px; }
.form-card-sub { font-size: 13.5px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--maroon);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123,28,46,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-submit {
    width: 100%;
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.form-submit:hover { background: var(--maroon-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.wa-quick-links { display: flex; flex-direction: column; gap: 8px; }
.wa-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 13px;
    color: #166534;
    font-weight: 600;
    transition: var(--transition);
}
.wa-quick-link:hover { background: #dcfce7; color: #14532d; transform: translateX(3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--maroon-dark); color: rgba(255,255,255,0.8); }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--maroon-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.footer-logo-name { display: block; font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-logo-sub  { display: block; font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.footer-desc { font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; color: rgba(255,255,255,0.65); }
.footer-motto {
    font-size: 13px;
    font-style: italic;
    color: var(--gold-light);
    padding: 12px 16px;
    border-left: 3px solid var(--gold);
    background: rgba(184,134,11,0.08);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 15px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 3px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.footer-contact-icon { flex-shrink: 0; margin-top: 1px; }
.footer-contact-row a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-row a:hover { color: var(--gold-light); }
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    transition: var(--transition);
}
.footer-wa-btn:hover { background: #1db954; color: var(--white); transform: translateY(-1px); }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 8000;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    padding: 13px 20px 13px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: fabPulse 2.5s ease-in-out infinite;
}
@keyframes fabPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
.wa-fab:hover { transform: translateY(-2px); background: #1db954; color: var(--white); animation: none; box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-fab-icon { display: flex; align-items: center; flex-shrink: 0; }

/* ============================================================
   ADMIN PORTAL DESIGN SYSTEM
   ============================================================ */
.admin-body {
    background: #f4f6f9;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    font-size: 14px;
    color: #1f2937;
}

.admin-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 240px;
    background: linear-gradient(180deg, #58111e 0%, #3e0b14 100%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    border-right: 1px solid rgba(212,160,23,0.2);
}

.admin-logo-area {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-logo-icon {
    font-size: 1.8rem;
    width: 44px; height: 44px;
    background: rgba(212,160,23,0.15);
    border: 1px solid var(--gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.admin-logo-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; line-height: 1.2; }
.admin-logo-sub  { font-size: 10px; color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    margin: 3px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}
.admin-nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateX(3px);
}
.admin-nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(212,160,23,0.3) 0%, rgba(212,160,23,0.1) 100%);
    border-left: 3px solid var(--gold);
    font-weight: 700;
}
.admin-nav-icon { font-size: 1.1rem; flex-shrink: 0; }
.admin-nav-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 12px 16px; }

.admin-main { margin-left: 240px; padding: 32px; min-height: 100vh; }
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.admin-page-title { font-size: 1.5rem; font-weight: 700; color: var(--maroon-dark); margin: 0; }

/* Stat Cards */
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.admin-stat-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.admin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(123,28,46,0.08);
    border-color: rgba(212,160,23,0.4);
}
.admin-stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.admin-stat-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.admin-stat-label {
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.admin-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--maroon-dark);
    line-height: 1;
    margin-bottom: 6px;
}
.admin-stat-sub {
    font-size: 12px;
    color: var(--text-mid);
}

/* Admin Cards & Tables */
.admin-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.admin-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.admin-table th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    background: #f8fafc;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.admin-table th:first-child { border-top-left-radius: 8px; }
.admin-table th:last-child  { border-top-right-radius: 8px; }
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px;
    color: #334155;
    vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }

/* Admin Buttons & Badges */
.btn-gold {
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 6px rgba(184, 134, 11, 0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #e5b128 0%, #c9971c 100%);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.35);
}
.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
}
.btn-danger:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}
.btn-sm {
    padding: 7px 14px;
    font-size: 12.5px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: capitalize;
}
.badge-pub   { background: #e6f4ea; color: #137333; border: 1px solid #ceead6; }
.badge-draft { background: #fef7e0; color: #b06000; border: 1px solid #fde293; }
.badge-unread{ background: #fce8e6; color: #c5221f; border: 1px solid #fad2cf; }
.badge-read  { background: #f1f3f4; color: #5f6368; border: 1px solid #e0e0e0; }

/* Admin Login Card */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #f4f6f9; }
.admin-login-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    width: 100%;
    max-width: 420px;
    border-top: 4px solid var(--maroon);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-layout      { grid-template-columns: 1fr; }
    .hero-card        { display: none; }
    .about-grid       { grid-template-columns: 1fr; }
    .adv-card         { position: static; }
    .services-grid    { grid-template-columns: repeat(2, 1fr); }
    .why-grid         { grid-template-columns: repeat(2, 1fr); }
    .blog-grid        { grid-template-columns: repeat(2, 1fr); }
    .contact-layout   { grid-template-columns: 1fr; }
    .footer-top       { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
    .blog-layout      { grid-template-columns: 1fr; }
    .blog-sidebar     { position: static; }
    .post-layout      { grid-template-columns: 1fr; }
    .post-sidebar     { position: static; }
    .admin-stat-grid  { grid-template-columns: repeat(2, 1fr); }
    .vm-grid          { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar-right { display: none; }
    .header-nav    { display: none; }
    .mobile-toggle { display: flex; }
    .hero-stats    { flex-wrap: wrap; gap: 16px; }
    .hero-stat     { border-right: none; padding-right: 0; margin-right: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid      { grid-template-columns: 1fr 1fr; }
    .blog-grid     { grid-template-columns: 1fr; }
    .footer-top    { grid-template-columns: 1fr; gap: 28px; }
    .form-row      { grid-template-columns: 1fr; }
    .blog-list-card { grid-template-columns: 1fr; }
    .blog-list-img  { height: 160px; }
    .wa-fab-label  { display: none; }
    .wa-fab        { padding: 13px; border-radius: 50%; }
    .admin-sidebar { width: 200px; }
    .admin-main    { margin-left: 200px; padding: 18px; }
}
@media (max-width: 480px) {
    .why-grid     { grid-template-columns: 1fr; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-main   { margin-left: 0; }
}
