/* ============================================================
   ZINARA – Zimbabwe National Road Administration
   Main Stylesheet
   ============================================================ */

/* ========================
   CSS VARIABLES / TOKENS
======================== */
:root {
    --gold:          #EBB913;
    --gold-dark:     #c99a0d;
    --gold-light:    #f5d35a;
    --dark:          #2C2D3F;
    --dark-light:    #3d3f57;
    --text:          #060623;
    --text-muted:    #6b7280;
    --white:         #ffffff;
    --off-white:     #f8f9fb;
    --light-bg:      #f3f4f8;
    --border:        #e5e7eb;
    --success:       #16a34a;
    --danger:        #dc2626;
    --warning:       #d97706;

    --font-primary:  'Montserrat', sans-serif;
    --font-secondary:'Poppins', sans-serif;

    --radius-sm:     6px;
    --radius:        12px;
    --radius-lg:     18px;
    --radius-xl:     28px;

    --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
    --shadow:        0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:     0 8px 32px rgba(0,0,0,0.14);
    --shadow-xl:     0 16px 48px rgba(0,0,0,0.18);

    --transition:    all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ========================
   RESET & BASE
======================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 0.95rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* ========================
   TOP BAR
======================== */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-family: var(--font-primary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.topbar-link:hover { color: var(--gold); }
.topbar-link i { color: var(--gold); }

.topbar-social {
    color: rgba(255,255,255,0.70);
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition-fast);
}
.topbar-social:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ========================
   NAVBAR
======================== */
.zinara-navbar {
    background: var(--dark) !important;
    padding: 10px 0;
    transition: all 0.4s ease;
    box-shadow: none;
    z-index: 1050;
}

.zinara-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    background: rgba(44,45,63,0.97) !important;
    backdrop-filter: blur(12px);
}

/* Brand */
.brand-logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.brand-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brand-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
}
.brand-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-secondary);
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Nav Links */
.zinara-navbar .nav-link {
    font-family: var(--font-primary);
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85) !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    position: relative;
}
.zinara-navbar .nav-link:hover,
.zinara-navbar .nav-link.active {
    color: var(--gold) !important;
    background: rgba(235,185,19,0.08);
}
.zinara-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Dropdown */
.dropdown-menu-zinara {
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 8px;
    min-width: 220px;
}
.dropdown-menu-zinara .dropdown-item {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}
.dropdown-menu-zinara .dropdown-item i {
    color: var(--gold);
    font-size: 0.9rem;
}
.dropdown-menu-zinara .dropdown-item:hover,
.dropdown-menu-zinara .dropdown-item:focus {
    background: var(--light-bg);
    color: var(--dark);
}
.dropdown-menu-zinara .dropdown-divider {
    margin: 4px 8px;
    border-color: var(--border);
}

/* WhatsApp button */
.btn-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    transition: var(--transition-fast);
}
.btn-whatsapp:hover {
    background: #1dbc59;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* Mobile toggler */
.navbar-toggler {
    color: var(--gold) !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28235, 185, 19, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 580px;
    max-height: 800px;
    position: relative;
}
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,45,63,0.85) 0%,
        rgba(44,45,63,0.55) 50%,
        rgba(44,45,63,0.35) 100%
    );
}

