/* GardenHub Landscaping & Gardening Theme - Matching Exact Design */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..900;1,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary: #78b825;
    --primary-hover: #65a01c;
    --primary-dark: #202020;
    --accent: #f4b41a;
    --text-main: #282828;
    --text-muted: #777777;
    --bg-light: #f7f9f6;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --radius-sm: 3px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 30px rgba(120, 184, 37, 0.18);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #111111;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   HEADER DESIGN (Matching Screenshot)
   ========================================================================== */
.header-wrapper {
    width: 100%;
    background-color: var(--white);
    position: relative;
    z-index: 1000;
}

/* 0. Super-thin Top Bar */
.super-top-bar {
    background-color: #2a2a2a;
    height: 36px;
    display: flex;
    align-items: center;
}

.super-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.super-top-tagline {
    font-size: 0.78rem;
    color: #b0b0b0;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

.super-top-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.super-top-links a {
    font-size: 0.78rem;
    color: #b0b0b0;
    font-family: var(--font-body);
    transition: color 0.2s ease;
}

.super-top-links a:hover {
    color: var(--primary);
}

/* 1. Top Header Row */
.top-header {
    padding: 1.25rem 0;
    background-color: var(--white);
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 115px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Header Brand Block (PESA🌱POT style) ─────────────────── */
.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.header-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: transparent;
    padding: 0;
}

/* Row 1: PESA 🌱 POT */
.hb-main-name {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    line-height: 1;
}

.hb-pesa,
.hb-pot {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a3a1a;
    letter-spacing: -0.5px;
    line-height: 1;
}

.hb-sacco {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
    align-self: flex-end;
    padding-bottom: 0.25rem;
    margin-left: 0.2rem;
}


/* Thin green divider under the name */
.hb-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1a3a1a 60%, transparent 100%);
    margin: 0.18rem 0 0.25rem;
}

/* Row 2: Subtitle */
.hb-subtitle {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 800;
    color: #1a3a1a;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

/* Row 3: Tagline */
.hb-tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: #444;
    font-style: italic;
    letter-spacing: 0.2px;
    margin-top: 0.1rem;
    white-space: nowrap;
}

/* Legacy classes still referenced — keep empty */
.header-brand-text,
.header-site-name,
.header-site-tagline { display: none; }


.header-info-wrap {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: #111111;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
}

.header-social-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: #333333;
    margin-left: 0.5rem;
}

.header-social-links a {
    color: #333333;
}

.header-social-links a:hover {
    color: var(--primary);
}

/* 2. Main Navigation Dark Bar */
.main-navbar-bar {
    background-color: #202020;
    height: 55px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    height: 100%;
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
}

.nav-item:first-child .nav-link {
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background-color: #171717;
    border-bottom: 3px solid var(--primary);
}

/* Phone Callout Box (Right) */
.header-phone-box {
    background-color: var(--primary);
    height: 55px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--white);
    transition: background-color 0.3s ease;
    margin-right: -1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone-box:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.phone-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
}

.phone-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION DESIGN (Matching Screenshot)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
}

.hero-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.hero-green-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.85rem;
    letter-spacing: 0.5px;
}

.hero-main-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-buttons-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.btn-hero-dark {
    background-color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.65rem 1.6rem;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.btn-hero-dark:hover {
    background-color: var(--white);
    color: #111111;
}

.btn-hero-green {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.65rem 1.6rem;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.btn-hero-green:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Dashed Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

/* ==========================================================================
   WELCOME & SERVICES GRID SECTION (Matching Screenshot)
   ========================================================================== */
.welcome-services-section {
    padding: 3rem 0 2.5rem;
    background-color: var(--white);
}

.welcome-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.welcome-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
}

.leaf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.dotted-line {
    border-bottom: 2px dotted #cccccc;
    width: 140px;
    height: 1px;
    display: inline-block;
}

.leaf-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.welcome-paragraph {
    font-size: 0.82rem;
    color: #888888;
    line-height: 1.6;
    font-family: var(--font-body);
    margin: 0 auto;
}

/* 6 Services Grid */
.welcome-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.25rem;
}

