/* =============================================================================
   styles.css — ceo.grouperms.com
   Personal branding site for Modeste AGONNOUDE
   Version: 2.1.0 | Updated: April 2026
   ============================================================================= */

/* =============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
    /* Brand — shared with grouperms.com */
    --primary:        #0a2540;
    --primary-light:  #1a3a5c;
    --secondary:      #0066cc;
    --accent:         #f5a623;
    --accent-dark:    #e8920a;

    /* Personal branding palette (ceo.grouperms.com) */
    --ink:            #0d1b2a;
    --gold:           #c9903a;
    --gold-lt:        #e8b56a;
    --cream:          #faf8f4;
    --mid:            #4a5568;
    --line:           rgba(201, 144, 58, 0.25);

    /* Neutrals */
    --dark:           #1a2a3a;
    --light:          #f8f9fa;
    --gray:           #6c757d;
    --white:          #ffffff;
    --border:         #e9ecef;

    /* Status */
    --success:        #28a745;
    --text:           #333333;
}


/* =============================================================================
   2. RESET & BASE
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--cream);
}

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

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

ul { list-style: none; }


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

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

h1 { font-size: 3rem;    letter-spacing: -0.02em; }
h2 { font-size: 2rem;    letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

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

/* Playfair Display utility (used in index.html headings) */
.font-display {
    font-family: 'Playfair Display', serif;
}


/* =============================================================================
   4. LAYOUT
   ============================================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}


/* =============================================================================
   5. BUTTONS
   ============================================================================= */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    font-family: inherit;
}

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

.btn-secondary {
    background: var(--accent);
    color: var(--primary);
}
.btn-secondary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero buttons (used in index.html) */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}
.btn-hero-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Newsletter button */
.btn-newsletter {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}
.btn-newsletter:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-newsletter:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}


/* =============================================================================
   6. HEADER
   ============================================================================= */

header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-icon .logo-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    display: block;
    white-space: nowrap;
}