.hero-default {
    position: relative;
    height: 100vh;
    min-height: 580px;
    max-height: 800px;
    display: flex;
    align-items: center;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(235,185,19,0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.carousel-control-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(235,185,19,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}
.carousel-control-custom:hover { background: var(--gold); transform: scale(1.1); }

.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.5) !important;
    border: none !important;
    margin: 0 4px !important;
    transition: var(--transition-fast) !important;
}
.carousel-indicators button.active {
    background: var(--gold) !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ========================
   STATS SECTION
======================== */
.stats-bar {
    background: var(--gold);
    padding: 0;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.stat-item-border {
    border-right: 1px solid rgba(44,45,63,0.15);
}
.stat-item:hover { background: rgba(0,0,0,0.04); }

.stat-icon {
    font-size: 1.8rem;
    color: var(--dark);
    opacity: 0.6;
    margin-bottom: 8px;
}
.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.stat-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ========================
   SECTION SHARED
======================== */
.section-padding {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .section-padding { padding: 55px 0; }
}

.section-badge {
    display: inline-block;
    background: rgba(235,185,19,0.12);
    color: var(--gold-dark);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    border: 1px solid rgba(235,185,19,0.3);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 24px auto 0;
    font-weight: 400;
    line-height: 1.75;
}

.bg-light-custom { background: var(--light-bg); }
.bg-dark-custom { background: var(--dark); }

.lead-text {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}
.body-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ========================
   BUTTONS
======================== */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.87rem;
    border: 2px solid var(--gold);
    padding: 10px 28px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235,185,19,0.35);
}

.btn-dark-custom {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.87rem;
    border: 2px solid var(--dark);
    padding: 10px 28px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.btn-dark-custom:hover {
    background: var(--dark-light);
    border-color: var(--dark-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,45,63,0.3);
}

/* ========================
   SERVICE CARDS
======================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }

.service-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(235,185,19,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}
.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--dark);
}

.service-card-title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}
.service-card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-card-link {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-card-link:hover { color: var(--dark); }

/* ========================
   ABOUT PREVIEW
======================== */
.about-preview-section { background: var(--off-white); }

.about-preview-visual {
    position: relative;
}
.about-visual-main {
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual-placeholder {
    text-align: center;
    padding: 40px;
}
.about-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
}
.about-badge {
    background: var(--gold);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-badge-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    transition: var(--transition-fast);
}
.value-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* About info grid */
.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-info-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition-fast);
}
.about-info-item:hover { box-shadow: var(--shadow); }
.about-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(235,185,19,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.about-info-item h6 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.about-info-item p {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* ========================
   NEWS CARDS
======================== */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-bg);
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    font-size: 3rem;
    color: rgba(235,185,19,0.4);
}

.news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.news-card-title {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card:hover .news-card-title { color: var(--gold-dark); }
.news-card-excerpt {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}
.news-card-link {
    font-family: var(--font-primary);
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}
.news-card-link:hover { color: var(--dark); }

/* ========================
   CTA SECTION
======================== */
.cta-section {
    background: var(--gold);
    padding: 70px 0;
}
.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(44,45,63,0.8);
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================
   PAGE HEADER
======================== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1b2e 100%);
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235,185,19,0.08) 0%, transparent 70%);
}
.page-header-overlay {
    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.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");
}
.page-header-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}
.page-breadcrumb {
    position: relative;
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(235,185,19,0.6);
}
.page-breadcrumb .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}
.page-breadcrumb .breadcrumb-item a:hover { color: var(--white); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.7); }

/* ========================
   VISION MISSION VALUES
======================== */
.vmv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}
.vmv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.vmv-vision { border-bottom-color: var(--gold); }
.vmv-mission { border-bottom-color: var(--dark); }
.vmv-values { border-bottom-color: var(--gold); }

.vmv-icon {
    width: 70px;
    height: 70px;
    background: rgba(235,185,19,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto 20px;
}
.vmv-heading {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--dark);
}
.vmv-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}
.vmv-values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}
.vmv-values-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}
.vmv-values-list li:last-child { border-bottom: none; }
.vmv-values-list li i { color: var(--gold); }

/* ========================
   TIMELINE
======================== */
.timeline { position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}
.timeline-year {
    width: 80px;
    flex-shrink: 0;
    text-align: right;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold-dark);
    padding-top: 4px;
}
.timeline-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    flex: 1;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.timeline-content:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.timeline-content::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}
.timeline-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ========================
   CTA LINK CARDS (About page)