.service-box {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.service-img-wrap {
    width: 100%;
    height: 165px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    border-radius: var(--radius-sm);
}

.service-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-box:hover .service-box-img {
    transform: scale(1.06);
}

.service-box-title {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.35rem;
    color: #222222;
}

.service-box-title a {
    color: #222222;
    transition: color 0.3s ease;
}

.service-box-title a:hover {
    color: var(--primary);
}

.service-box-desc {
    font-size: 0.78rem;
    color: #888888;
    line-height: 1.55;
    font-family: var(--font-body);
}

/* ==========================================================================
   COMPANY FEATURES GRID SECTION (Matching Screenshot)
   ========================================================================== */
.company-features-section {
    background-color: #f7f9f6;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2rem;
}

.feature-item-box {
    display: flex;
    align-items: flex-start;
    gap: 1.35rem;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 2px dashed var(--white);
    box-shadow: 0 0 0 3px var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item-box:hover .feature-icon-circle {
    transform: scale(1.08) rotate(5deg);
    background-color: var(--primary-hover);
}

.feature-item-content {
    display: flex;
    flex-direction: column;
}

.feature-item-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.3rem;
}

.feature-item-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #888888;
    line-height: 1.55;
}

/* ==========================================================================
   ABOUT OUR COMPANY SECTION (Matching Screenshot)
   ========================================================================== */
.about-company-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.about-company-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-company-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
}

.heading-dotted-line {
    border-bottom: 2px dotted #cccccc;
    width: 140px;
    margin: 0.5rem auto 0;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.about-green-subtitle {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.about-description {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888888;
    line-height: 1.65;
}

/* Right Column Form Card */
.about-contact-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 2.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-input, .form-textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: #333333;
    outline: none;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
}

.form-textarea {
    resize: vertical;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.btn-submit-green {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2.2rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-submit-green:hover {
    background-color: var(--primary-hover);
}

.form-note-text {
    font-size: 0.85rem;
    color: #999999;
    font-family: var(--font-body);
    line-height: 1.4;
}

/* ==========================================================================
   CUSTOMER FEEDBACK SECTION (Matching Screenshot)
   ========================================================================== */
.feedback-banner-section {
    position: relative;
    padding: 3.5rem 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
}

.feedback-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.82));
}

.feedback-quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feedback-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.heading-dotted-line-green {
    border-bottom: 2px dotted var(--primary);
    width: 140px;
    margin: 0.5rem auto 2.5rem;
}

.feedback-content-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.feedback-text-box {
    padding: 0 2rem;
}

.feedback-quote-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.feedback-author-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feedback-rating-stars {
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.feedback-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.feedback-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.feedback-prev {
    left: -50px;
}

.feedback-next {
    right: -50px;
}

@media (max-width: 992px) {
    .about-company-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .feedback-prev {
        left: 0;
    }
    .feedback-next {
        right: 0;
    }
}




.feature-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.section {
    padding: 3rem 0;
}

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

.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 2rem;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.8rem;
}

/* Grids & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(120, 184, 37, 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: var(--white);
}

.project-cat {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.project-title {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 0;
}

/* Page Hero */
.page-hero {
    background-image: linear-gradient(rgba(18, 32, 18, 0.82), rgba(0, 0, 0, 0.88)), url('../images/page-header/pheader-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 3.75rem 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--primary);
}

.page-hero-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

/* ==========================================================================
   FOOTER DESIGN (Matching Screenshot)
   ========================================================================== */
.site-footer {
    background-color: #161616;
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.3fr 1.5fr 1.6fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

/* Brand Column */
.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #888888;
    margin-bottom: 1.75rem;
    max-width: 380px;
}

.footer-social-icons {
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.footer-social-icons a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--primary);
}

