/* Base Variables and Reset */
:root {
    /* Color Palette */
    --primary: #9C1421; /* Crimson Red matching the cap */
    --primary-dark: #6C0E16;
    --secondary: #D4AF37; /* Gold accent */
    --secondary-light: #F3E5AB;
    --text-dark: #1A1A1A; /* Charcoal */
    --text-light: #5A5A5A;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 2rem;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(12px);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

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

.accent-text {
    color: var(--primary);
}

.accent {
    color: var(--secondary);
}

/* Typography Utilities */
.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(156, 20, 33, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.1rem 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    transition: transform var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 999;
    transition: var(--transition);
    padding-top: 6rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
    gap: 1.5rem;
}

.mobile-nav-links li a {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.mobile-nav-links .btn {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249,249,249,1) 0%, rgba(243,229,171,0.2) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(212, 175, 55, 0.15);
    color: #B8860B;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn i {
    margin-left: 0.5rem;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 520px;
    background: linear-gradient(45deg, #eee, #f5f5f5);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #999;
    border: 2px dashed #ccc;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Hero Footnote Card */
.hero-footnote-card {
    margin-top: -32px;
    position: relative;
    z-index: 5;
    width: 92%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 18px;
    padding: 1.1rem 1.4rem;
    box-shadow: 0 16px 36px rgba(11, 27, 61, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-footnote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(11, 27, 61, 0.24), 0 0 0 1px rgba(212, 175, 55, 0.7);
}

.hero-footnote-emblem {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-footnote-text {
    flex: 1;
}

.hero-footnote-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.hero-footnote-subtitle {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.hero-footnote-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    color: #8c6a0c;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Suggest user places image via background-image inline or img tag */
.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/samankwe.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 3;
    opacity: 0; /* Hidden by default until image exists */
}

/* A helper class to show image if they update the css */
.has-image .placeholder-content {
    display: none;
}
.has-image::before {
    opacity: 1;
}

.placeholder-content {
    padding: 2rem;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.decorative-element {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0) 70%);
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156,20,33,0.15) 0%, rgba(156,20,33,0) 70%);
    bottom: -100px;
    left: -100px;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-features li i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image-card {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-image-card .image-placeholder,
.about-image-card .small-placeholder {
    height: 100%;
    width: 100%;
    max-height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.small-placeholder {
    border-radius: 24px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    border-left: 4px solid var(--secondary);
}

.exp-years {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Initiatives Section */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.initiative-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.initiative-card:hover {
    transform: translateY(-10px);
}

.initiative-card:hover::before {
    height: 100%;
}

.initiative-card:hover .card-title,
.initiative-card:hover .card-desc,
.initiative-card:hover .card-link {
    color: var(--white);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.initiative-card:hover .card-icon {
    background-color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.card-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.card-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.initiative-card:hover .card-link i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 6rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(30deg);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    font-size: 1.75rem;
}

.footer-logo .logo-img {
    width: 76px;
    height: 76px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.footer-text {
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links li i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.footer-bottom {
    background-color: #111;
    padding: 1.5rem 0;
    text-align: center;
    color: #888;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.appear {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Active Nav State */
.nav-link.active::after, .mobile-link.active::after {
    width: 100%;
}
.mobile-link.active {
    color: var(--primary);
}

/* Dark BG Header Nav overrides (for subpages) */
.dark-bg-header .navbar:not(.scrolled) .logo {
    color: var(--white);
}
.dark-bg-header .navbar:not(.scrolled) .logo .accent {
    color: var(--secondary);
}
.dark-bg-header .navbar:not(.scrolled) .nav-links li a,
.dark-bg-header .navbar:not(.scrolled) .mobile-menu-btn {
    color: var(--white);
}
.dark-bg-header .navbar:not(.scrolled) .nav-links li a::after {
    background-color: var(--white);
}
.dark-bg-header .navbar:not(.scrolled) .nav-link.active::after {
    background-color: var(--secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-image-wrapper { height: 500px; }
    .about-container { gap: 2rem; }
}

@media (max-width: 900px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .initiatives-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; padding: 10px; } /* larger touch target */
    
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { height: auto; order: -1; margin-bottom: 1.5rem; } /* Image on top on mobile */
    .hero-image-wrapper .image-placeholder { height: 400px; }
    .shape-1, .shape-2 { display: none; }
    
    .about-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-content { order: 1; }
    .about-image-card { 
        order: 2; 
        position: relative !important;
        top: 0 !important;
        height: 420px; 
        max-width: 480px; 
        margin: 1.5rem auto 0 auto; 
    }
    .about-image-card .image-placeholder {
        height: 100% !important;
        max-height: 420px !important;
    }
    .experience-badge {
        bottom: -15px;
        left: 15px;
        padding: 0.9rem 1.25rem;
    }
    .exp-years {
        font-size: 2.2rem;
    }
    .exp-text {
        font-size: 0.9rem;
    }
    
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; margin-bottom: 0.5rem; }
    
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    
    :root {
        --section-padding: 4rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .page-title { font-size: 2.5rem !important; }
    .initiatives-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; }
    
    /* Increase touch targets for links/buttons */
    .btn { padding: 1rem 1.5rem; min-height: 48px; display: flex; align-items: center; justify-content: center; }
    .footer-links li a { padding: 0.5rem 0; display: inline-block; min-height: 44px; }
}

@media (max-width: 480px) {
    html { font-size: 14px; } /* scale down overall sizing */
    .hero-title { font-size: 2.2rem; }
    .hero-image-wrapper { height: auto; }
    .hero-image-wrapper .image-placeholder { height: 340px; }
    .about-image-card { 
        height: 360px; 
        max-width: 100%; 
        margin: 1.5rem auto 0 auto;
    }
    .about-image-card .image-placeholder {
        height: 100% !important;
        max-height: 360px !important;
    }
    .experience-badge {
        bottom: -12px;
        left: 12px;
        padding: 0.75rem 1rem;
    }
    .exp-years {
        font-size: 1.8rem;
    }
    .exp-text {
        font-size: 0.8rem;
    }
    
    :root {
        --section-padding: 3rem 1.25rem;
    }
    
    .logo-img { width: 50px; height: 50px; }
    .logo-text { font-size: 1.35rem; }
    .hero-footnote-card {
        margin-top: -24px;
        width: 95%;
        padding: 0.9rem 1.1rem;
    }
    .hero-footnote-title { font-size: 1.15rem; }
    .hero-footnote-subtitle { font-size: 0.78rem; }
    
    /* Mobile Menu refinements */
    .mobile-menu { width: 100%; /* full width on tiny screens */ padding-top: 5rem; }
    .mobile-nav-links li a { padding: 1rem 0; font-size: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
}

@media (max-width: 375px) {
    .hero-title { font-size: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .btn-large { padding: 0.8rem 1.2rem; }
    .hero-image-wrapper .image-placeholder { height: 300px; }
    .about-image-card { height: 320px; }
    .about-image-card .image-placeholder {
        height: 100% !important;
        max-height: 320px !important;
    }
}

/* ==========================================================================
   Executive Profiling & Business Ventures Components
   ========================================================================== */

/* Business Ventures Grid */
.business-ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 1024px) {
    .business-ventures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .business-ventures-grid {
        grid-template-columns: 1fr;
    }
}

.venture-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
    border: 1px solid rgba(11, 27, 61, 0.08);
    box-shadow: 0 10px 30px rgba(11, 27, 61, 0.05);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 27, 61, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.venture-card:hover::before {
    opacity: 1;
}

.venture-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.08) 0%, rgba(212, 175, 55, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.venture-card:hover .venture-icon-wrap {
    transform: scale(1.08) rotate(4deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.venture-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(212, 175, 55, 0.12);
    color: #8c6a0c;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    width: fit-content;
}

.venture-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.venture-description {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.venture-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1.25rem;
}

.venture-highlights li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.venture-highlights li i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* Press & Media Feed Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.press-feed-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.press-feed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 27, 61, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
}

.press-feed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.9rem;
}

.press-feed-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.press-feed-snippet {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.press-feed-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #888;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1rem;
}

.press-feed-source {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Executive Biography Styling */
.executive-heritage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 240, 0.95));
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(11, 27, 61, 0.08);
    margin-bottom: 3rem;
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.heritage-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.8rem;
}

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

.heritage-item {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
}

.heritage-item-label {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.heritage-item-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Contact Form Alerts */
.form-status-alert {
    display: none;
    padding: 1rem 1.3rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.form-status-alert.success {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1.5px solid #28a745;
    color: #155724;
}

.form-status-alert.error {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1.5px solid #dc3545;
    color: #721c24;
}