.logo-slogan {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav ul li a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    text-decoration: none;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    border-color: var(--gold);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.lang-btn img {
    width: 22px;
    height: auto;
    border-radius: 2px;
    display: block;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 4px;
}


/* =============================================================================
   7. BREADCRUMBS
   ============================================================================= */

.breadcrumbs {
    background: var(--light);
    padding: 12px 0;
    margin-top: 76px; /* header height offset */
    border-bottom: 1px solid var(--border);
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.breadcrumbs ol li + li::before {
    content: '›';
    margin-right: 8px;
}

.breadcrumbs a {
    color: var(--secondary);
}

.breadcrumbs a:hover {
    color: var(--gold);
}


/* =============================================================================
   8. PAGE HEADERS (inner pages)
   ============================================================================= */

.page-header {
    padding: 120px 0 64px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 12px;
}

/* Page-specific header tints */
.about-header    { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.advisory-header { background: linear-gradient(135deg, #0d1b2a 0%, #0a2540 100%); }
.blog-header     { background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%); }
.academy-header  { background: linear-gradient(135deg, #0d1b2a 0%, #162233 100%); }
.contact-header  { background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%); }


/* =============================================================================
   9. HOMEPAGE — INDEX.HTML SECTIONS
   (hero, proof strip, about strip, services, timeline, insights, cta)
   These are scoped to index.html via inline <style>; kept here as canonical ref.
   ============================================================================= */

/* Hero is fully self-contained in index.html inline styles.
   Only shared tokens (.btn-hero-*) are defined above in section 5. */


/* =============================================================================
   10. ADVISORY PAGE
   ============================================================================= */

.advisory-content {
    padding: 80px 0;
    background: var(--white);
}

.advisory-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.expertise-card {
    padding: 24px;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.expertise-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.expertise-list {
    list-style: none;
    margin: 24px 0;
}

.expertise-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.expertise-list li i {
    color: var(--success);
}

.engagement-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.model {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.model-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.advisor-card {
    background: var(--light);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border);
}

.advisor-card h3 {
    margin-bottom: 8px;
}

.advisor-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.advisor-logos span {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
}

.advisor-card .btn {
    display: block;
    width: 100%;
    margin-top: 12px;
}

/* Testimonials */
.testimonials {
    background: var(--cream);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    font-style: italic;
    color: var(--mid);
    line-height: 1.8;
}

.testimonial-card span {
    display: block;
    margin-top: 16px;
    font-weight: 600;
    font-style: normal;
    color: var(--ink);
}


/* =============================================================================
   11. ACADEMY PAGE
   ============================================================================= */

.academy-intro {
    background: var(--white);
    padding: 80px 0;
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.academy-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.2;
}

.academy-cta-buttons {
    margin-top: 32px;
}

.programs {
    background: var(--cream);
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.program-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.program-duration {
    display: inline-block;
    background: var(--light);
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 16px;
    color: var(--gray);
}

.academy-features {
    background: var(--white);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.academy-cta {
    background: var(--ink);
    padding: 80px 0;
}

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

.cta-box h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 32px;
}


/* =============================================================================
   12. ABOUT PAGE
   ============================================================================= */

.about-full {
    background: var(--white);
    padding: 80px 0;
}

.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.download-cv {
    margin-top: 24px;
    text-align: center;
}

.experience-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.experience-item:last-of-type {
    border-bottom: none;
}

.experience-item h3 {
    font-size: 1.05rem;
    color: var(--ink);
}

.experience-item .date {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.expertise-tags span {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Advisory roles on about page */
.advisory-roles {
    background: var(--cream);
    padding: 80px 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.role-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.role-card h3 {
    color: var(--gold);
}


/* =============================================================================
   13. BLOG PAGE
   ============================================================================= */

.blog-list {
    background: var(--white);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 36px;
}

.blog-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.blog-card h2 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.blog-date {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.read-more:hover { gap: 8px; }


/* =============================================================================
   14. CONTACT PAGE
   ============================================================================= */

.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-detail i {
    font-size: 1.3rem;
    color: var(--gold);
    width: 36px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail a {
    color: var(--secondary);
}

.contact-detail a:hover {
    color: var(--gold);
}

/* Contact form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,144,58,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 12px;
    font-size: 0.88rem;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--light);
}


/* =============================================================================
   15. FOOTER
   ============================================================================= */

footer {
    background: var(--ink);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Footer logo area */
.footer-logo {
    margin-bottom: 20px;
}

.logo-icon-small {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.logo-icon-small img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

/* Social links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

/* Footer contact strip */
.footer-contact {
    text-align: center;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact p {
    display: inline-block;
    margin: 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--gold);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--gold);
}

/* Newsletter form in footer */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: inherit;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    transition: border-color 0.3s, background 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Form messages */
.form-message {
    margin-top: 8px;
    font-size: 0.78rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.copyright a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.copyright a:hover {
    color: var(--gold);
}


/* =============================================================================
   16. PARTNER & TECHNOLOGY GRIDS
   ============================================================================= */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    width: 100%;
    text-align: center;
    cursor: default;
    transition: all 0.3s ease;
}

.partner-item img {
    max-height: 45px;
    max-width: 100px;
    width: auto;
}

.partner-item span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.partner-item:hover span {
    color: var(--gold);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 12px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item img {
    max-height: 40px;
    max-width: 80px;
    width: auto;
}

.tech-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
    border-color: var(--gold);
}

.tech-item:hover span {
    color: var(--gold);
}


/* =============================================================================
   17. RESPONSIVE
   ============================================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .header-container {
        gap: 16px;
    }

    nav ul {
        gap: 18px;
    }

    nav ul li a {
        font-size: 0.85rem;
    }

    .logo-title { font-size: 0.9rem; }
    .logo-slogan { font-size: 0.55rem; }
    .logo-icon { width: 40px; height: 40px; }

    .advisory-grid { grid-template-columns: 1fr; }
    .about-full-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .academy-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }

    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .roles-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        gap: 0;
        border-top: 1px solid var(--border);
    }

    nav ul li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
    }

    nav ul li a::after { display: none; }

    nav ul.show { display: flex; }

    .mobile-menu-btn { display: block; }

    .language-switcher { display: none; }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .page-header h1 { font-size: 2rem; }

    /* Grids → single column */
    .programs-grid,
    .features-grid,
    .roles-grid,
    .engagement-models,
    .expertise-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links { justify-content: center; }

    .newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-contact p {
        display: block;
        margin: 8px 0;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 12px;
    }
    .partner-item { padding: 14px 10px; }
    .partner-item img { max-height: 32px; }

    .technology-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    .tech-item { padding: 12px 8px; }
    .tech-item img { max-height: 28px; }

    /* Breadcrumbs */
    .breadcrumbs { margin-top: 72px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    section { padding: 56px 0; }
    .btn-large { padding: 14px 28px; font-size: 1rem; }
    .hero-cta, .cta-btns { flex-direction: column; align-items: stretch; }
}


/* =============================================================================
   18. FLOATING WHATSAPP BUTTON
   ============================================================================= */

#whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    overflow: hidden;
    max-width: 52px;
    transition: max-width 0.35s ease, box-shadow 0.3s ease;
}

#whatsapp-float:hover {
    max-width: 180px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.wa-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.wa-float-label {
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 600;
    padding-right: 18px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
    font-family: 'DM Sans', sans-serif;
}

#whatsapp-float:hover .wa-float-label {
    opacity: 1;
}

/* Pulse animation on first visit */
#whatsapp-float.wa-pulse {
    animation: wa-pulse-anim 1.2s ease-in-out infinite;
}

@keyframes wa-pulse-anim {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    #whatsapp-float {
        bottom: 20px;
        right: 16px;
        max-width: 48px;
    }

    #whatsapp-float:hover {
        max-width: 48px; /* no expand on mobile — tap is enough */
    }

    .wa-float-label { display: none; }

    .wa-float-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}


/* =============================================================================
   19. CONTACT PAGE — SOCIAL LINKS BLOCK
   ============================================================================= */

.contact-social {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.contact-social p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 14px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: 1rem;
    transition: all 0.25s ease;
    background: var(--white);
}

.contact-social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(201, 144, 58, 0.15);
}

/* Platform-specific hover colours */
.contact-social-links a[title="LinkedIn"]:hover      { border-color: #0077b5; color: #0077b5; box-shadow: 0 6px 16px rgba(0,119,181,0.15); }
.contact-social-links a[title="WhatsApp"]:hover      { border-color: #25d366; color: #25d366; box-shadow: 0 6px 16px rgba(37,211,102,0.15); }
.contact-social-links a[title="Facebook"]:hover      { border-color: #1877f2; color: #1877f2; box-shadow: 0 6px 16px rgba(24,119,242,0.15); }
.contact-social-links a[title="Instagram"]:hover     { border-color: #e1306c; color: #e1306c; box-shadow: 0 6px 16px rgba(225,48,108,0.15); }
.contact-social-links a[title="X / Twitter"]:hover   { border-color: #000;    color: #000;    box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.contact-social-links a[title="YouTube"]:hover       { border-color: #ff0000; color: #ff0000; box-shadow: 0 6px 16px rgba(255,0,0,0.15); }