/* Headings */
.footer-heading {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-heading-line {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Our Services List */
.footer-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-service-list a {
    color: #888888;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease;
}

.footer-service-list a i {
    font-size: 0.75rem;
    color: #888888;
    transition: color 0.3s ease;
}

.footer-service-list a:hover {
    color: #ffffff;
}

.footer-service-list a:hover i {
    color: var(--primary);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.5;
}

/* Working Hours Table */
.working-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.working-hours-table td {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: #888888;
}

.working-hours-table td:last-child {
    text-align: right;
}

.working-hours-table .status-closed {
    color: var(--primary);
    font-weight: 700;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: #111111;
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background-color: #0c0c0c;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #777777;
}

.copyright-text .highlight-green {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #888888;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .header-info-wrap {
        display: none;
    }
    .grid-3, .grid-4, .grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        background-color: #202020;
        flex-direction: column;
        height: auto;
    }
    .nav-menu.show {
        display: flex;
    }
    .nav-link {
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
        height: 48px;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-main-title {
        font-size: 2.5rem;
    }
    .header-phone-box {
        margin-right: 0;
    }
}

/* ==========================================================================
   PAGE LOADER — Pesa Pot (Uiverse.io by SelfMadeSystem)
   ========================================================================== */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-pesapot {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        #973BED,
        #007CFF,
        #FFC800,
        #F0F,
        #00E0ED,
        #00DA72,
        #78b825,
        #973BED
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pesapotGradientShift 3s linear infinite;
}

@keyframes pesapotGradientShift {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.loader-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -0.5rem;
}

/* From Uiverse.io by SelfMadeSystem */
.absolute {
    position: absolute;
}

.inline-block {
    display: inline-block;
}

.loader {
    display: flex;
    margin: 0.25em 0;
}

.w-2 {
    width: 0.5em;
}

.dash {
    animation: dashArray 2s ease-in-out infinite,
        dashOffset 2s linear infinite;
}

.spin {
    animation: spinDashArray 2s ease-in-out infinite,
        spin 8s ease-in-out infinite,
        dashOffset 2s linear infinite;
    transform-origin: center;
}

@keyframes dashArray {
    0%   { stroke-dasharray: 0 1 359 0; }
    50%  { stroke-dasharray: 0 359 1 0; }
    100% { stroke-dasharray: 359 1 0 0; }
}

@keyframes spinDashArray {
    0%   { stroke-dasharray: 270 90; }
    50%  { stroke-dasharray: 0 360; }
    100% { stroke-dasharray: 270 90; }
}

@keyframes dashOffset {
    0%   { stroke-dashoffset: 365; }
    100% { stroke-dashoffset: 5; }
}

@keyframes spin {
    0%                { rotate: 0deg; }
    12.5%, 25%        { rotate: 270deg; }
    37.5%, 50%        { rotate: 540deg; }
    62.5%, 75%        { rotate: 810deg; }
    87.5%, 100%       { rotate: 1080deg; }
}

/* ==========================================================================
   NEW SIMPLE LOADER (Uiverse.io loader-38)
   ========================================================================== */
#page-loader .loader {
    --color-1: #78b825;
    --size: 2.5px;
    height: calc(5 * var(--size));
    width: calc(5 * var(--size));
    color: var(--color-1);
    box-shadow:
        calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)),
        calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)),
        calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)),
        calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size));
    animation: loader-38 6s infinite;
    display: inline-block;
    margin: 0;
}

@keyframes loader-38 {
    0%    { box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)); }
    8.33% { box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)); }
    16.66%{ box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    24.99%{ box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    33.32%{ box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)); }
    41.65%{ box-shadow: calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)); }
    49.98%{ box-shadow: calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    58.31%{ box-shadow: calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    66.64%{ box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    74.97%{ box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    83.3% { box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    91.63%{ box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(10 * var(--size)) 0 calc(5 * var(--size)); }
    100%  { box-shadow: calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)), calc(-10 * var(--size)) calc(-10 * var(--size)) 0 calc(5 * var(--size)); }
}

/* ==========================================================================
   NAVBAR — STICKY + DROPDOWN
   ========================================================================== */
.main-navbar-bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    animation: slideDownNav 0.3s ease;
}

@keyframes slideDownNav {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

/* Dropdown */
.nav-item.has-dropdown {
    position: relative;
}

.nav-caret {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background-color: #1e2a1e;
    border-top: 3px solid var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 999;
    border-radius: 0 0 6px 6px;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown li a i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 14px;
    flex-shrink: 0;
}

.nav-dropdown li a:hover {
    background-color: rgba(120, 184, 37, 0.15);
    color: var(--primary);
}

/* ==========================================================================
   FOOTER LOGO — Bigger
   ========================================================================== */
.footer-logo {
    height: 90px !important;
    width: auto;
    margin-bottom: 1.25rem;
    object-fit: contain;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
}

/* ==========================================================================
   POLICY PAGES — Privacy Policy & Terms of Service
   ========================================================================== */
.policy-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.policy-intro-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1a2e1a, #243324);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
}

.policy-intro-icon {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.policy-intro-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.policy-intro-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.policy-section {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

.policy-section-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-num {
    color: var(--primary);
    font-weight: 800;
}

.policy-subsection-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin: 1.25rem 0 0.65rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.86rem;
    color: #555;
    line-height: 1.65;
}

.policy-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.policy-note {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(120, 184, 37, 0.06);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    padding: 0.9rem 1.1rem;
    margin-top: 1rem;
}

.policy-note i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-note p {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
}

.policy-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem 1rem;
    margin-top: 0.75rem;
}

.policy-data-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #555;
    background: #f7f9f6;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
}