======================== */
.cta-link-card {
    display: block;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    color: white;
}
.cta-link-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}
.cta-link-card h5 { color: white; font-size: 1rem; }
.cta-link-card:hover h5 { color: var(--gold); }

/* ========================
   PERSON CARDS (Board/Executives)
======================== */
.person-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    padding-bottom: 24px;
}
.person-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--gold);
}
.person-card-image {
    padding: 24px 24px 0;
    display: flex;
    justify-content: center;
}
.person-card-image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 3px solid var(--gold);
}
.person-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(235,185,19,0.4);
    border: 3px solid var(--gold);
}
.person-card-body { padding: 16px 20px; text-align: center; }
.person-name {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.person-position {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.person-bio {
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ========================
   MANDATE ITEMS
======================== */
.mandate-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}
.mandate-item:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.mandate-icon {
    width: 44px;
    height: 44px;
    background: rgba(235,185,19,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.mandate-item h6 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }

/* ========================
   DOCUMENT CARDS
======================== */
.document-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.document-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold);
}
.document-icon {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 24px;
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
}
.document-body { padding: 20px; flex: 1; }
.document-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    background: rgba(235,185,19,0.1);
    padding: 3px 10px;
    border-radius: 50px;
}
.document-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 10px 0 6px;
    color: var(--dark);
}
.document-year { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 4px; }
.document-date { font-size: 0.78rem; margin: 0; }
.document-footer { padding: 16px 20px; border-top: 1px solid var(--border); }

/* ========================
   FILTER TABS
======================== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-tab {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    background: var(--white);
    transition: var(--transition-fast);
    cursor: pointer;
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ========================
   SERVICE DETAIL CARDS
======================== */
.service-detail-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}
.sdc-header {
    padding: 30px 28px;
    position: relative;
}
.sdc-licensing { background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%); }
.sdc-tolling { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%); }
.sdc-bridge { background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%); }
.sdc-toaf { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 100%); }
.sdc-crossborder { background: linear-gradient(135deg, #312e81 0%, #4c1d95 100%); }
.sdc-disbursements { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); }

.sdc-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.sdc-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}
.sdc-body { padding: 24px 28px; }
.sdc-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.sdc-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.sdc-features li {
    font-size: 0.85rem;
    padding: 5px 0;
    color: var(--text);
    display: flex;
    align-items: center;
}

/* ========================
   TABLES
======================== */
.zinara-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 0.88rem;
}
.zinara-table thead th {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    border: none;
}
.zinara-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}
.zinara-table tbody tr:hover { background: rgba(235,185,19,0.04); }
.zinara-table tbody td {
    padding: 13px 18px;
    border: none;
    color: var(--text);
    vertical-align: middle;
}
.zinara-table tbody tr:last-child { border-bottom: none; }

/* ========================
   PROCESS STEPS
======================== */
.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    transition: var(--transition);
    position: relative;
}
.process-step:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); transform: translateY(-4px); }
.process-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 900;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.process-step-title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

/* ========================
   INFO CARDS
======================== */
.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-3px); }
.info-card-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }

/* Sidebar */
.info-sidebar {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.info-sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }

/* Toll Location Card */
.toll-location-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}
.toll-location-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.toll-location-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ========================
   T.O.A.F SECTION
======================== */
.toaf-process-box {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
}
.toaf-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.toaf-step:last-child { margin-bottom: 0; }
.toaf-step-num {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
}
.toaf-step h6 { color: white; font-size: 0.92rem; margin-bottom: 4px; }
.toaf-step .small { color: rgba(255,255,255,0.65); }

/* ========================
   NOTICE CARDS
======================== */
.notice-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.notice-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.notice-card-header {
    padding: 24px 28px 0;
}
.notice-tag {
    background: rgba(235,185,19,0.12);
    color: var(--gold-dark);
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.notice-title { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.notice-card-body { padding: 16px 28px 24px; }
.notice-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }

/* ========================
   TENDER STYLES
======================== */
.zinara-tabs { border-bottom: 2px solid var(--border); }
.zinara-tabs .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 12px 20px;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.zinara-tabs .nav-link:hover { color: var(--dark); }
.zinara-tabs .nav-link.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
    background: none;
}

