/* ===== CEO Page Hero ===== */

.page-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background:
        linear-gradient(135deg, rgba(15, 21, 50, 0.96) 0%, rgba(26, 34, 74, 0.88) 60%, rgba(211, 84, 0, 0.4) 100%),
        url('images/The C.E.O. Mr. Robert Lamptey at work in the farmland (Northern Region).jpeg') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

/* Decorative circles */
.page-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 35, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: text side */
.hero-text-side { text-align: left; }

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 22px;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.hero-breadcrumb a:hover { color: var(--white); }

.hero-breadcrumb i {
    font-size: 0.6rem;
    color: var(--accent);
}

.hero-breadcrumb span { color: var(--accent); }

.page-hero h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.page-hero h1 em {
    font-style: normal;
    color: #f5a47d;
}

.hero-role {
    display: inline-block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}

.page-hero .hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Principles badges */
.hero-principles {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-principle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-principle-badge i {
    color: #f5a47d;
    font-size: 0.9rem;
}

/* Right: quote card */
.hero-quote-side {
    display: flex;
    justify-content: center;
}

.hero-quote-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 18px;
    display: block;
}

.hero-quote-card blockquote {
    font-size: 1.15rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.hero-quote-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f5a47d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-principles { justify-content: center; }

    .hero-quote-side { display: none; }

    .page-hero h1 { font-size: 2.4rem; }
}


.ceo-section {
    background-color: var(--white);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.ceo-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ceo-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.ceo-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 34, 74, 0.85);
    color: var(--white);
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

.ceo-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.ceo-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
}

.ceo-text p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.core-principles {
    background-color: var(--white);
    padding: 25px;
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-sm);
    margin: 30px 0;
}

.core-principles strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.ceo-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ceo-gallery h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.ceo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ceo-gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ceo-gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
    
    .ceo-text h2 {
        font-size: 1.8rem;
    }
}