.policy-data-item i {
    color: var(--primary);
    font-size: 0.78rem;
    flex-shrink: 0;
}

.policy-contact-box {
    background: #f7f9f6;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.policy-contact-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.policy-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.policy-contact-items div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: #555;
}

.policy-contact-items div i {
    color: var(--primary);
    width: 14px;
    flex-shrink: 0;
}

.policy-contact-items a {
    color: var(--primary);
    font-weight: 600;
}

.policy-contact-items a:hover {
    text-decoration: underline;
}

.policy-footer-note {
    background: #1a2e1a;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    margin-top: 2.5rem;
}

.policy-footer-note p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin: 0.25rem 0;
    font-family: var(--font-body);
}

.policy-footer-note strong {
    color: var(--primary);
}

/* =========================================================
   BOARD & MANAGEMENT TEAM SECTION
   ========================================================= */
.board-team-section {
    padding: 5rem 0;
    background: var(--bg-light, #f8f9fa);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.board-card {
    background: var(--white);
    border-radius: var(--radius-md, 12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 3px solid var(--primary);
}

.board-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.board-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1a3a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.board-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.board-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.board-role {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(120,184,37,0.1);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.board-bio {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .board-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   HERO SLIDER SECTION
   ========================================================= */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 520px;
    overflow: hidden;
}

/* Track holds all slides stacked */
.hs-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Each slide */
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.85s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.30) 100%);
    z-index: 0;
}

/* Slide content */
.hs-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 30px;
    margin: 0 auto;
    text-align: center;
    animation: hsFadeUp 0.9s ease both;
}

@keyframes hsFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hs-subtitle {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hs-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hs-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin: 0 auto 1.75rem;
    max-width: 540px;
}

.hs-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Prev / Next arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hs-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

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

/* Dot indicators */
.hs-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.55rem;
}

.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    padding: 0;
}

.hs-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.35);
}

/* Board Row & Portrait Cards */
.board-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.board-portrait-card {
    background: #ffffff;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    width: 170px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid var(--primary);
}

.board-portrait-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.bp-img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #e9ecef;
}

.bp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.board-portrait-card:hover .bp-img-wrap img {
    transform: scale(1.06);
}

.bp-info {
    padding: 0.85rem 0.6rem;
}

.bp-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.2rem 0;
    line-height: 1.25;
}

.bp-designation {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

@media (max-width: 768px) {
    .hero-slider-section { height: 70vh; min-height: 400px; }
    .hs-title { font-size: 1.6rem; }
    .hs-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
    .board-portrait-card { width: 140px; }
    .bp-img-wrap { height: 160px; }
}

/* =========================================================
   PRO EXECUTIVE ABOUT SECTION STYLES
   ========================================================= */
.pro-about-section {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbf7 100%);
    position: relative;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(120, 184, 37, 0.12);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(120, 184, 37, 0.25);
    text-transform: uppercase;
}

.pro-about-text-container {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.5rem;
}

.pro-about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: center;
}

.pro-about-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.85;
    margin: 0 auto;
    text-align: center;
}

/* 4 Key Pillars Grid */
.pro-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.pro-pillar-card {
    background: #ffffff;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pro-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(120, 184, 37, 0.12);
    border-color: rgba(120, 184, 37, 0.4);
}

.pro-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #1a3a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pro-pillar-content h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
}

.pro-pillar-content p {
    font-size: 0.72rem;
    color: #718096;
    margin: 0;
    line-height: 1.3;
}

/* Photos Grid with Overlay Badges */
.pro-about-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.pro-photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    height: 320px;
    border: 3px solid #ffffff;
}

.pro-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pro-photo-card:hover .pro-about-img {
    transform: scale(1.05);
}

