/* Africa Global Advisory Group - Modern TBI-Inspired Design */

/* CSS Variables */
:root {
    --primary-dark: #1a1a2e;
    --primary-blue: #0f4761;
    --accent-gold: #c9a227;
    --accent-gold-light: #d4b84a;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --bg-light: #f7f7f5;
    --bg-white: #ffffff;
    --bg-dark: #0a0a0a;
    --transition: all 0.3s ease;

    /* Category colors - TBI style */
    --cat-governments: #2d5a7b;
    --cat-corporates: #7b5a2d;
    --cat-investors: #5a7b2d;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Typography - TBI Style */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
}

h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Eyebrow text - small uppercase labels */
.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   HEADER & NAVIGATION - Modern Minimal
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

header.scrolled .logo-text,
header.scrolled .nav-links a,
header.scrolled .dropdown-toggle {
    color: var(--text-dark);
}

header.scrolled .logo-text .main span {
    color: var(--accent-gold);
}

header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    position: absolute;
}

.logo-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-dark);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.logo-text {
    color: var(--text-light);
    transition: var(--transition);
}

.logo-text .main {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .main span {
    color: var(--accent-gold);
}

.logo-text .tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a,
.dropdown-toggle {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '';
    border: solid currentColor;
    border-width: 0 1.5px 1.5px 0;
    padding: 2px;
    transform: rotate(45deg);
    transition: var(--transition);
    margin-top: -2px;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION - Full Screen Video
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    padding: 0 4%;
    max-width: 900px;
}

.hero-content h1.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Short hero for inner pages */
.hero.hero-short {
    height: 65vh;
    min-height: 450px;
}

.hero.hero-short .hero-content h1.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

/* MAP Style Hero - Split content overlay */
.hero.hero-map {
    height: 85vh;
    min-height: 600px;
}

.hero-map-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 120px 5% 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-map-label {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #fff;
}

.hero-map-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

.hero-map-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.hero-map-text {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.hero-map-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.hero-map-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hero-map-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: flex-start;
    }

    .hero-map-content {
        padding: 120px 5% 60px;
    }

    .hero-map-text {
        border-left: 2px solid var(--accent-gold);
        padding-left: 1rem;
    }
}

/* ==========================================
   ANIMATED TEXT TICKER
   ========================================== */
.ticker-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow: hidden;
    width: 100%;
    z-index: 10;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    white-space: nowrap;
    padding: 0 1rem;
}

.ticker-separator {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 1rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   FEATURED SPLIT - MAP Style
   ========================================== */
.featured-split {
    display: flex;
    min-height: 700px;
}

.featured-split > * {
    flex: 1 1 50%;
    width: 50%;
}

.featured-split.narrow-image .featured-split-left {
    flex: 1;
}

.featured-split.narrow-image .featured-split-right {
    flex: 2;
}

.featured-split.reverse .featured-split-left {
    order: 2;
}

.featured-split.reverse .featured-split-right {
    order: 1;
}

.featured-split-left {
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
}

.featured-split-left > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.featured-split-stats {
    position: relative;
    z-index: 2;
    padding: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.featured-split-right {
    background: var(--primary-blue);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-split-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.featured-split-right h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.25;
}

.featured-split-right p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.featured-split-right p:last-child {
    margin-bottom: 0;
}

/* White background variant */
.featured-split-right.white-bg {
    background: #fff;
}

.featured-split-right.white-bg h2 {
    color: var(--primary-blue);
}

.featured-split-right.white-bg p {
    color: var(--text-dark);
}

.featured-split-right.white-bg .featured-split-label {
    color: var(--accent-gold);
}

/* ==========================================
   SCROLL DIVIDER BANNER
   ========================================== */
.scroll-divider {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a4a 100%);
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
}

.scroll-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 50%, var(--accent-gold) 100%);
}

.scroll-divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.scroll-divider-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
}


/* Hide title when using scroll indicator */
.sectors-section.no-title .section-label {
    display: none;
}

.sectors-section.no-title {
    padding-top: 2rem;
}

/* ==========================================
   TBI STYLE SPLIT SECTIONS
   ========================================== */
.tbi-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 520px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 5%;
    gap: 3rem;
}

