﻿/**
 * SLBC Brand Theme — Green #007A3D | Dark Gray #3D3D3D | Silver #C0C0C0
 */
:root {
    --green: #007A3D;
    --green-dark: #005c2e;
    --red: #3D3D3D;
    --red-dark: #2D2D2D;
    --silver: #C0C0C0;
    --silver-dark: #A8A8A8;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-muted: #E0E0E0;
    --text-dark: #222222;
    --primary: var(--green);
    --primary-dark: var(--green-dark);
    --primary-light: #00994d;
    --accent: var(--red);
    --accent-silver: var(--silver);
    --text: var(--text-dark);
    --text-body: var(--text-dark);
    --text-light: #555555;
    --bg: var(--gray-light);
    --border: #dde2e8;
}

/* ─── 1. Header ─── */
.navbar-dark {
    background: #f2f2f2 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    isolation: isolate;
}
.navbar-dark.scrolled { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
.navbar-dark .logo-title { color: #007A3D !important; }
.navbar-dark .logo-sub { opacity: 0.85; letter-spacing: 1.5px; color: #3D3D3D !important; }
.navbar-dark .logo-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}
.navbar-dark .logo-img {
    height: 60px;
    width: auto;
    max-height: 64px;
    max-width: none;
    object-fit: contain;
    object-position: center;
    background: transparent;
    mix-blend-mode: normal;
    display: block;
}
.navbar-dark .logo,
.navbar-dark .logo.logo-icon-only {
    background: transparent !important;
    overflow: visible;
    flex-shrink: 0;
    line-height: 0;
}
.navbar-dark .nav-menu a { color: #222222 !important; }
.navbar-dark .nav-menu a:hover,
.navbar-dark .nav-menu a.active {
    color: #007A3D !important;
    background: rgba(0, 122, 61, 0.08) !important;
}
.navbar-dark .lang-switch { border-color: rgba(0, 0, 0, 0.12) !important; }
.navbar-dark .lang-switch a { color: #666666 !important; }
.navbar-dark .lang-switch a.active { color: #007A3D !important; font-weight: 700 !important; }
.navbar-dark .lang-switch span { color: rgba(0, 0, 0, 0.2) !important; }
.navbar-dark .nav-toggle span { background: #007A3D; }

@media (max-width: 768px) {
    .navbar-dark .nav-menu {
        background: #f2f2f2 !important;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
    .navbar-dark .nav-menu a {
        color: #222222 !important;
    }
    .navbar-dark .nav-menu a:hover,
    .navbar-dark .nav-menu a.active {
        color: #007A3D !important;
        background: rgba(0, 122, 61, 0.08) !important;
    }
    .navbar-dark .lang-switch {
        border-top: 1px solid #e0e0e0 !important;
        padding-top: 12px !important;
        margin-top: 12px !important;
    }
    .navbar-dark .lang-switch a { color: #555555 !important; }
    .navbar-dark .lang-switch a.active { color: #007A3D !important; }
}

/* ─── 2. Hero Slider (CAFSY overlay style) ─── */
.hero-video-hero {
    margin-top: var(--nav-height) !important;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    min-height: 0;
    max-height: none;
}
.page-home .hero-video-hero {
    background: #007A3D;
}
@media (max-width: 768px) {
    .hero-video-hero {
        width: 100%;
        height: 56vh;
        min-height: 260px;
        max-height: 420px;
    }
    .hero-video-hero .hero-video {
        object-fit: cover;
        object-position: center center;
    }
}

.hero-slider.cafsy-hero.hero-slider-clean {
    background: #000000;
}
.hero-slider-clean .slide:not(.slide-has-caption) .slide-overlay {
    display: none !important;
}
.hero-slider-clean .slide-has-caption .slide-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 100%
    ) !important;
}

.hero-slider.cafsy-hero.hero-overlay {
    position: relative;
    margin-top: var(--nav-height) !important;
    height: 85vh;
    min-height: 520px;
    max-height: 820px;
    overflow: hidden;
    background: #007A3D;
}
.hero-overlay .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.hero-overlay .slide.active {
    opacity: 1;
    pointer-events: auto;
}
.hero-overlay .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.hero-overlay .slide-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}
.hero-overlay .slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 8s ease;
    pointer-events: none;
    display: block;
}
.hero-overlay .slide.active .slide-video {
    transform: scale(1);
}
.hero-overlay .slide.active .slide-bg {
    transform: scale(1);
}
.hero-overlay .slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 122, 61, 0.55) 0%,
        rgba(0, 122, 61, 0.72) 45%,
        rgba(0, 122, 61, 0.82) 100%
    );
}
.hero-overlay .slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 20px 72px;
}
.hero-overlay .slide-content h2 {
    color: #FFFFFF !important;
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    animation: heroTextIn 0.7s ease;
}
.hero-overlay .slide.active .slide-content h2 {
    animation: heroTextIn 0.7s ease;
}
.hero-overlay .hero-subtitle {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.85;
    max-width: 760px;
    margin: 20px auto 0;
    font-weight: 500;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
    animation: heroTextIn 0.7s ease 0.12s both;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-overlay .slider-dots {
    bottom: 28px;
    z-index: 5;
}
.hero-overlay .slider-arrows {
    z-index: 5;
}

.slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 122, 61, 0.82) 0%,
        rgba(0, 122, 61, 0.55) 50%,
        rgba(192, 192, 192, 0.18) 100%
    ) !important;
}
.slide-overlay-light {
    background: linear-gradient(
        135deg,
        rgba(0, 122, 61, 0.35) 0%,
        rgba(0, 122, 61, 0.15) 50%,
        rgba(192, 192, 192, 0.12) 100%
    ) !important;
}
.slide-branded .slide-bg { background-position: center center; background-size: cover; }
.slide-content-minimal { padding-bottom: 48px; justify-content: flex-end; }
.slide-content-minimal .hero-cta { margin-top: 0; }
.slide-content h1 { color: #FFFFFF !important; }
.hero-subtitle { color: #FFFFFF !important; opacity: 0.92; }
.hero-divider {
    width: 72px;
    height: 1px;
    background: #3D3D3D;
    margin: 16px auto;
    border-radius: 0;
}
.membership-hero .hero-divider,
.about-hero .hero-divider,
.page-hero .hero-divider { background: #3D3D3D; }
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 32px;
    background: #007A3D;
    color: #FFFFFF !important;
    border: 2px solid #007A3D;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-cta:hover {
    background: #007A3D;
    border-color: #C0C0C0;
    color: #FFFFFF !important;
    box-shadow: 0 0 0 1px #C0C0C0;
}
.slider-dot.active { background: #C0C0C0 !important; }
.slider-arrow:hover {
    background: #007A3D !important;
    border-color: #007A3D !important;
}

/* ─── 3. About Us (home + about page intro) ─── */
.about-intro-section,
.about-home {
    background: #F8F9FA !important;
    padding: 72px 0;
    position: relative;
}
.about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #007A3D;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.about-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-intro-logo-wrap.about-intro-logo-icon {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-width: 220px;
    margin-inline: auto;
    overflow: visible;
}
.about-intro-logo-wrap.about-intro-logo-icon img {
    max-width: 200px;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: normal;
}
.about-intro-logo-wrap.about-intro-logo-official {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-width: 440px;
    margin-inline: auto;
    overflow: visible;
}
.about-intro-logo-wrap.about-intro-logo-official img {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.about-intro-text .section-label {
    color: #007A3D !important;
    font-weight: 700;
}
.about-intro-text h2 {
    color: #007A3D !important;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.45;
}
.about-prose {
    color: #222222 !important;
    font-size: 1.05rem;
    line-height: 2;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 24px;
}
.about-prose .kw-highlight {
    color: #007A3D;
    font-weight: 700;
}
.about-read-more {
    margin-top: 8px;
}
.about-home .btn-primary,
.about-intro-section .btn-primary {
    background: #007A3D !important;
    border-color: #007A3D !important;
    color: #FFFFFF !important;
}
.about-home .btn-primary:hover,
.about-intro-section .btn-primary:hover {
    background: #005c2e !important;
    border-color: #C0C0C0 !important;
}

.section-gray { background: #F8F9FA; }
.section-white { background: #FFFFFF; }
.section-header h2 { color: #007A3D !important; }
.section-header p { color: #555555; }

/* ─── 4. Investment Cards ─── */
.invest-section { background: #FFFFFF; }
.invest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.invest-card {
    background: #FFFFFF;
    border: 1px solid #007A3D;
    border-radius: 14px;
    overflow: hidden;
    text-align: start;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.invest-card:hover {
    box-shadow: 0 12px 32px rgba(0, 122, 61, 0.1);
    transform: translateY(-4px);
}
.invest-card-image {
    height: 200px;
    overflow: hidden;
    background: #F8F9FA;
    border-bottom: 2px solid #007A3D;
}
.invest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.invest-card-body {
    padding: 24px 22px 28px;
    flex: 1;
}
.invest-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3D3D3D;
    background: #f7f9f8;
    border-radius: 50%;
    border: 1px solid rgba(61, 61, 61, 0.12);
}
.invest-card-icon i {
    color: #3D3D3D;
}
.invest-card h3 {
    color: #007A3D;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.45;
}
.invest-card p {
    color: #222222;
    font-size: 0.92rem;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

/* Stats navy bar — removed from homepage; logo sliders below */

/* Logo sliders (partners / targets) */
.logo-slider-section {
    background: #F3F4F6;
    padding: 56px 0 64px;
    overflow: hidden;
}
.logo-slider-header {
    text-align: center;
    margin-bottom: 36px;
}
.logo-slider-header h2 {
    color: var(--green);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 12px;
}
.logo-slider-accent {
    display: block;
    width: 56px;
    height: 4px;
    margin: 0 auto;
    background: var(--green);
    border-radius: 2px;
}
.logo-slider-viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-slider-viewport:hover .logo-slider-track {
    animation-play-state: paused;
}
.logo-slider-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    animation: logoSliderScroll 45s linear infinite;
    padding: 8px 0;
}
.logo-slider-card {
    flex: 0 0 200px;
    width: 200px;
}
.logo-slider-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 20px 16px 14px;
    box-shadow: 0 4px 20px rgba(0, 122, 61, 0.08);
    border: 1px solid #e8eaed;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-slider-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 122, 61, 0.12);
}
.logo-slider-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    margin-bottom: 12px;
}
.logo-slider-card-media img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}
.logo-slider-card-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    text-align: center;
    line-height: 1.4;
}
@keyframes logoSliderScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-slider-targets {
    background: #FFFFFF;
    border-top: 1px solid #e8eaed;
}

/* ─── 5. Latest News ─── */
.news-section-gray { background: #F8F9FA; }
.news-section-gray .news-card,
.news-page-section .news-card {
    background: #FFFFFF !important;
    border: 1px solid #dde2e8;
}
.news-section-gray .news-card-date,
.news-page-section .news-card-date {
    background: transparent !important;
    color: #3D3D3D !important;
    font-weight: 600;
}
.news-section-gray .news-category,
.news-page-section .news-category {
    background: rgba(61, 61, 61, 0.08) !important;
    color: #3D3D3D !important;
    border: 1px solid rgba(61, 61, 61, 0.35);
}
.news-section-gray .cat-laws,
.news-section-gray .cat-events,
.news-section-gray .cat-meetings,
.news-section-gray .cat-visits,
.news-page-section .cat-laws,
.news-page-section .cat-events,
.news-page-section .cat-meetings,
.news-page-section .cat-visits {
    background: rgba(61, 61, 61, 0.08) !important;
    color: #3D3D3D !important;
}
.news-page-section .news-card-body h3 { color: #007A3D !important; }
.news-page-section .read-more-link { color: #007A3D !important; }
.news-page-section .read-more-link:hover { color: #005c2e !important; }

/* Buttons global */
.btn-primary {
    background: #007A3D !important;
    border-color: #007A3D !important;
    color: #FFFFFF !important;
}
.btn-primary:hover {
    background: #005c2e !important;
    border-color: #C0C0C0 !important;
}

/* Page header */
.page-header {
    background: #007A3D !important;
}

/* ─── 6. Footer ─── */
.footer {
    background: #f2f2f2 !important;
    color: #444444;
}
.footer-accent {
    height: 3px;
    background: #007A3D;
}
.footer-brand-name { color: #007A3D !important; }
.footer-brand-sub { color: #3D3D3D !important; }
.footer-tagline { color: #666666 !important; }
.footer h4 { color: #007A3D !important; border-bottom-color: rgba(0, 122, 61, 0.25) !important; }
.footer-nav-list a,
.footer-contact-list li,
.footer-contact-list a { color: #555555 !important; }
.footer-nav-list a:hover,
.footer-contact-list a:hover { color: #007A3D !important; }
.footer-contact-list i { color: #007A3D !important; }
.footer-contact-list a:hover i,
.footer-contact-list li:hover i { color: #007A3D !important; }
.footer-contact-list .footer-whatsapp-link:hover i { color: #1da851 !important; }
.social-links a {
    background: #ffffff !important;
    border-color: #dddddd !important;
}
.social-links a.social-instagram { color: #E4405F !important; }
.social-links a.social-instagram:hover {
    background: #E4405F !important;
    border-color: #E4405F !important;
    color: #FFFFFF !important;
}
.social-links a.social-whatsapp { color: #25D366 !important; }
.social-links a.social-whatsapp:hover {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #FFFFFF !important;
}
.social-links a.social-facebook { color: #1877F2 !important; }
.social-links a.social-facebook:hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    color: #FFFFFF !important;
}
.social-links a.social-linkedin { color: #0A66C2 !important; }
.social-links a.social-linkedin:hover {
    background: #0A66C2 !important;
    border-color: #0A66C2 !important;
    color: #FFFFFF !important;
}
.social-links a.social-telegram { color: #26A5E4 !important; }
.social-links a.social-telegram:hover {
    background: #26A5E4 !important;
    border-color: #26A5E4 !important;
    color: #FFFFFF !important;
}
.social-links a.social-x { color: #000000 !important; }
.social-links a.social-x:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF !important;
}
.footer-bottom {
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #888888 !important;
}
/* Legacy */
.footer h3 { color: #007A3D !important; }
.footer-about p,
.footer-links a,
.footer-contact li { color: #555555 !important; }
.footer-links a:hover,
.footer-contact a:hover { color: #007A3D !important; }
.footer-contact i { color: #007A3D !important; transition: color 0.3s ease; }
.footer-contact li:hover i { color: #007A3D !important; }

/* Join CTA */
.join-cta-section { background: #eceeed !important; }
.join-cta-card {
    background: #007A3D !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}
.join-cta-icon {
    background: #f7f9f8 !important;
    color: #3D3D3D !important;
    border-color: rgba(61, 61, 61, 0.15) !important;
}
.join-cta-icon i {
    color: #3D3D3D !important;
}

/* ─── About Page ─── */
.about-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
}
/* About — president word on homepage */
.about-home .about-intro-president-label {
    color: #007A3D !important;
}
.about-home .about-intro-president-word cite strong {
    color: #007A3D !important;
}
.about-intro-text h2 { color: #007A3D !important; }
.about-intro-text .section-label { color: #007A3D !important; }
.about-prose { color: #222222 !important; }
.badge-year { color: var(--green) !important; }

.about-vm-card.vision-card {
    background: var(--white) !important;
    border: 1px solid var(--border);
    color: var(--text-dark) !important;
    box-shadow: var(--shadow);
}
.about-vm-card.vision-card h2 { color: var(--green) !important; }
.about-vm-card.vision-card p { color: var(--text-dark) !important; opacity: 1 !important; }
.about-vm-card.vision-card .about-vm-icon {
    background: rgba(0,122,61,0.1) !important;
    color: var(--green) !important;
}
.about-vm-card.mission-card {
    background: var(--white) !important;
    border: 1px solid var(--border);
    color: var(--text-dark) !important;
    box-shadow: var(--shadow);
}
.about-vm-card.mission-card h2 { color: var(--green) !important; }
.about-vm-card.mission-card p,
.about-vm-card.mission-card .mission-points-list li { color: var(--text-dark) !important; opacity: 1 !important; }
.about-vm-card.mission-card .about-vm-icon {
    background: rgba(0,122,61,0.1) !important;
    color: var(--green) !important;
}

/* Sectors */
.sectors-section { background: var(--white); }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sector-card {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: 10px;
    padding: 24px 20px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: all 0.3s;
}
.sector-card:hover { box-shadow: 0 8px 24px rgba(0, 122, 61,0.08); }
.sector-card i { color: var(--green); font-size: 1.3rem; margin-top: 4px; flex-shrink: 0; }
.sector-card h3 { color: var(--green); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sector-card p { color: var(--text-dark); font-size: 0.88rem; line-height: 1.6; opacity: 0.85; }

/* ─── Membership / Join Page ─── */
.membership-hero {
    background: #007A3D;
    padding: calc(var(--nav-height) + 48px) 0 56px;
    text-align: center; color: var(--white);
}
.membership-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; }
.membership-hero p { opacity: 0.9; margin-top: 10px; max-width: 600px; margin-inline: auto; }

.pricing-section {
    background: linear-gradient(180deg, #f7faf8 0%, #eef3f0 100%);
    padding: 72px 0;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(0, 122, 61, 0.14);
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card::before {
    content: '';
    display: block;
    height: 4px;
    background: #007A3D;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 122, 61, 0.12);
}
.pricing-card-body {
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}
.pricing-card.featured {
    border-color: rgba(0, 122, 61, 0.28);
    box-shadow: 0 10px 32px rgba(0, 122, 61, 0.1);
}
.pricing-card.featured::before {
    height: 5px;
    background: linear-gradient(90deg, #007A3D 0%, #00a85a 100%);
}
.pricing-card.premium {
    background: linear-gradient(160deg, #3D3D3D 0%, #2b2b2b 55%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    color: var(--white);
}
.pricing-card.premium::before {
    height: 5px;
    background: linear-gradient(90deg, #b8922a 0%, #e4c65a 50%, #b8922a 100%);
}
.pricing-card.premium:hover {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.pricing-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.35rem;
    background: rgba(0, 122, 61, 0.1);
    color: #007A3D;
}
.pricing-card.premium .pricing-card-icon {
    background: rgba(228, 198, 90, 0.15);
    color: #e4c65a;
}
.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.pricing-badge-popular {
    background: #007A3D;
    color: #fff;
}
.pricing-badge-vip {
    background: linear-gradient(135deg, #c9a227 0%, #e8d078 100%);
    color: #1a1a1a;
}
.pricing-card h3 {
    color: #007A3D;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.35;
}
.pricing-card.premium h3 {
    color: #ffffff !important;
}
.pricing-price {
    font-size: 2.5rem; font-weight: 800;
    color: var(--green); line-height: 1;
    margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 600; }
.pricing-period { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-features {
    list-style: none;
    text-align: start;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
    width: 100%;
}
.pricing-features li {
    padding: 11px 0;
    font-size: 0.92rem;
    color: #333;
    line-height: 1.65;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(0, 122, 61, 0.12);
    color: #007A3D;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pricing-card.premium .pricing-features li {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
}
.pricing-card.premium .pricing-features li i {
    background: rgba(228, 198, 90, 0.2);
    color: #e4c65a;
}
.btn-pricing {
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid #007A3D;
    background: #007A3D;
    color: #fff;
}
.btn-pricing:hover {
    background: #005c2e;
    border-color: #005c2e;
    color: #fff;
    transform: translateY(-1px);
}
.pricing-card.premium .btn-pricing {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}
.pricing-card.premium .btn-pricing:hover {
    background: #e4c65a;
    border-color: #e4c65a;
    color: #1a1a1a;
}

/* Join form */
.join-form-section {
    position: relative;
    padding: 72px 0 88px;
    background: #F8F9FA;
    overflow: hidden;
}
.join-form-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(0, 122, 61, 0.04) 0%, transparent 45%),
        linear-gradient(225deg, rgba(0, 122, 61, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(192, 192, 192, 0.08) 0%, transparent 35%);
}
.join-form-section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(rgba(0, 122, 61, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.join-form-section .container {
    position: relative;
    z-index: 1;
}
.join-form-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}
.join-form-info {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 122, 61, 0.12);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 122, 61, 0.06);
}
.join-form-info h2 {
    color: #007A3D;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.4;
    text-align: center;
}
.join-form-info p {
    color: #555555;
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}
.join-form-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.join-form-info ul li {
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #222222;
    font-size: 0.92rem;
    background: rgba(0, 122, 61, 0.04);
    border: 1px solid rgba(0, 122, 61, 0.1);
    border-radius: 12px;
    border-bottom: 1px solid rgba(0, 122, 61, 0.1);
}
.join-form-info ul li:last-child { border-bottom: 1px solid rgba(0, 122, 61, 0.1); }
.join-form-info ul li i {
    color: #007A3D;
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.membership-form {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(192, 192, 192, 0.4);
    border-radius: 20px;
    padding: 32px 36px 40px;
    box-shadow: 0 18px 50px rgba(0, 122, 61, 0.1);
    align-self: start;
    margin: 0;
}
.membership-form .form-group {
    margin-bottom: 20px;
}
.membership-form .form-group label {
    color: #007A3D;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.membership-form .form-group label i {
    color: #007A3D;
    margin-inline-end: 0;
    width: auto;
    font-size: 0.95rem;
}
.membership-form input,
.membership-form textarea,
.membership-form select {
    width: 100%;
    padding: 14px 16px !important;
    border: 1.5px solid #dde2e8 !important;
    border-radius: 10px !important;
    background: #FAFBFC !important;
    font-size: 0.95rem;
    font-family: inherit;
    color: #222222;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.membership-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23007A3D' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: left 16px center !important;
    padding-inline-start: 16px !important;
    padding-inline-end: 40px !important;
}
html[dir="ltr"] .membership-form select {
    background-position: right 16px center !important;
}
.membership-form input:not([type="checkbox"]):not([type="radio"]):hover,
.membership-form textarea:hover,
.membership-form select:hover {
    border-color: rgba(0, 122, 61, 0.45) !important;
    background: #FFFFFF !important;
}
.membership-form input:not([type="checkbox"]):not([type="radio"]):focus,
.membership-form textarea:focus,
.membership-form select:focus {
    outline: none;
    border-color: #007A3D !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(0, 122, 61, 0.12) !important;
}
.membership-form .form-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.membership-form .form-group.full-width {
    grid-column: 1 / -1;
}
.membership-form .checkbox-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.membership-form .checkbox-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #dde2e8;
    background: #FAFBFC;
    color: #007A3D;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.membership-form .checkbox-label input[type="checkbox"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.membership-form .checkbox-label:has(input:checked) {
    border-color: #007A3D;
    background: rgba(0, 122, 61, 0.06);
    box-shadow: 0 0 0 1px rgba(0, 122, 61, 0.2);
}
.membership-form .checkbox-label:has(input:focus-visible) {
    border-color: #007A3D;
    box-shadow: 0 0 0 3px rgba(0, 122, 61, 0.18);
    outline: none;
}
.membership-form .checkbox-label.declaration-check {
    min-height: auto;
    padding: 8px 10px;
    color: var(--text-dark);
    font-weight: 600;
}
.membership-form .checkbox-label.declaration-check input[type="checkbox"] {
    position: static;
    inset: auto;
    width: 1.1rem;
    height: 1.1rem;
    opacity: 1;
    flex-shrink: 0;
    margin-inline-end: 8px;
}
.btn-submit-join {
    width: 100%; padding: 16px;
    background: var(--green); color: var(--white);
    border: 2px solid var(--green);
    border-radius: 8px; font-size: 1.05rem; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit-join:hover {
    border-color: var(--silver);
    background: var(--green-dark);
}

.scroll-top { background: var(--green) !important; }
.scroll-top:hover { background: var(--green) !important; }

/* Responsive */
@media (max-width: 992px) {
    .invest-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .about-intro-grid,
    html[dir="rtl"] .about-intro-grid,
    html[dir="ltr"] .about-intro-grid,
    html[dir="rtl"] .about-intro-grid-home,
    html[dir="ltr"] .about-intro-grid-home {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
    .about-intro-logo-wrap:not(.about-intro-logo-official) {
        padding: 28px 20px;
        max-width: 360px;
        margin-inline: auto;
    }
    .about-intro-logo-wrap.about-intro-logo-official {
        margin-inline: auto !important;
        max-width: min(340px, 100%);
        width: 100%;
        padding: 0 4px;
        box-sizing: border-box;
    }
    .about-intro-logo-wrap.about-intro-logo-official img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        margin-inline: auto;
    }
    .join-form-info ul {
        grid-template-columns: 1fr;
    }
    .membership-form .form-grid,
    .membership-form .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .invest-grid { grid-template-columns: 1fr; }
    .logo-slider-card { flex: 0 0 160px; width: 160px; }
    .logo-slider-card-media { height: 56px; }
    .logo-slider-card-media img { max-height: 56px; }
    .logo-slider-section { padding: 40px 0 48px; }
    .sectors-grid { grid-template-columns: 1fr; }
    .pillars-grid, .goals-grid, .stakeholders-grid { grid-template-columns: 1fr; }
    .board-tier-leadership {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        max-width: 100%;
    }
    .board-tier-president {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .page-hero,
    .about-hero {
        min-height: 220px;
    }
    .page-hero-join {
        min-height: 300px;
    }
    .about-hero-content,
    .page-hero .about-hero-content {
        padding: 36px 16px;
    }
    .about-intro-section .about-intro-visual {
        justify-content: center !important;
        overflow: visible;
    }
    .about-intro-logo-wrap.about-intro-logo-official {
        margin-inline: auto !important;
        max-width: min(320px, calc(100vw - 48px));
        width: 100%;
    }
    .about-intro-logo-wrap.about-intro-logo-official img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
    .hero-slider.cafsy-hero.hero-overlay {
        height: 72vh;
        min-height: 420px;
        max-height: none;
    }
    .hero-overlay .slide-content {
        padding: 28px 14px 56px;
    }
    .hero-overlay .slide-content h2 {
        font-size: clamp(1.05rem, 4.2vw, 1.32rem);
        font-weight: 700;
        line-height: 1.4;
        max-width: 100%;
        padding-inline: 6px;
    }
    .hero-overlay .hero-subtitle {
        font-size: clamp(0.78rem, 3.1vw, 0.88rem);
        line-height: 1.65;
        margin-top: 10px;
        max-width: 100%;
        padding-inline: 10px;
    }
}

@media (max-width: 400px) {
    .hero-overlay .slide-content h2 {
        font-size: 1.02rem;
    }
    .hero-overlay .hero-subtitle {
        font-size: 0.76rem;
        line-height: 1.6;
    }
}

/* News excerpt */
.news-excerpt { color: var(--text-dark); font-size: 0.9rem; line-height: 1.7; opacity: 0.8; margin: 8px 0 12px; }

/* About — Message & Goals (4 image blocks each) */
.about-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.about-block-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #C0C0C0;
    box-shadow: 0 10px 32px rgba(0, 122, 61, 0.1);
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-block-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 122, 61, 0.14);
}
.about-block-card-image {
    height: 240px;
    overflow: hidden;
    background: #F8F9FA;
    border-bottom: 2px solid #C0C0C0;
}
.about-block-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-block-card-body {
    padding: 26px 24px 28px;
    color: #FFFFFF;
}
.about-block-card-message .about-block-card-body {
    background: #3D3D3D;
}
.about-block-card-goal .about-block-card-body {
    background: #007A3D;
}
.about-block-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f7f9f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #3D3D3D;
    margin-bottom: 14px;
    border: 1px solid rgba(61, 61, 61, 0.12);
}
.about-block-card-icon i {
    color: #3D3D3D;
}
.about-block-card-body h3 {
    color: #FFFFFF !important;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.45;
}
.about-block-card-body p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.92rem;
    line-height: 1.85;
    margin: 0;
}
.about-block-card-message .news-excerpt {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1;
    margin: 0 0 12px;
}
.about-block-card-message .news-card-date {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.8rem;
    margin-bottom: 8px;
    background: transparent !important;
}
.about-block-card-message .read-more-link {
    color: #C0C0C0 !important;
    font-weight: 600;
}
.about-block-card-message .read-more-link:hover {
    color: #FFFFFF !important;
}
.news-section-gray .about-block-card-image {
    position: relative;
    border-bottom-color: #3D3D3D;
}
.news-section-gray .about-block-card {
    border-color: #3D3D3D;
    text-decoration: none;
    color: inherit;
    display: block;
}
.news-section-gray .news-category {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 2;
}
.invest-section .about-block-card {
    border-color: #007A3D;
}
.invest-section .about-block-card-image {
    border-bottom-color: #007A3D;
}
.message-section { background: #FFFFFF !important; }
.goals-section { background: #F8F9FA !important; }
.goals-section-featured {
    max-width: 920px;
    margin: 0 auto 36px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 122, 61, 0.12);
}
.goals-section-featured img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .about-blocks-grid { grid-template-columns: 1fr; }
    .about-block-card-image { height: 200px; }
}

/* About — Message, Goals, Stakeholders (legacy cards) */
.pillars-grid, .goals-grid, .stakeholders-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.pillar-card, .goal-card, .stakeholder-card {
    background: var(--white); border: 1px solid var(--silver);
    border-radius: 12px; padding: 28px 24px; transition: all 0.3s;
}
.pillar-card:hover, .goal-card:hover, .stakeholder-card:hover {
    box-shadow: 0 10px 28px rgba(0, 122, 61,0.08); transform: translateY(-3px);
}
.pillar-icon, .goal-icon, .stakeholder-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(0,122,61,0.1); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 14px;
}
.pillar-card h3, .goal-card h3, .stakeholder-card h3 {
    color: var(--green); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.pillar-card p, .goal-card p, .stakeholder-card p {
    color: var(--text-dark); font-size: 0.92rem; line-height: 1.75; opacity: 0.88;
}

/* Strategic Partnerships featured block */
.partnerships-feature-section {
    background: #3D3D3D;
    padding: 72px 0;
}
.partnerships-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.partnerships-feature-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--silver);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.partnerships-feature-image img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; min-height: 380px;
}
.partnerships-image-frame {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0, 122, 61,0.15), transparent);
    pointer-events: none;
}
.partnerships-feature-content { color: var(--white); }
.partnerships-feature-content .section-label { color: var(--silver); }
.partnerships-feature-content h2 {
    color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800; margin: 12px 0 16px;
}
.partnerships-lead {
    font-size: 1.05rem; line-height: 1.85; color: var(--gray-light);
    margin-bottom: 14px; font-weight: 600;
}
.partnerships-feature-content p {
    color: rgba(248,249,250,0.88); line-height: 1.85; margin-bottom: 20px;
}
.partnerships-list { list-style: none; }
.partnerships-list li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 10px 0; color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}
.partnerships-list li i { color: var(--green); margin-top: 4px; }

@media (max-width: 992px) {
    .partnerships-feature { grid-template-columns: 1fr; }
    .partnerships-feature-image img { min-height: 280px; }
}
.mission-points-list { list-style: none; margin-top: 12px; }
.mission-points-list li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 8px 0; color: var(--text-dark); font-size: 0.92rem; line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.mission-points-list li i { color: var(--green); margin-top: 4px; flex-shrink: 0; }

/* Join form extras */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.checkbox-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--text-dark); cursor: pointer;
    padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.membership-form .checkbox-label {
    gap: 0;
    color: #007A3D;
    font-weight: 600;
}
.checkbox-label:has(input:checked) { border-color: var(--green); background: rgba(0,122,61,0.05); }
.checkbox-label input { accent-color: var(--green); }
.membership-form .checkbox-label input { accent-color: var(--green); }
.btn-pdf-download {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
    padding: 10px 20px; background: var(--green); color: var(--white);
    border-radius: 6px; text-decoration: none; font-weight: 600;
}
.btn-pdf-download:hover { background: var(--green); }
.alert-error { background: #fde8e8; color: #b91c1c; padding: 14px; border-radius: 8px; margin-bottom: 16px; }

/* Contact page */
.contact-page-section { background: var(--gray-light); padding: 64px 0; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.themed-card {
    background: var(--white); border-radius: 14px; padding: 32px;
    border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0, 122, 61,0.05);
}
.themed-card h2, .themed-card h3 { color: var(--green); }
.contact-logo { height: 64px; margin-bottom: 16px; }
.contact-page-section .contact-icon { background: rgba(0, 122, 61,0.08); color: var(--green); }
.contact-page-section .contact-icon i { color: var(--green); }
.contact-page-section .contact-icon .fa-whatsapp { color: #25D366 !important; }
.contact-page-section .contact-item h4 { color: var(--green); }
.contact-page-section .contact-item a { color: var(--green); }
.themed-social .social-card.social-instagram i { color: #E4405F !important; }
.themed-social .social-card.social-instagram:hover { border-color: #E4405F; }
.themed-social .social-card.social-whatsapp i { color: #25D366 !important; }
.themed-social .social-card.social-whatsapp:hover { border-color: #25D366; }
.themed-social .social-card.social-facebook i { color: #1877F2 !important; }
.themed-social .social-card.social-facebook:hover { border-color: #1877F2; }
.themed-social .social-card.social-linkedin i { color: #0A66C2 !important; }
.themed-social .social-card.social-linkedin:hover { border-color: #0A66C2; }
.themed-social .social-card.social-telegram i { color: #26A5E4 !important; }
.themed-social .social-card.social-telegram:hover { border-color: #26A5E4; }
.themed-social .social-card.social-x i { color: #000000 !important; }
.themed-social .social-card.social-x:hover { border-color: #000000; }
.footer-contact-list .footer-whatsapp-link i { color: #25D366 !important; }
.footer-contact-list .footer-whatsapp-link:hover,
.footer-contact-list .footer-whatsapp-link:hover i { color: #1da851 !important; }
.contact-social-title { margin-top: 24px; color: var(--green); margin-bottom: 12px; font-size: 1rem; }
.contact-map-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; }
.contact-map-desc p { color: var(--text-dark); line-height: 1.8; margin-top: 10px; }
.themed-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); min-height: 320px; }
.themed-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* News search */
.news-page-section { background: var(--gray-light); padding-bottom: 64px; }
.news-search-form {
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
    margin-bottom: 24px; padding: 20px; background: var(--white);
    border-radius: 12px; border: 1px solid var(--border);
}
.search-input-wrap { flex: 1; min-width: 200px; position: relative; }
.search-input-wrap i {
    position: absolute; inset-inline-start: 14px; top: 50%; transform: translateY(-50%);
    color: var(--green); opacity: 0.5;
}
.search-input-wrap input {
    width: 100%; padding: 12px 14px 12px 40px; border: 1.5px solid var(--border);
    border-radius: 8px; font-family: inherit;
}
.search-input-wrap input:focus { border-color: var(--green); outline: none; }
.news-page-section .filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* Board hierarchy */
.board-page-section { padding: 48px 0 80px; background: var(--gray-light); }

.board-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
}
.board-pyramid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px 44px;
    width: 100%;
    margin-bottom: 36px;
}
.board-pyramid-row:last-child {
    margin-bottom: 0;
}
.board-pyramid-row--president {
    margin-bottom: 44px;
}
.board-pyramid-row--leadership {
    margin-bottom: 40px;
}

.board-level-section { margin-bottom: 56px; }
.board-level-section:last-child { margin-bottom: 0; }
.board-level-title {
    color: #007A3D;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.board-level-title i { color: #C0C0C0; }

.board-tier-grid {
    display: grid;
    gap: 24px;
    justify-items: center;
}
.board-tier-president {
    grid-template-columns: minmax(240px, 300px);
    justify-content: center;
}
.board-tier-leadership {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-content: center;
    max-width: none;
    margin: 0;
}
.board-tier-members {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.board-member-card {
    display: block;
    width: 100%;
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid #dde2e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 3px solid #007A3D;
}
.board-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 122, 61, 0.15);
}

/* Pyramid layout — circular portraits, centered tiers */
.board-member-card--pyramid {
    width: auto;
    max-width: 220px;
    flex: 0 1 200px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-top: none;
    overflow: visible;
}
.board-member-card--pyramid:hover {
    transform: translateY(-4px);
    box-shadow: none;
}
.board-member-card--pyramid.board-member-card--president {
    max-width: 260px;
    flex-basis: 240px;
}
.board-member-card--pyramid .board-member-photo {
    width: 200px;
    height: 200px;
    max-width: 200px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    background: #007A3D;
    position: relative;
    padding: 4px;
    box-sizing: border-box;
    border-radius: 50%;
    clip-path: none;
    overflow: hidden;
}
.board-member-card--pyramid.board-member-card--president .board-member-photo {
    width: 230px;
    height: 230px;
    max-width: 230px;
}
.board-member-card--pyramid .board-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 50%;
    clip-path: none;
    background: #f7f9f8;
}
.board-member-card--pyramid .board-member-meta {
    padding: 16px 8px 0;
    text-align: center;
}
.board-member-card--pyramid .board-member-name {
    color: #007A3D;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 6px;
}
.board-member-card--pyramid.board-member-card--president .board-member-name {
    font-size: 1.12rem;
}
.board-member-card--pyramid .board-member-role {
    color: #007A3D;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.92;
}

.board-member-photo {
    background: #F3F4F6;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.board-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}
.board-member-meta {
    padding: 16px 14px 18px;
    text-align: center;
}
.board-member-role {
    color: #007A3D;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
}
.board-member-name {
    color: #007A3D;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.4;
}
.board-member-card--president {
    max-width: 300px;
}
.board-member-card--president .board-member-photo {
    aspect-ratio: 3 / 4;
}
.board-member-card--president .board-member-name {
    font-size: 1.08rem;
}

.board-home-tier { margin-bottom: 24px; }
.board-home-tier:last-of-type { margin-bottom: 0; }
.board-home-grid { margin-bottom: 0; }

/* Board member profile page */
.board-member-topbar {
    margin-top: var(--nav-height);
    background: #FFFFFF;
    border-bottom: 1px solid #dde2e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.board-member-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.board-member-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007A3D;
    border: 1px solid rgba(0, 122, 61, 0.25);
    border-radius: 8px;
    padding: 7px 14px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(0, 122, 61, 0.05);
}
.board-member-back:hover {
    background: #007A3D;
    color: #FFFFFF;
}
.board-member-tier {
    font-size: 0.85rem;
    color: #007A3D;
    font-weight: 700;
}
.board-member-profile-section {
    padding: 36px 0 72px;
    background: #F8F9FA;
}
.board-member-profile {
    background: #FFFFFF;
    border: 1px solid #dde2e8;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.board-member-profile-visual {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    border-bottom: 1px solid #dde2e8;
}
.board-member-profile-photo {
    background: #F3F4F6;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}
.board-member-profile-photo img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
}
.board-member-profile-heading {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.board-member-profile-role {
    color: #007A3D;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}
.board-member-profile-heading h1 {
    color: #007A3D;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1.4;
}
.board-member-profile-body {
    padding: 32px 36px 40px;
}
.board-member-profile-body h2 {
    color: #007A3D;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.board-member-bio {
    color: #333333;
    font-size: 1.02rem;
    line-height: 2;
}

.president-message-body h2 {
    color: #007A3D !important;
}
.president-message-text {
    color: #333333;
    font-size: 1.08rem;
    line-height: 2.1;
    text-align: justify;
    font-weight: 500;
}
.president-message-bio-link {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 122, 61, 0.15);
}
.president-message-bio-link .btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.tilt-card {
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    transform-style: preserve-3d;
    will-change: transform;
}

@media (max-width: 992px) {
    .contact-page-grid, .contact-map-row { grid-template-columns: 1fr; }
    .home-contact-grid { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .board-member-profile-visual { grid-template-columns: 1fr; }
    .board-member-profile-photo { min-height: 280px; padding: 16px; }
    .board-member-profile-heading { padding: 24px 22px; text-align: center; }
    .board-tier-leadership { max-width: 100%; }
    .board-pyramid-row {
        gap: 24px 28px;
    }
    .board-member-card--pyramid {
        flex-basis: 160px;
        max-width: 180px;
    }
    .board-member-card--pyramid.board-member-card--president {
        flex-basis: 200px;
        max-width: 220px;
    }
    .board-member-card--pyramid .board-member-photo {
        width: 170px;
        height: 170px;
        max-width: 170px;
    }
    .board-member-card--pyramid.board-member-card--president .board-member-photo {
        width: 200px;
        height: 200px;
        max-width: 200px;
    }
}

/* Corporate membership form */
.pricing-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin-inline: auto;
    gap: 32px;
}
.corp-form-title {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.35);
}
.corp-form-title h2 {
    color: #007A3D;
    font-size: 1.35rem;
    margin: 0 0 6px;
}
.corp-form-title p {
    color: #666;
    font-size: 0.88rem;
    margin: 0;
}
.form-section-block {
    border: none;
    margin: 0 0 28px;
    padding: 0;
}
.form-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007A3D;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 16px;
    padding: 0;
    width: 100%;
}
.form-section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #007A3D;
    color: #fff;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.form-section-note {
    color: #666;
    font-size: 0.86rem;
    line-height: 1.7;
    margin: -4px 0 12px;
}
.supporting-docs-uploads {
    display: grid;
    gap: 18px;
}
.supporting-doc-file-field .input-file-simple,
.supporting-doc-text-field textarea {
    width: 100%;
}
.supporting-doc-file-field .field-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #777;
}
.field-optional {
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
}
.form-subsection-title {
    color: #007A3D;
    font-size: 0.95rem;
    margin: 8px 0 12px;
    font-weight: 700;
}
.regular-subtype-picker {
    margin-bottom: 28px;
    padding: 22px;
    background: rgba(0, 122, 61, 0.04);
    border: 1px solid rgba(0, 122, 61, 0.15);
    border-radius: 12px;
}
.regular-subtype-picker h3 {
    font-size: 1.05rem;
    color: #007A3D;
    margin-bottom: 16px;
}
.join-form-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 14px 18px;
    background: #f8f9fa;
    border: 1px solid #dde2e8;
    border-radius: 10px;
    color: #222;
}
.join-form-plan-price strong {
    font-size: 1.5rem;
    color: #007A3D;
}
.join-form-plan-price em {
    color: #666;
    font-style: normal;
    font-size: 0.9rem;
}
.membership-panel[hidden] {
    display: none !important;
}
.membership-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.membership-type-option {
    cursor: pointer;
}
.membership-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.membership-type-card {
    display: block;
    border: 1.5px solid #dde2e8;
    border-radius: 12px;
    padding: 16px;
    background: #FAFBFC;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.membership-type-card strong {
    display: block;
    color: #007A3D;
    margin-bottom: 6px;
}
.membership-type-card em {
    font-style: normal;
    color: #007A3D;
    font-weight: 700;
    font-size: 0.9rem;
}
.membership-type-option input:checked + .membership-type-card {
    border-color: #007A3D;
    background: rgba(0, 122, 61, 0.06);
    box-shadow: 0 0 0 1px rgba(0, 122, 61, 0.15);
}
.membership-type-option.is-premium input:checked + .membership-type-card {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.08);
}
.premium-committees {
    display: none;
    margin-top: 8px;
}
.declaration-box {
    background: #F8F9FA;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 16px;
    margin: 12px 0 18px;
    color: #444;
    font-size: 0.88rem;
    line-height: 1.8;
}
.declaration-check {
    margin-top: 8px;
    font-weight: 600;
}
.contact-person-block {
    margin-bottom: 8px;
}
@media (max-width: 768px) {
    .pricing-grid-two,
    .membership-type-options {
        grid-template-columns: 1fr;
    }
    .membership-form {
        padding: 22px 18px 28px;
    }
    .membership-form .form-grid,
    .membership-form .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Section themes: one solid color per section ─── */
.navbar-dark .logo-title,
.navbar-dark .logo-sub { color: #007A3D !important; }
.navbar-dark .nav-toggle span { background: #007A3D; }

.section-header h2 { color: #007A3D !important; }

.about-intro-section .about-intro-text h2,
.about-intro-section .section-label,
.invest-section .section-header h2,
.goals-section .section-header h2,
.sectors-section .section-header h2,
.logo-slider-partners .logo-slider-header h2 { color: #007A3D !important; }
.logo-slider-partners .logo-slider-accent { background: #007A3D !important; }

.invest-section .about-block-card:hover {
    box-shadow: 0 16px 40px rgba(0, 122, 61, 0.18);
}

.goals-section .about-block-card { border-color: #007A3D; }
.goals-section .about-block-card-image { border-bottom-color: #007A3D; }

.sectors-section .sector-card { border-color: #007A3D; }
.sectors-section .sector-card h3,
.sectors-section .sector-card i { color: #007A3D; }

.pricing-section .pricing-card:not(.premium) { border-color: rgba(0, 122, 61, 0.2); }
.pricing-section .pricing-card:not(.premium) h3 { color: #007A3D !important; }
.pricing-section .pricing-card.featured { border-color: rgba(0, 122, 61, 0.3) !important; }
.pricing-section .pricing-card.premium h3 { color: #ffffff !important; }

.about-vm-grid .about-vm-card.vision-card { border-color: #007A3D !important; }
.about-vm-grid .about-vm-card.vision-card h2 { color: #007A3D !important; }
.about-vm-grid .about-vm-card.mission-card { border-color: #007A3D !important; }
.about-vm-grid .about-vm-card.mission-card h2 { color: #007A3D !important; }

/* Message section — dark gray accents */
.message-section .section-header h2 { color: #3D3D3D !important; }
.stakeholders-section .section-header h2,
.logo-slider-targets .logo-slider-header h2 { color: #3D3D3D !important; }
.logo-slider-targets .logo-slider-accent { background: #3D3D3D !important; }

.news-section-gray .section-header h2 { color: #007A3D !important; }
.news-section-gray .btn-primary {
    background: #007A3D !important;
    border-color: #007A3D !important;
}
.news-section-gray .btn-primary:hover { background: #005c2e !important; border-color: #005c2e !important; }

.board-home-preview .board-member-card,
.board-page-section .board-member-card:not(.board-member-card--pyramid) { border-top: 3px solid #007A3D; }
.board-home-preview .board-member-name,
.board-page-section .board-member-name,
.board-page-section .board-level-title { color: #007A3D !important; }
.board-home-preview .board-member-role,
.board-page-section .board-member-role { color: #005c2e !important; }
.board-home-preview .btn-primary,
.board-page-section .btn-primary {
    background: #007A3D !important;
    border-color: #007A3D !important;
}

.message-section .about-block-card { border-color: #3D3D3D; }
.message-section .about-block-card-image { border-bottom-color: #3D3D3D; }

.stakeholders-section .stakeholder-card { border-color: #3D3D3D; }
.stakeholders-section .stakeholder-card h3 { color: #3D3D3D !important; }
.stakeholders-section .stakeholder-icon {
    color: #3D3D3D !important;
    background: rgba(61, 61, 61, 0.1);
}

.themed-card h2,
.themed-card h3,
.contact-page-section .contact-item h4,
.contact-social-title { color: #007A3D !important; }

.scroll-top:hover { background: #007A3D !important; }
.hero-video-hero,
.hero-slider.cafsy-hero.hero-overlay:not(.hero-slider-clean) { background: #007A3D; }
.hero-overlay:not(.hero-slider-clean) .slide-overlay {
    background: linear-gradient(180deg, rgba(0, 122, 61, 0.45) 0%, rgba(0, 122, 61, 0.75) 100%);
}