.pro-photo-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(26, 46, 26, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pro-photo-badge i {
    color: var(--primary);
}

@media (max-width: 900px) {
    .pro-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pro-pillars-grid {
        grid-template-columns: 1fr;
    }
    .pro-about-photos-grid {
        grid-template-columns: 1fr;
    }
    .pro-photo-card {
        height: 240px;
    }
}

/* Text-only centered pillars below images */
.pro-pillars-text-only .pro-pillar-card {
    justify-content: center;
    text-align: center;
    padding: 1.35rem 1rem;
}

.pro-pillars-text-only .pro-pillar-content {
    width: 100%;
    text-align: center;
}

.pro-pillars-text-only .pro-pillar-content h4 {
    text-align: center;
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.pro-pillars-text-only .pro-pillar-content p {
    text-align: center;
}

/* =========================================================
   MEMBERSHIP REQUIREMENTS SECTION STYLES
   ========================================================= */
.membership-req-section {
    padding: 5.5rem 0;
    background: #ffffff;
}

.req-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.req-card {
    background: var(--bg-light, #f8fbf6);
    border-radius: var(--radius-md, 12px);
    padding: 1.75rem 1.25rem;
    position: relative;
    border: 1px solid rgba(120, 184, 37, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.req-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(120, 184, 37, 0.12);
    border-color: var(--primary);
    background: #ffffff;
}

.req-step-num {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(120, 184, 37, 0.35);
}

.req-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(120, 184, 37, 0.12);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0.85rem;
}

.req-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.req-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
}

.req-amount {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.65rem;
    letter-spacing: -0.3px;
}

.req-amount span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.req-list li {
    font-size: 0.8rem;
    color: #4a5568;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.req-list li i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.req-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1100px) {
    .req-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .req-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .req-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MISSION, VISION & CORE VALUES STYLES
   ========================================================= */
.mvv-section {
    padding: 5.5rem 0;
    background: #f8fbf6;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.mvv-card {
    background: #ffffff;
    border-radius: var(--radius-md, 12px);
    padding: 2.25rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(120, 184, 37, 0.14);
}

.mvv-card.highlight-card {
    border-top: 4px solid var(--primary);
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ed 100%);
}

.mvv-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #1a3a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.mvv-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.85rem 0;
}

.mvv-text {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.75;
    margin: 0;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}

.mvv-values-list li {
    font-size: 0.88rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mvv-values-list li i {
    color: var(--primary);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   BLOG / NEWS CARD HOVER EFFECTS
   ========================================================= */
.blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(120, 184, 37, 0.16);
    border-color: rgba(120, 184, 37, 0.4);
}

.blog-card .blog-img-wrap,
.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.blog-title a {
    color: #1a1a1a;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title a {
    color: var(--primary);
}

/* =========================================================
   PRO COMPACT CONTACT CARDS
   ========================================================= */
.pro-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.pro-contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    border: 1px solid rgba(120, 184, 37, 0.22);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pro-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(120, 184, 37, 0.14);
    border-color: var(--primary);
}

.pro-cc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1a3a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pro-cc-details h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.pro-cc-details p {
    font-size: 0.8rem;
    color: #4a5568;
    margin: 0 0 0.15rem 0;
    line-height: 1.4;
}

.pro-cc-details a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.pro-cc-details a:hover {
    text-decoration: underline;
}

@media (max-width: 850px) {
    .pro-contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SCROLL TO TOP BUTTON (From Uiverse.io by vinodjangid07)
   ========================================================= */
.scroll-to-top.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(120, 184, 37, 0.25);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.scroll-to-top.button .svgIcon {
  width: 14px;
  transition-duration: 0.3s;
}

.scroll-to-top.button .svgIcon path {
  fill: white;
}

.scroll-to-top.button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--primary, #78b825);
  align-items: center;
}

.scroll-to-top.button:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.scroll-to-top.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
}

.scroll-to-top.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}

/* =========================================================
   NAV SUB-DROPDOWN STYLES (Magazine Editions)
   ========================================================= */
.nav-dropdown li.has-sub-dropdown {
    position: relative;
}