.tbi-split.image-left {
    grid-template-columns: 1fr 2fr;
}

.tbi-split-text {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tbi-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.tbi-split-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.tbi-split-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.tbi-split-text p:last-child {
    margin-bottom: 0;
}

.tbi-split-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 4px;
    min-height: 600px;
}

.tbi-split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: grayscale(20%);
    will-change: transform;
}

@media (max-width: 900px) {
    .tbi-split,
    .tbi-split.image-left {
        grid-template-columns: 1fr;
        padding: 2rem 5%;
        gap: 2rem;
    }

    .tbi-split-text {
        padding: 1rem 0;
        order: 2;
    }

    .tbi-split-image {
        min-height: 300px;
        order: 1;
    }

    .tbi-split-image img {
        position: relative;
        height: auto;
        min-height: 300px;
    }
}

/* ==========================================
   LEADER SECTION - Subtle Editorial Profile
   ========================================== */
.leader-section {
    padding: 3rem 5%;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.leader-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.leader-image {
    flex-shrink: 0;
}

.leader-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(10%);
}

.leader-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.leader-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.leader-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

.leader-section.highlight {
    background: var(--primary-blue);
    padding: 4rem 5%;
}

.leader-section.highlight .leader-label {
    color: var(--accent-gold);
}

.leader-section.highlight .leader-text h2 {
    color: #fff;
}

.leader-section.highlight .leader-text p {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .leader-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .leader-image img {
        width: 70px;
        height: 70px;
    }
}

/* ==========================================
   COMBINED LEADER QUOTE SECTION
   ========================================== */
.leader-quote-section {
    background: #f5f0e8;
    padding: 2.5rem 5%;
}

.leader-quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.leader-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-blue);
    margin: 0 0 1.5rem 0;
    padding: 0;
    border: none;
}

.leader-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.leader-quote-section .leader-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.leader-info {
    text-align: left;
}

.leader-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0.15rem;
}

.leader-title {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
}