.tender-badge-open { background: #dcfce7; color: #16a34a; font-size: 0.75rem; padding: 4px 12px; border-radius: 50px; }
.tender-badge-closed { background: #fee2e2; color: #dc2626; font-size: 0.75rem; padding: 4px 12px; border-radius: 50px; }
.tender-badge-awarded { background: #e0f2fe; color: #0284c7; font-size: 0.75rem; padding: 4px 12px; border-radius: 50px; }

.tender-notice {
    background: rgba(235,185,19,0.08);
    border: 1px solid rgba(235,185,19,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.tender-notice a { color: var(--gold-dark); }

.tender-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.tender-detail-header {
    background: var(--dark);
    padding: 30px;
}
.tender-detail-header h3 { color: var(--white); margin: 0; }
.tender-ref-badge {
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}
.tender-detail-body { padding: 30px; }
.tender-meta-item { margin-bottom: 4px; }
.tender-meta-label { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; margin-bottom: 3px; }
.tender-meta-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.tender-description { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ========================
   ARTICLE DETAIL
======================== */
.article-detail { }
.article-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.article-featured-image { border-radius: var(--radius-lg); overflow: hidden; }
.article-featured-image img { width: 100%; height: 400px; object-fit: cover; }
.article-content {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text);
}
.article-content p { margin-bottom: 18px; }
.article-content h2, .article-content h3 { color: var(--dark); margin-top: 30px; margin-bottom: 14px; }

/* Sidebar widgets */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-widget-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}
.sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-img {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.sidebar-news-img-placeholder {
    width: 60px;
    height: 50px;
    background: var(--dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.2rem;
}
.sidebar-news-title {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
    line-height: 1.4;
    margin-bottom: 4px;
}
.sidebar-news-title:hover { color: var(--gold-dark); }
.sidebar-news-date { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
.sidebar-contact { background: var(--light-bg); }

/* ========================
   CONTACT PAGE
======================== */
.quick-contact-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius);
    color: var(--text);
    transition: var(--transition-fast);
}
.quick-contact-item:hover { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.quick-contact-item i { font-size: 1.5rem; }

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-card .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.contact-form-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(235,185,19,0.1);
    outline: none;
}

.office-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: var(--transition);
    position: relative;
}
.office-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.office-head { border-left: 4px solid var(--gold); }
.office-card-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}
.office-name { font-family: var(--font-primary); font-size: 0.97rem; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.office-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.office-details-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.87rem;
}
.office-details-list li i { font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.office-details-list a { color: var(--text); }
.office-details-list a:hover { color: var(--gold-dark); }

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition-fast);
}
.contact-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-placeholder {
    background: var(--light-bg);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
}

/* ========================
   CTA INFO BOX
======================== */
.cta-info-box {
    background: rgba(235,185,19,0.08);
    border: 1px solid rgba(235,185,19,0.3);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

/* ========================
   PAGINATION
======================== */
.zinara-pagination .page-link {
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 9px 16px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}
.zinara-pagination .page-link:hover {
    background: var(--light-bg);
    border-color: var(--gold);
    color: var(--gold-dark);
}
.zinara-pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* ========================
   FOOTER
======================== */
.zinara-footer { background: #1a1b2e; }

.footer-top { padding: 70px 0 50px; }

.footer-brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
}
.footer-brand-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}
.footer-about-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}
.footer-links a i { color: var(--gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-icon {
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-list a {
    color: rgba(255,255,255,0.65);
    display: block;
    transition: var(--transition-fast);
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: var(--transition-fast);
}
.footer-bottom-link:hover { color: var(--gold); }

/* ========================
   BACK TO TOP
======================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(235,185,19,0.4);
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--dark);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44,45,63,0.3);
}

/* ========================
   EMPTY STATE
======================== */
.empty-state { padding: 60px 20px; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 991px) {
    .hero-slide-bg { height: 70vh; }
    .about-info-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 0; display: none; }
    .timeline-year { width: auto; text-align: left; }
    .timeline-content::before { display: none; }
    .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 767px) {
    .topbar { display: none !important; }
    .hero-slide-bg { height: 75vh; min-height: 500px; }
    .hero-title { font-size: 1.8rem; }
    .hero-description { font-size: 0.95rem; }
    .about-info-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 20px 10px; }
    .stat-number { font-size: 1.8rem; }
    .footer-top { padding: 50px 0 30px; }
    .cta-section { padding: 50px 0; }
    .section-padding { padding: 50px 0; }
    .timeline-item { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .brand-name { font-size: 1.2rem; }
}


/* ================================================
   ZINA CHATBOT WIDGET
================================================ */

#zinaChatWidget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font-secondary);
}

/* Toggle Button */
#zinaChatToggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    box-shadow: 0 4px 20px rgba(235,185,19,.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
#zinaChatToggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(235,185,19,.6);
}

/* Notification badge */
.zina-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Panel */
.zina-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    max-height: 520px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(.92) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}
.zina-panel-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.zina-header {
    background: var(--dark);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.zina-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.zina-header-info { flex: 1; }
.zina-name {
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
}
.zina-status {
    color: rgba(255,255,255,.65);
    font-size: .75rem;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.zina-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
    animation: zinaPulse 1.8s ease infinite;
}
@keyframes zinaPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
.zina-close-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color .15s, background .15s;
}
.zina-close-btn:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Messages */
.zina-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f7f8fa;
}
.zina-messages::-webkit-scrollbar { width: 4px; }
.zina-messages::-webkit-scrollbar-thumb { background: #d0d3da; border-radius: 4px; }

.zina-msg { display: flex; }
.zina-msg-user { justify-content: flex-end; }
.zina-msg-bot  { justify-content: flex-start; }

.zina-msg-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: .875rem;
    line-height: 1.5;
    word-break: break-word;
    white-space: pre-wrap;
}
.zina-msg-user .zina-msg-bubble {
    background: var(--dark);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.zina-msg-bot .zina-msg-bubble {
    background: #fff;
    color: var(--text-color);
    border: 1px solid #e8e9ed;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* Typing indicator */
.zina-typing {
    padding: 6px 16px 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f7f8fa;
}
.zina-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #aab;
    animation: zinaTyping .9s ease infinite;
}
.zina-typing span:nth-child(2) { animation-delay: .15s; }
.zina-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes zinaTyping {
    0%, 80%, 100% { transform: translateY(0); opacity: .5; }
    40% { transform: translateY(-6px); opacity: 1; }
}

/* Input area */
.zina-input-area {
    padding: 10px 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background: #fff;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}
.zina-input {
    flex: 1;
    resize: none;
    border: 1px solid #dde0e8;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: .875rem;
    font-family: var(--font-secondary);
    line-height: 1.45;
    color: var(--text-color);
    background: #f7f8fa;
    outline: none;
    transition: border-color .15s;
    max-height: 120px;
    overflow-y: auto;
}
.zina-input:focus { border-color: var(--gold); background: #fff; }
.zina-input:disabled { opacity: .6; }

.zina-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, transform .1s;
}
.zina-send-btn:hover { background: #d4a710; transform: scale(1.05); }
.zina-send-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.zina-footer-note {
    text-align: center;
    font-size: .7rem;
    color: #aaa;
    padding: 4px 12px 8px;
    background: #fff;
}
.zina-footer-note a { color: #aaa; text-decoration: underline; }

/* Mobile */
@media (max-width: 480px) {
    #zinaChatWidget { bottom: 80px; right: 14px; }
    .zina-panel { width: calc(100vw - 28px); right: 0; }
}
