/* ===================================================
   TITAN PARTNERS INTERNATIONAL — Frontend Stylesheet
   Colors: Black #000000 | Gold #D4AF37 | Ivory #F5F5F0
   =================================================== */

:root {
    --primary:    #000000;
    --primary-dk: #0a0a0a;
    --gold:       #D4AF37;
    --gold-lt:    #e8c84a;
    --white:      #ffffff;
    --light:      #F5F5F0;
    --light2:     #EAEAE5;
    --text:       #1a1a1a;
    --text-muted: #6b7399;
    --border:     #dde3f0;
    --radius:     10px;
    --radius-lg:  18px;
    --shadow:     0 4px 24px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
    --transition: all .3s ease;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Mobile menu — hidden by default, shown via JS class */
.mobile-menu { display: none; }
.mobile-menu.menu-open { display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

/* ── Buttons ─────────────────────────────────────── */
.btn-primary-pz {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: .65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: var(--transition);
}
.btn-primary-pz:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,.35);
}
.btn-outline-pz {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.7);
    padding: .65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: var(--transition);
}
.btn-outline-pz:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-navy-pz {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: .65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: var(--transition);
}
.btn-navy-pz:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── Section helpers ─────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--light); }
.section-dark { background: var(--primary); color: var(--white); }
.section-gold { background: var(--gold); color: var(--white); }

.section-tag {
    display: inline-block;
    background: rgba(212,175,55,.12);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-tag--white {
    background: rgba(255,255,255,.15);
    color: var(--white);
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: .75rem;
}
.section-title--white { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}
.section-subtitle--white { color: rgba(255,255,255,.8); }
.divider-gold {
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: .75rem 0 1.5rem;
}

/* ── HEADER ──────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}
#site-header.transparent {
    background: transparent;
}
#site-header.scrolled,
#site-header.solid {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.10);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
}

/* Logo — PZ bordered style */
.site-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}
.site-logo img { height: 46px; }
.site-logo .logo-text {
    line-height: 1.15;
}
.site-logo .logo-wordmark {
    display: flex;
    align-items: center;
    gap: 0;
}
.site-logo .logo-paramount {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary);
    border: 2.5px solid var(--primary);
    padding: .15rem .45rem;
    letter-spacing: .5px;
    line-height: 1.2;
}
.site-logo .logo-zone {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    padding: .15rem .35rem;
    letter-spacing: .5px;
    line-height: 1.2;
}
.site-logo .logo-tagline {
    font-size: .58rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: .1rem;
}
/* Transparent header logo overrides */
#site-header.transparent .logo-paramount { color: var(--white); border-color: var(--white); }
#site-header.transparent .logo-zone { color: var(--gold-lt); }
#site-header.transparent .logo-tagline { color: rgba(255,255,255,.6); }

/* Nav */
.main-nav { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0; }
.main-nav > li > a {
    color: var(--primary);
    font-size: .875rem;
    font-weight: 600;
    padding: .5rem .9rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: .2rem;
    transition: color .2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--gold); }
/* Transparent nav text */
#site-header.transparent .main-nav > li > a { color: rgba(255,255,255,.9); }
#site-header.transparent .main-nav > li > a:hover { color: var(--gold-lt); }

/* Dropdown */
.main-nav .dropdown-menu {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .4rem;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.main-nav .dropdown-menu a {
    color: var(--primary);
    font-size: .85rem;
    font-weight: 500;
    padding: .55rem .9rem;
    border-radius: 6px;
}
.main-nav .dropdown-menu a:hover { background: rgba(212,175,55,.1); color: var(--gold); }

.header-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.header-phone {
    color: var(--primary);
    font-size: .84rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.header-phone i { color: var(--gold); font-size: 1rem; }
.header-phone:hover { color: var(--gold); }
#site-header.transparent .header-phone { color: rgba(255,255,255,.9); }

.btn-cost-calc {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--gold);
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .45rem 1.1rem;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.btn-cost-calc:hover { background: var(--gold-lt); color: var(--white); text-decoration: none; }
#site-header.transparent .btn-cost-calc { background: var(--gold); color: var(--white); }

/* Mobile toggle */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────── */
#hero {
    background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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.03'%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");
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212,175,55,.18);
    border: 1px solid rgba(212,175,55,.3);
    color: var(--gold-lt);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.75);
    font-size: .82rem;
}
.hero-trust-item i { color: var(--gold); }

/* Hero form */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .25rem;
}
.hero-form-card p {
    font-size: .83rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.hero-form-card .form-control,
.hero-form-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .65rem 1rem;
    font-size: .9rem;
    color: var(--text);
    transition: var(--transition);
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.hero-form-card .btn-submit {
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 100%;
    padding: .8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.hero-form-card .btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── STATS ───────────────────────────────────────── */
#stats {
    background: var(--gold);
    padding: 50px 0;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-number {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    margin-top: .3rem;
    display: block;
}
.stat-icon {
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    display: block;
    margin-bottom: .5rem;
}

/* ── SERVICES ────────────────────────────────────── */
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
}
.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.7rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}
.service-card p {
    font-size: .86rem;
    color: var(--text-muted);
    margin: 0;
}
.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .84rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 1rem;
}
.service-card:hover .card-link { gap: .6rem; }