@media (max-width: 600px) {
    .leader-quote-section {
        padding: 3rem 5%;
    }

    .leader-quote {
        margin-bottom: 2rem;
    }

    .leader-profile {
        flex-direction: column;
        gap: 1rem;
    }

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

/* ==========================================
   PULL QUOTE SECTION - Editorial Typography
   ========================================== */
.pull-quote-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.pull-quote-section.dark {
    background: var(--primary-blue);
}

.pull-quote {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: var(--primary-blue);
    position: relative;
}

.pull-quote-section.dark .pull-quote {
    color: #fff;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ==========================================
   CONTENT SPLIT REVERSE - Blue Left, Image Right
   ========================================== */
.content-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.content-split-blue {
    background: var(--primary-blue);
    padding: 5rem 5rem 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-split-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.content-split-blue h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.25;
}

.content-split-blue p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-split-blue p:last-of-type {
    margin-bottom: 0;
}

/* Arrow Links - MAP Style */
.arrow-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.arrow-links-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.arrow-links-list {
    display: flex;
    flex-direction: column;
}

.arrow-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.arrow-link:hover {
    color: var(--accent-gold);
}

.arrow-line {
    position: relative;
    width: 30px;
    height: 2px;
    background: currentColor;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.arrow-link:hover .arrow-line {
    width: 40px;
}

.content-split-image-right {
    position: relative;
    overflow: hidden;
}

.content-split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   ABOUT INTRO - Text + Image Layout
   ========================================== */
.about-intro {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.about-intro-content .eyebrow {
    display: block;
    margin-bottom: 1.5rem;
}

.about-intro-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ==========================================
   INTRO SECTION - TBI Style Asymmetric
   ========================================== */
.intro-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding-top: 0.5rem;
}

.intro-content h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 700px;
}

/* Sectors List - Two Column */
.sectors-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 4rem;
    margin-top: 2rem;
    align-items: start;
}

.sector-column {
    display: flex;
    flex-direction: column;
}

.sector-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.sector-desc {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0.85;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.sector-column .sector-item:first-child .sector-desc {
    min-height: 4.8rem;
}

.sector-item:hover .sector-title {
    color: var(--primary-blue);
}


.sector-column ul {
    list-style: none;
}

.sector-column ul li {
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sector-column ul li:last-child {
    border-bottom: none;
}

/* ==========================================
   SERVICE CATEGORIES - Hover Reveal
   ========================================== */
.service-categories {
    margin-top: 3rem;
}

.service-category {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    cursor: pointer;
}

.service-category:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.category-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.category-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.service-category:hover .category-services {
    max-height: 500px;
    opacity: 1;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.service-category:hover .category-title {
    color: var(--primary-blue);
}

.service-category:hover .category-hint {
    opacity: 0;
}

.category-service {
    padding-right: 2rem;
}

.service-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .category-services {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-height: none;
        opacity: 1;
        margin-top: 1.5rem;
        padding-bottom: 1rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-hint {
        display: none;
    }

    .category-service {
        padding-right: 0;
    }
}

/* ==========================================
   THREE-UP SERVICE CARDS - TBI Style
   ========================================== */
.services-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.services-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.services-header .eyebrow {
    padding-top: 0.5rem;
}

.services-header h2 {
    color: var(--text-dark);
    margin: 0;
}

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

/* New service cards for homepage */
.service-card-new {
    display: block;
    background: var(--bg-white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card-new .service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-new .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-new:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-new .service-card-body {
    padding: 1.75rem;
}

.service-card-new .service-card-category {
    display: inline-block;
    position: static;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.service-card-new .service-card-category.cat-governments {
    background: var(--cat-governments);
}

.service-card-new .service-card-category.cat-corporates {
    background: var(--cat-corporates);
}

.service-card-new .service-card-category.cat-investors {
    background: var(--cat-investors);
}

.service-card-new h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card-new p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-new .service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-new:hover .service-card-link {
    color: var(--accent-gold);
}

.service-card-modern {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.05);
}

/* Old service-card-category for service-card-modern (inner pages) */
.service-card-modern .service-card-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: var(--cat-governments);
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
}

.service-card-modern .service-card-category.corporates {
    background: var(--cat-corporates);
}

.service-card-modern .service-card-category.investors {
    background: var(--cat-investors);
}

.service-card-content {
    padding: 1.75rem;
}

.service-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-card-link:hover {
    color: var(--accent-gold);
    gap: 0.75rem;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   MODEL SECTION - Split Layout with Gradient
   ========================================== */
.model-section {
    display: grid;
    grid-template-columns: 3fr 2fr;
    min-height: 400px;
}

.model-section.reverse {
    grid-template-columns: 2fr 3fr;
}

.model-image {
    position: relative;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-content {
    background: linear-gradient(to bottom, #f5f5f5 0%, #b0b0b0 50%, #707070 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-content .eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(80, 80, 80, 0.7);
    margin-bottom: 1.5rem;
}

.model-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.model-content p {
    color: #3a3a3a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.model-content .btn-secondary {
    color: #333;
}

/* Legacy full-width featured section */
.featured-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.featured-bg,
.featured-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.featured-bg img,
.featured-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    max-width: 700px;
}

.featured-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.featured-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   ABOUT SPLIT SECTION
   ========================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-split-content {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-split-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.about-split-subhead {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-split-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.about-split-body {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

.about-split-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-split-list {
    list-style: none;
}

.about-split-list li {
    margin-bottom: 0.75rem;
}

.about-split-list li a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
}

.about-split-list li a::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--text-light);
    transition: var(--transition);
}

.about-split-list li a:hover {
    color: var(--accent-gold);
}

.about-split-list li a:hover::before {
    width: 30px;
    background: var(--accent-gold);
}

.about-split-image {
    position: relative;
    overflow: hidden;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   COUNSEL SECTION - Statement Style
   ========================================== */
.counsel-section {
    background: var(--bg-white);
    padding: 10rem 0;
}

.counsel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.counsel-statement p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-dark);
}

.counsel-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.counsel-list ul {
    border-left: 2px solid var(--primary-blue);
    padding-left: 1.5rem;
}

.counsel-list li {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

/* ==========================================
   EXPANDING PANELS SECTION
   ========================================== */
.sectors-section {
    padding: 6rem 0 8rem;
    background: var(--bg-light);
    position: relative;
}

.sectors-section.with-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
    pointer-events: none;
}

.sectors-section .section-label {
    text-align: left;
    margin-bottom: 3rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.sectors-section .section-label h2 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.panels-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.panels-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.panels-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.expanding-panels {
    display: flex;
    gap: 16px;
    width: max-content;
}

.expanding-panels .exp-panel {
    flex: 0 0 calc((100vw - 160px - 32px) / 3);
    scroll-snap-align: start;
    transition: flex 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects - panels expand/contract */
.expanding-panels:hover .exp-panel {
    flex: 0 0 calc((100vw - 160px - 48px) / 4);
}

.expanding-panels:hover .exp-panel:hover {
    flex: 0 0 calc((100vw - 160px - 16px) / 2);
}

.panel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 48px;
    height: 48px;
    border: 2px solid var(--text-dark);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--text-dark);
}

.panel-nav-btn.panel-prev {
    left: 0.5rem;
}

.panel-nav-btn.panel-next {
    right: 0.5rem;
}

.panel-nav-btn:hover:not(:disabled) {
    background: var(--text-dark);
    color: white;
    transform: translateY(-100%) scale(1.08);
}

.panel-nav-btn:disabled {
    opacity: 0;
    visibility: hidden;
}

.panel-nav-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.exp-panel {
    cursor: pointer;
    overflow: hidden;
}

.exp-panel-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.exp-panel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.exp-panel img {
    position: absolute;
    height: 100%;
    width: 50vw;
    max-width: none;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    object-fit: cover;
}

.exp-panel-content {
    padding: 0 0.25rem;
    overflow: hidden;
}

.exp-panel-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exp-panel-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    color: var(--text-muted);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* Hover effects - reveal description text */
.exp-panel:hover .exp-panel-content p {
    max-height: 100px;
    opacity: 1;
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 8rem 0;
}

.values .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values .section-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.values .section-header h2 span {
    color: var(--accent-gold);
}

.values .section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.values-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.values-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--bg-dark);
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    background: var(--primary-blue);
    color: var(--text-light);
    text-align: center;
    padding: 8rem 0;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* ==========================================
   BUTTONS - Modern Pill Style
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

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

.btn-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.content-section {
    padding: 8rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-text h2 span {
    color: var(--accent-gold);
}

.content-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-text ul {
    margin: 1.5rem 0;
}

.content-text ul li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.content-image img {
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--accent-gold);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-gold);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ==========================================
   FOOTER - Modern Clean
   ========================================== */
footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-minimal .logo .logo-icon {
    background: var(--accent-gold);
}

.footer-minimal .logo .logo-icon::before {
    border-color: var(--primary-dark);
}

.footer-minimal .logo .logo-icon::after {
    background: var(--primary-dark);
}

.footer-minimal .logo .logo-text .main {
    color: var(--text-dark);
}

.footer-minimal .logo .logo-text .main span {
    color: var(--primary-blue);
}

.footer-minimal .logo .logo-text .tagline {
    color: var(--text-muted);
}

.footer-links-inline {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links-inline a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Legacy footer grid - keep for compatibility */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    background: var(--bg-light);
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-dark);
}

.contact-item-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-item-text p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15, 71, 97, 0.1);
}

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

.contact-form .btn {
    width: 100%;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .intro-grid,
    .services-header {
        grid-template-columns: 200px 1fr;
        gap: 3rem;
    }
}

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

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

    .counsel-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 0;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links > li > a,
    .nav-links > li > .dropdown-toggle {
        display: block;
        padding: 1rem 0;
        color: var(--text-light);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--text-light);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-toggle::after {
        display: none;
    }

    /* Override scrolled styles when mobile menu is open */
    header.scrolled .nav-links a,
    header.scrolled .nav-links .dropdown-toggle {
        color: var(--text-light);
    }

    .featured-split {
        flex-direction: column;
        min-height: auto;
    }

    .featured-split > * {
        flex: none;
        width: 100%;
    }

    .featured-split.reverse .featured-split-left,
    .featured-split.reverse .featured-split-right {
        order: unset;
    }

    .featured-split-left {
        min-height: 400px;
    }

    .featured-split-stats {
        padding: 2.5rem;
    }

    .stat-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.25rem 0;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-desc {
        font-size: 0.9rem;
    }

    .featured-split-right {
        padding: 3rem 2rem;
    }

    .content-split-reverse {
        grid-template-columns: 1fr;
    }

    .content-split-blue {
        padding: 3rem 2rem;
        order: 1;
    }

    .content-split-image-right {
        min-height: 350px;
        order: 2;
    }

    .intro-grid,
    .services-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-label,
    .services-header .eyebrow {
        padding-top: 0;
    }

    .sectors-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid-three,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-split-content {
        padding: 3rem 2rem;
    }

    .about-split-title {
        font-size: 2rem;
    }

    .model-section,
    .model-section.reverse {
        grid-template-columns: 1fr;
    }

    .model-content {
        padding: 2.5rem 2rem;
        order: 2;
    }

    .model-image {
        min-height: 300px;
        order: 1;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-intro-image img {
        height: 350px;
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-about .logo {
        justify-content: center;
    }

    .footer-minimal {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    /* Tablet/small: narrower panels */
    .expanding-panels {
        gap: 12px;
    }

    .expanding-panels .exp-panel {
        flex: 0 0 calc((100vw - 80px) / 2);
        min-width: 200px;
        max-width: 320px;
    }

    .expanding-panels:hover .exp-panel {
        flex: 0 0 calc((100vw - 80px) / 2.5);
        min-width: 180px;
    }

    .expanding-panels:hover .exp-panel:hover {
        flex: 0 0 calc((100vw - 80px) / 1.3);
        max-width: 450px;
    }

    .panels-wrapper {
        padding: 0 1rem;
    }

    .panel-nav-btn {
        width: 40px;
        height: 40px;
    }

    .exp-panel-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1.hero-title {
        font-size: 2rem;
    }

    .values-grid,
    .values-grid-3,
    .values-grid-4 {
        grid-template-columns: 1fr;
    }

    .expanding-panels {
        flex-direction: column;
        gap: 1.5rem;
        width: 100% !important;
        transform: none !important;
    }

    .expanding-panels .exp-panel {
        flex: none;
    }

    .exp-panel-image {
        height: 220px;
    }

    .exp-panel img {
        width: 100%;
        min-width: 100%;
    }

    .expanding-panels:hover .exp-panel,
    .expanding-panels:hover .exp-panel:hover {
        flex: none;
    }

    .exp-panel-content p {
        max-height: 100px;
        opacity: 1;
    }

    .panel-nav-btn {
        display: none !important;
    }

    .ticker-item span {
        font-size: 1rem;
    }

    .featured-content {
        padding: 2rem;
    }
}

/* Statement Section - MAP Style */
.statement-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.statement-content {
    margin-bottom: 3.5rem;
}

.statement-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.statement-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
}

.statement-headline span {
    display: block;
}

.statement-stats {
    display: flex;
    gap: 4rem;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 3rem;
}

.stat-block {
    flex: 1;
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.statement-body {
    max-width: 700px;
}

.statement-body p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .statement-section {
        padding: 3rem 0;
    }

    .statement-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .statement-content {
        margin-bottom: 2.5rem;
    }
}

/* Journey Section V3 - Editorial with Images */
.journey-section-v3 {
    background: var(--bg-white);
}

.journey-section-v3 .journey-intro {
    padding: 3rem 5% 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.journey-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.journey-section-v3 .journey-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 800px;
    font-weight: 400;
}

.journey-timeline-v3 {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-stage-v3 {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: stretch;
}

.timeline-stage-v3 .timeline-number {
    display: none;
}

.timeline-stage-v3 .timeline-content {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-image {
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.timeline-stage-v3:hover .timeline-image img {
    transform: scale(1.03);
}

.timeline-stage-v3 .timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.timeline-stage-v3 .timeline-content h3::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent-gold);
    margin-right: 12px;
    vertical-align: middle;
}

.timeline-stage-v3 .timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 450px;
}

@media (max-width: 900px) {
    .timeline-stage-v3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3rem 5%;
    }

    .timeline-image img {
        height: 180px;
    }

    .timeline-stage-v3 .timeline-number {
        font-size: 3rem;
        text-align: left;
    }

    .timeline-stage-v3 .timeline-content h3 {
        font-size: 1.4rem;
    }
}