.sub-caret {
    float: right;
    font-size: 0.75rem;
    margin-top: 4px;
    margin-left: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: #ffffff;
    min-width: 210px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    display: none;
    border-left: 3px solid var(--primary, #78b825);
    z-index: 1000;
}

.nav-dropdown li.has-sub-dropdown:hover > .nav-sub-dropdown {
    display: block;
}

.nav-sub-dropdown li a {
    padding: 0.65rem 1.15rem;
    display: block;
    color: #2d3748;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-sub-dropdown li a:hover {
    background: #f4f9ef;
    color: var(--primary, #78b825);
}

/* =========================================================
   UIVERSE DOWNLOAD BUTTONS (by adamgiebl)
   ========================================================= */
.cssbuttons-io-button {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5em 1.15em 0.5em 0.9em;
  color: white;
  background: linear-gradient(
    0deg,
    #4e8a10 0%,
    #78b825 100%
  );
  border: none;
  box-shadow: 0 0.5em 1.2em -0.4em rgba(120, 184, 37, 0.45);
  letter-spacing: 0.04em;
  border-radius: 20em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cssbuttons-io-button svg {
  margin-right: 6px;
  flex-shrink: 0;
}

.cssbuttons-io-button:hover {
  box-shadow: 0 0.6em 1.5em -0.4em rgba(120, 184, 37, 0.65);
  transform: translateY(-2px);
  color: white;
}

.cssbuttons-io-button:active {
  box-shadow: 0 0.3em 1em -0.4em rgba(120, 184, 37, 0.65);
  transform: translateY(0);
}

/* =========================================================
   CLICK DOWNLOAD ANIMATION EFFECTS
   ========================================================= */
.cssbuttons-io-button:active svg {
  animation: downloadBounce 0.45s ease;
}

@keyframes downloadBounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  70% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.cssbuttons-io-button.downloading {
  animation: buttonPulse 0.55s ease-in-out;
  background: linear-gradient(0deg, #386b0a 0%, #68a31e 100%) !important;
}

.cssbuttons-io-button.downloading svg {
  animation: downloadSlide 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes downloadSlide {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(14px); opacity: 0; }
  50% { transform: translateY(-14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes buttonPulse {
  0% { transform: scale(1); }
  30% { transform: scale(0.92); }
  65% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* =========================================================
   PRO MOBILE HAMBURGER & RESPONSIVE NAVIGATION
   ========================================================= */
@media (min-width: 993px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .top-header {
        padding: 0.85rem 0;
    }

    .top-header-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        text-align: center;
    }

    .header-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-img {
        height: 72px !important;
        width: auto !important;
        margin-bottom: 0.35rem;
    }

    .header-brand-block {
        align-items: center;
        text-align: center;
    }

    .hb-main-name {
        font-size: 1.5rem !important;
        justify-content: center;
    }

    .hb-subtitle {
        font-size: 0.7rem !important;
        text-align: center;
    }

    .hb-tagline {
        font-size: 0.68rem !important;
        text-align: center;
    }

    .header-info-wrap {
        display: none !important;
    }

    .main-navbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        position: relative;
    }

    /* Mobile Hamburger Toggle Button */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(120, 184, 37, 0.18);
        border: 1px solid rgba(120, 184, 37, 0.4);
        color: #78b825;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1002;
    }

    .mobile-nav-toggle:hover,
    .mobile-nav-toggle.is-open {
        background: #78b825;
        color: #0f1c0f;
    }

    .mobile-nav-toggle .icon-close {
        display: none;
    }

    .mobile-nav-toggle.is-open .icon-bars {
        display: none;
    }

    .mobile-nav-toggle.is-open .icon-close {
        display: inline-block;
    }

    /* Green Phone Box on Mobile */
    .header-phone-box {
        padding: 0.5rem 0.85rem !important;
        border-radius: 8px !important;
    }

    .header-phone-box .phone-number {
        font-size: 0.9rem !important;
    }

    /* Mobile Slide-Down Nav Container */
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #0d1a0d;
        border-top: 2px solid #78b825;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        border-radius: 0 0 14px 14px;
    }

    .nav-container.mobile-active {
        max-height: 85vh;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        padding: 1rem 0;
    }

    .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        color: #e2e8f0 !important;
        font-weight: 700 !important;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(120, 184, 37, 0.15);
        color: #78b825 !important;
    }

    /* Dropdown menus on Mobile */
    .nav-dropdown {
        position: static !important;
        display: none !important;
        background: #070d07 !important;
        box-shadow: none !important;
        padding: 0.5rem 0 !important;
        min-width: 100% !important;
        border: none !important;
        border-left: 3px solid #78b825 !important;
    }

    .has-dropdown.active-mobile-dropdown > .nav-dropdown {
        display: block !important;
    }

    .nav-dropdown li a {
        padding: 0.75rem 2rem !important;
        font-size: 0.9rem !important;
        color: #cbd5e0 !important;
        display: block;
    }

    .nav-dropdown li a:hover {
        color: #78b825 !important;
        background: rgba(120, 184, 37, 0.1) !important;
    }

    /* Sub Dropdown (SACCO Magazine) on Mobile */
    .nav-sub-dropdown {
        position: static !important;
        display: none !important;
        background: #020502 !important;
        box-shadow: none !important;
        padding: 0.5rem 0 !important;
        min-width: 100% !important;
        border: none !important;
        border-left: 3px solid #78b825 !important;
    }

    .has-sub-dropdown.active-mobile-sub > .nav-sub-dropdown {
        display: block !important;
    }

    .nav-sub-dropdown li a {
        padding: 0.65rem 2.5rem !important;
        font-size: 0.85rem !important;
        color: #a0aec0 !important;
    }
}

/* =========================================================
   PRO MOBILE HAMBURGER & RESPONSIVE NAVIGATION (OVERRIDE FIX)
   ========================================================= */
@media (min-width: 993px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .top-header {
        padding: 0.85rem 0;
    }

    .top-header-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        text-align: center;
    }

    .header-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-img {
        height: 72px !important;
        width: auto !important;
        margin-bottom: 0.35rem;
    }

    .header-brand-block {
        align-items: center;
        text-align: center;
    }

    .hb-main-name {
        font-size: 1.5rem !important;
        justify-content: center;
    }

    .hb-subtitle {
        font-size: 0.7rem !important;
        text-align: center;
    }

    .hb-tagline {
        font-size: 0.68rem !important;
        text-align: center;
    }

    .header-info-wrap {
        display: none !important;
    }

    .main-navbar-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.5rem 0 !important;
        position: relative !important;
    }

    /* Mobile Hamburger Toggle Button */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        background: #78b825 !important;
        border: 2px solid #ffffff !important;
        color: #0f1c0f !important;
        font-size: 1.3rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        z-index: 1002 !important;
    }

    .mobile-nav-toggle .icon-close {
        display: none !important;
    }

    .mobile-nav-toggle.is-open .icon-bars {
        display: none !important;
    }

    .mobile-nav-toggle.is-open .icon-close {
        display: inline-block !important;
    }

    /* Green Phone Box on Mobile */
    .header-phone-box {
        padding: 0.5rem 0.85rem !important;
        border-radius: 8px !important;
    }

    .header-phone-box .phone-number {
        font-size: 0.9rem !important;
    }

    /* Mobile Slide-Down Nav Container */
    .nav-container {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #0f1c0f !important;
        border-top: 3px solid #78b825 !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
        display: none !important;
        z-index: 1001 !important;
        border-radius: 0 0 14px 14px !important;
        padding: 0.5rem 0 !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }

    .nav-container.mobile-active {
        display: block !important;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        display: block !important;
    }

    .nav-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.95rem 1.5rem !important;
        font-size: 0.95rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        width: 100% !important;
        text-decoration: none !important;
        background: transparent !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(120, 184, 37, 0.2) !important;
        color: #78b825 !important;
    }

    .nav-caret {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 6px !important;
        color: #78b825 !important;
    }

    /* Dropdown menus on Mobile */
    .nav-dropdown {
        position: static !important;
        display: none !important;
        background: #050b05 !important;
        box-shadow: none !important;
        padding: 0.5rem 0 !important;
        min-width: 100% !important;
        border: none !important;
        border-left: 4px solid #78b825 !important;
        list-style: none !important;
    }

    .has-dropdown.active-mobile-dropdown > .nav-dropdown {
        display: block !important;
    }

    .nav-dropdown li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    }

    .nav-dropdown li a {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem !important;
        color: #e2e8f0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }

    .nav-dropdown li a:hover {
        color: #78b825 !important;
        background: rgba(120, 184, 37, 0.12) !important;
    }

    /* Sub Dropdown (SACCO Magazine) on Mobile */
    .nav-sub-dropdown {
        position: static !important;
        display: none !important;
        background: #000000 !important;
        box-shadow: none !important;
        padding: 0.5rem 0 !important;
        min-width: 100% !important;
        border: none !important;
        border-left: 4px solid #78b825 !important;
        list-style: none !important;
    }

    .has-sub-dropdown.active-mobile-sub > .nav-sub-dropdown {
        display: block !important;
    }

    .nav-sub-dropdown li a {
        padding: 0.7rem 2.75rem !important;
        font-size: 0.85rem !important;
        color: #a0aec0 !important;
        text-decoration: none !important;
    }
}