/* ── FREE ZONES ──────────────────────────────────── */
.fz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.fz-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.fz-card-header {
    background: var(--primary);
    padding: 1.5rem;
    text-align: center;
}
.fz-card-header img { height: 50px; object-fit: contain; filter: brightness(0) invert(1); }
.fz-card-header .fz-initials {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto;
    letter-spacing: 1px;
}
.fz-card-body { padding: 1.5rem; }
.fz-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .25rem;
}
.fz-card-body .fz-location {
    font-size: .8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-bottom: .75rem;
}
.fz-benefits { list-style: none; padding: 0; margin: 0 0 1rem; }
.fz-benefits li {
    font-size: .82rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    margin-bottom: .3rem;
}
.fz-benefits li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.fz-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fz-cost { font-size: .8rem; color: var(--text-muted); }
.fz-cost strong { font-size: 1rem; color: var(--primary); font-weight: 700; }

/* ── PROCESS ─────────────────────────────────────── */
.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .4rem;
}
.process-step p { font-size: .86rem; color: var(--text-muted); margin: 0; }
.process-connector {
    position: absolute;
    top: 2.3rem;
    right: -30%;
    width: 60%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
}

/* ── WHY CHOOSE US ───────────────────────────────── */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}
.why-item h5 { font-size: .98rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.why-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.testimonial-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .85rem;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light2);
}
.author-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--primary); }
.author-company { font-size: .78rem; color: var(--text-muted); }
.testimonial-source {
    margin-left: auto;
    font-size: .75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* ── BLOG ────────────────────────────────────────── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--light2);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.4rem; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}
.blog-meta .category-badge {
    background: rgba(212,175,55,.1);
    color: var(--gold);
    padding: .2rem .65rem;
    border-radius: 50px;
    font-weight: 600;
}
.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: .6rem;
}
.blog-card h3:hover { color: var(--gold); }
.blog-card p { font-size: .84rem; color: var(--text-muted); margin-bottom: 1rem; }
.read-more {
    font-size: .84rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .35rem;
}
.read-more:hover { gap: .6rem; color: var(--gold); }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 70%);
}
.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem;
}
.cta-section p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── FOOTER ──────────────────────────────────────── */
#site-footer {
    background: var(--primary-dk);
    color: rgba(255,255,255,.75);
    padding: 70px 0 0;
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo .logo-text { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.footer-logo .logo-text span { color: var(--gold); }
.footer-about { font-size: .88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    font-size: .87rem;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .9rem;
}
.footer-contact-item i {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: .1rem;
    flex-shrink: 0;
}
.footer-contact-item span { font-size: .87rem; color: rgba(255,255,255,.7); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 0;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WhatsApp Float ──────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #20ba58; color: var(--white); }

/* ── Pagination ──────────────────────────────────── */
.pagination { gap: .25rem; flex-wrap: wrap; }
.pagination .page-item .page-link {
    border: 1.5px solid var(--border);
    color: var(--primary);
    border-radius: 6px !important;
    padding: .45rem .85rem;
    font-size: .875rem;
    font-weight: 500;
    transition: var(--transition);
    line-height: 1.5;
}
.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.pagination .page-item .page-link:hover {
    background: var(--light);
    border-color: var(--gold);
    color: var(--gold);
}
.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background: var(--light);
    border-color: var(--border);
}

/* ── Flash toast ─────────────────────────────────── */
.flash-toast {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    padding: .9rem 1.5rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: all .4s ease;
}
.flash-toast--success { background: #22c55e; color: #fff; }
.flash-toast--error { background: #ef4444; color: #fff; }
.flash-toast--hide { opacity: 0; transform: translateX(120%); pointer-events: none; }

/* ── Breadcrumb ──────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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.025'%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");
}
.page-hero h1 { color: var(--white); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.75); margin: 0; }
.breadcrumb-pz { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.breadcrumb-pz a { color: var(--gold-lt); font-size: .85rem; }
.breadcrumb-pz span { color: rgba(255,255,255,.4); font-size: .85rem; }
.breadcrumb-pz .current { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ── Inner page ──────────────────────────────────── */
.content-prose { font-size: .96rem; line-height: 1.85; color: var(--text); }
.content-prose h2 { color: var(--primary); font-weight: 700; margin: 2rem 0 1rem; }
.content-prose h3 { color: var(--primary); font-weight: 600; margin: 1.5rem 0 .75rem; }
.content-prose ul li { margin-bottom: .4rem; }
.content-prose img { border-radius: var(--radius); }

/* ── Sidebar card ────────────────────────────────── */
.sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.sidebar-card-header {
    background: var(--primary);
    padding: 1.25rem 1.5rem;
}
.sidebar-card-header h4 { color: var(--white); font-weight: 700; margin: 0; font-size: 1rem; }
.sidebar-card-body { padding: 1.5rem; }
.sidebar-inquiry .form-control,
.sidebar-inquiry .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .88rem;
}
.sidebar-inquiry .form-control:focus,
.sidebar-inquiry .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

/* ── Blog single ─────────────────────────────────── */
.post-header { padding: 120px 0 50px; background: linear-gradient(135deg, var(--primary-dk), var(--primary)); }
.post-header h1 { color: var(--white); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.post-meta-bar { color: rgba(255,255,255,.65); font-size: .85rem; display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: .75rem; }
.post-meta-bar i { color: var(--gold); }
.post-content { font-size: .97rem; line-height: 1.9; color: var(--text); }
.post-content h2 { color: var(--primary); font-weight: 700; margin: 2rem 0 1rem; font-size: 1.5rem; }
.post-content h3 { color: var(--primary); font-weight: 600; margin: 1.5rem 0 .75rem; }
.post-content img { border-radius: var(--radius); width: 100%; }
.post-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    background: var(--light);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-style: italic;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .process-connector { display: none; }
    .header-cta .btn-primary-pz { display: none; }
}
@media (max-width: 767px) {
    .section { padding: 56px 0; }
    #hero { padding-top: 80px; padding-bottom: 40px; min-height: unset; }
    .hero-actions { flex-direction: column; }
}