/* =========================================================
   OFF-CANVAS SIDEBAR DRAWER (STYLING MATCHING REFERENCE IMAGE)
   ========================================================= */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background: #06111e;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0,0,0,0.6);
    overflow-y: auto;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.drawer-logo-img {
    height: 48px;
    width: auto;
}

.drawer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.drawer-brand-text .d-pesa { color: #78b825; }
.drawer-brand-text .d-pot { color: #ffffff; }
.drawer-brand-text .d-sacco { color: #78b825; }

.drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.drawer-close-btn:hover {
    background: #e53e3e;
    color: #ffffff;
}

/* Drawer Menu Links */
.drawer-body {
    padding: 1rem 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-link-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
}

.drawer-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-link:hover,
.drawer-link.active {
    color: #78b825;
    padding-left: 1.75rem;
}

.drawer-caret-btn,
.nested-caret-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.drawer-caret-btn.rotated,
.nested-caret-btn.rotated {
    transform: rotate(180deg);
    color: #78b825;
}

/* Drawer Sub Menu */
.drawer-sub-menu {
    display: none;
    list-style: none;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid #78b825;
}

.drawer-has-dropdown.active-sub > .drawer-sub-menu {
    display: block;
}

.drawer-sub-menu li a {
    display: block;
    padding: 0.65rem 1rem;
    color: #cbd5e0;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.drawer-sub-menu li a:hover {
    color: #78b825;
}

.drawer-nested-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
}

.nested-title {
    color: #cbd5e0;
    font-size: 0.92rem;
    font-weight: 600;
}

.drawer-nested-menu {
    display: none;
    list-style: none;
    padding: 0.4rem 0 0.4rem 1rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
}

.drawer-has-nested.active-nested > .drawer-nested-menu {
    display: block;
}

.drawer-nested-menu li a {
    font-size: 0.85rem !important;
    color: #a0aec0 !important;
}

/* Drawer Contact Block (Red Circle Icons matching Reference Image) */
.drawer-contact-block {
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.drawer-contact-item:hover {
    opacity: 0.85;
}

.drawer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e53e3e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

.drawer-socials {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
    padding-left: 0.25rem;
}

.drawer-socials a {
    color: #ffffff;
    font-size: 1.1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.drawer-socials a:hover {
    color: #78b825;
    transform: translateY(-2px);
}

/* =========================================================
   PRO RESPONSIVE GRID LAYOUTS (DESKTOP & MOBILE ENHANCEMENTS)
   ========================================================= */

/* 1. 4 Financial Pillars Grid (Home Page) */
.pro-pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
}

.pro-pillar-card {
    background: #ffffff !important;
    border: 1px solid rgba(120, 184, 37, 0.3) !important;
    border-top: 4px solid #78b825 !important;
    border-radius: 12px !important;
    padding: 1.5rem 1rem !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.pro-pillar-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(120, 184, 37, 0.15) !important;
}

.pro-pillar-content h4 {
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 0.4rem !important;
}

.pro-pillar-content p {
    font-size: 0.85rem !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* 2. Features Grid 6 (Why Choose Us) */
.features-grid-6 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.feature-item-box {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 14px !important;
    padding: 2rem !important;
    display: flex !important;
    gap: 1.25rem !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.feature-item-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(120, 184, 37, 0.12) !important;
    border-color: rgba(120, 184, 37, 0.3) !important;
}

.feature-icon-circle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    background: rgba(120, 184, 37, 0.14) !important;
    color: #78b825 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    flex-shrink: 0 !important;
}

.feature-item-title {
    font-family: var(--font-heading) !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 0.45rem !important;
}

.feature-item-desc {
    font-size: 0.88rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* -- Mobile Screen Breakpoints -- */
@media (max-width: 992px) {
    .pro-pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .features-grid-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 640px) {
    .pro-pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .pro-pillar-card {
        padding: 1.15rem 0.75rem !important;
    }

    .pro-pillar-content h4 {
        font-size: 0.95rem !important;
    }

    .pro-pillar-content p {
        font-size: 0.78rem !important;
    }

    .features-grid-6 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .feature-item-box {
        padding: 1.25rem !important;
        gap: 1rem !important;
    }

    .feature-icon-circle {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.15rem !important;
    }

    .feature-item-title {
        font-size: 1.05rem !important;
    }

    .feature-item-desc {
        font-size: 0.85rem !important;
    }
}
