/* ============================================================
   MANZI GROUP — Global Stylesheet
   Premium Corporate Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1f;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- COLOR PALETTE --- */
:root {
    --dark-bg: #0A0A0F;
    --dark-secondary: #111118;
    --dark-tertiary: #1a1a22;
    --light-bg: #F8F7F4;
    --cream-bg: #FAF9F6;
    --gold: #C5A55A;
    --gold-light: #D4B96E;
    --gold-dark: #A68140;
    --text-dark: #1a1a1f;
    --text-light: #ffffff;
    --text-muted: #999;
    --border: #E8E6E0;
    --border-gold: rgba(197, 165, 90, 0.2);
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 165, 90, 0.08);
    transition: background 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.85; }

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.active {
    color: var(--gold);
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: 0.3s;
}

/* --- PAGE HERO BANNERS --- */
.page-hero {
    padding-top: 72px;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.page-hero.hero-dark {
    background: var(--dark-bg);
}
.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.page-hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px 65px;
}
.page-hero .hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 500;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.page-hero h1.text-white { color: #fff; }
.page-hero h1.text-dark { color: var(--text-dark); }

/* --- HOME HERO (full viewport) --- */
.home-hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,10,15,0.82) 0%, rgba(17,17,24,0.88) 100%),
                url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center/cover no-repeat;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197,165,90,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(40px) rotate(2deg); }
}
.home-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
}
.home-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 74px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.home-hero .subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.6;
}
.hero-cta { display: inline-flex; gap: 20px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- BUTTONS --- */
.btn {
    padding: 16px 42px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(197,165,90,0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* --- STATS BAR --- */
.stats-bar {
    background: var(--dark-secondary);
    border-bottom: 1px solid var(--border-gold);
}
.stats-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- SECTIONS --- */
.section {
    padding: 110px 50px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-full {
    padding: 110px 50px;
    max-width: 100%;
}
.section-dark-bg { background: var(--dark-bg); color: var(--text-light); }
.section-light-bg { background: var(--light-bg); color: var(--text-dark); }
.section-cream-bg { background: var(--cream-bg); color: var(--text-dark); }
.section-white-bg { background: #fff; color: var(--text-dark); }

.section h2, .section-full h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- PILLARS (What We Do) --- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 70px;
}
.pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--text-dark);
}
.section-dark-bg .pillar h3 { color: var(--gold); }
.pillar p {
    font-size: 15px;
    line-height: 1.85;
    color: #666;
}
.section-dark-bg .pillar p { color: rgba(255,255,255,0.7); }
.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(197,165,90,0.15);
    margin-bottom: 20px;
    line-height: 1;
}

/* --- CHAIRMAN QUOTE --- */
.chairman-block {
    background: rgba(197,165,90,0.06);
    border-left: 4px solid var(--gold);
    padding: 55px 60px;
    max-width: 850px;
    margin: 0 auto;
}
.section-dark-bg .chairman-block {
    background: rgba(197,165,90,0.08);
}
.chairman-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.7;
}
.chairman-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}
.section-dark-bg .chairman-name { color: #fff; }
.chairman-title-text {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* --- CARD GRID --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}
.card {
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    background: #fff;
}
.section-dark-bg .card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-gold);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--gold);
}
.section-dark-bg .card:hover {
    background: rgba(197,165,90,0.08);
    box-shadow: 0 20px 50px rgba(197,165,90,0.1);
}
.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body {
    padding: 32px 36px 36px;
}
.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}
.section-dark-bg .card h3 { color: var(--gold); }
.card p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}
.section-dark-bg .card p { color: rgba(255,255,255,0.7); }
.card-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-top: 18px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}
.card-link::after { content: ' \2192'; }
.card-link:hover { color: var(--gold-dark); }

/* --- VALUES GRID --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}
.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.section-dark-bg .value-item h4 { color: var(--gold); }
.value-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}
.section-dark-bg .value-item p { color: rgba(255,255,255,0.7); }

/* --- SECTOR GROUPS (Companies Page) --- */
.sector-group { margin-bottom: 100px; }
.sector-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}
.sector-header-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 18px;
}
.section-dark-bg .sector-header-content h3 { color: var(--gold); }
.sector-header-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #777;
}
.section-dark-bg .sector-header-content p { color: rgba(255,255,255,0.7); }
.sector-header-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}
.sector-header-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,165,90,0.1), transparent);
}
.sector-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- COMPANY CARDS --- */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.company-card {
    background: #fff;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.section-dark-bg .company-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-gold);
}
.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
}
.company-type {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
}
.company-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.section-dark-bg .company-card h4 { color: var(--gold); }
.company-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

/* --- TABS (Region Filter) --- */
.tabs {
    display: flex;
    gap: 35px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
    justify-content: center;
    padding-bottom: 0;
}
.section-dark-bg .tabs { border-bottom-color: var(--border-gold); }
.tab-btn {
    background: none;
    border: none;
    padding: 16px 0;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--gold); }

/* --- REGION SECTIONS (Global Presence) --- */
.region-section {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.region-section.reverse { direction: rtl; }
.region-section.reverse > * { direction: ltr; }
.region-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}
.region-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,165,90,0.08), transparent);
}
.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.region-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 22px;
    color: var(--gold);
}
.region-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.75);
}
.entities-list { list-style: none; }
.entities-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-gold);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.entities-list li:last-child { border-bottom: none; }

/* --- FOUNDATION PILLARS --- */
.foundation-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}
.foundation-pillar {
    padding: 42px;
    background: #fff;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.section-dark-bg .foundation-pillar {
    background: rgba(255,255,255,0.03);
    border-color: var(--border-gold);
}
.foundation-pillar:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.foundation-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 16px;
}
.foundation-pillar p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}
.section-dark-bg .foundation-pillar p { color: rgba(255,255,255,0.7); }

/* --- INITIATIVES --- */
.initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 50px;
}
.initiative-card {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.initiative-card:hover { border-color: var(--gold); }
.initiative-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.initiative-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- LEADERSHIP --- */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 70px;
}
.leadership-profile h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 8px;
    color: var(--gold);
}
.leadership-title-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.section-light-bg .leadership-title-text { color: var(--text-muted); }
.leadership-bio {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}
.section-light-bg .leadership-bio { color: #666; }
.roles-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}
.roles-table th, .roles-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid var(--border-gold);
}
.roles-table th {
    background: rgba(197,165,90,0.08);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}
.roles-table td { color: rgba(255,255,255,0.8); }
.section-light-bg .roles-table td { color: #666; }
.section-light-bg .roles-table th { background: var(--cream-bg); color: var(--text-dark); }
.section-light-bg .roles-table th, .section-light-bg .roles-table td {
    border-bottom-color: var(--border);
}
.leadership-image-block {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, rgba(197,165,90,0.15), rgba(10,10,15,0.9)),
                url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leadership-initials {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.6;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 80px;
}
.contact-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.contact-block p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-muted);
}
.contact-block strong { color: var(--text-dark); font-weight: 600; }
.contact-form {
    max-width: 620px;
    margin: 0 auto;
}
.form-group { margin-bottom: 28px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.section-dark-bg .form-group label { color: rgba(255,255,255,0.8); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.section-dark-bg .form-group input,
.section-dark-bg .form-group textarea,
.section-dark-bg .form-group select {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-gold);
    color: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group.checkbox input { width: auto; }
.form-group.checkbox label {
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    font-size: 13px;
    font-weight: 400;
}

/* --- FOOTER --- */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    border-top: 1px solid var(--border-gold);
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 40px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    margin-bottom: 22px;
    color: var(--gold);
}
.footer-section a,
.footer-section p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-section a:hover { color: var(--gold); }
.footer-divider {
    height: 1px;
    background: var(--border-gold);
    margin-bottom: 30px;
}
.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3px;
}

/* --- COMPANY PROFILE (Rich format like Blackstone) --- */
.company-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2px;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
}
.company-profile:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: var(--gold);
}
.section-dark-bg .company-profile {
    background: rgba(255,255,255,0.02);
    border-color: var(--border-gold);
}
.section-dark-bg .company-profile:hover {
    background: rgba(197,165,90,0.04);
    box-shadow: 0 20px 60px rgba(197,165,90,0.08);
}
.company-profile.reverse { direction: rtl; }
.company-profile.reverse > * { direction: ltr; }
.company-profile-image {
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}
.company-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.company-profile:hover .company-profile-image img { transform: scale(1.04); }
.company-profile-content {
    padding: 50px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.company-profile-label {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 14px;
}
.company-profile-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.section-dark-bg .company-profile-content h3 { color: #fff; }
.company-profile-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}
.company-profile-content p.description {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 25px;
}
.section-dark-bg .company-profile-content p.description { color: rgba(255,255,255,0.75); }
.company-profile-services {
    list-style: none;
    margin-bottom: 25px;
}
.company-profile-services li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.company-profile-services li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--gold);
}
.section-dark-bg .company-profile-services li { color: rgba(255,255,255,0.65); }
.company-profile-stat {
    display: flex;
    gap: 40px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.section-dark-bg .company-profile-stat { border-top-color: var(--border-gold); }
.company-profile-stat div strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 2px;
}
.company-profile-stat div span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* --- VISIT WEBSITE LINK --- */
.company-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}
.company-profile-link:hover {
    background: var(--gold);
    color: var(--dark-bg);
}
.company-profile-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.company-profile-link:hover svg {
    transform: translateX(3px);
}

/* --- TRUST BAR --- */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 35px 50px;
    background: var(--cream-bg);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.trust-item {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.trust-item strong {
    color: var(--text-dark);
}

/* --- SCROLL ANIMATIONS --- */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .pillars { grid-template-columns: 1fr; gap: 40px; }
    .sector-header { grid-template-columns: 1fr; }
    .region-section, .region-section.reverse { grid-template-columns: 1fr; }
    .leadership-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .initiatives-grid { grid-template-columns: 1fr; }
    .company-profile, .company-profile.reverse { grid-template-columns: 1fr; direction: ltr; }
    .company-profile-image { min-height: 250px; }
    .company-profile-content { padding: 35px 40px; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--dark-secondary);
        padding: 25px 30px;
        gap: 18px;
        border-bottom: 1px solid var(--border-gold);
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
    .nav-container { padding: 0 25px; }

    .home-hero h1 { font-size: 44px; }
    .home-hero .subtitle { font-size: 16px; }
    .hero-cta { flex-direction: column; align-items: center; width: 100%; }
    .btn { width: 100%; text-align: center; }

    .page-hero h1 { font-size: 38px; }
    .page-hero .hero-inner { padding: 0 25px 40px; }

    .section, .section-full { padding: 70px 25px; }
    .section h2, .section-full h2 { font-size: 34px; }

    .card-grid { grid-template-columns: 1fr; }
    .stats-bar-inner { grid-template-columns: 1fr 1fr; padding: 40px 25px; }
    .stat-number { font-size: 38px; }

    .tabs { gap: 15px; flex-wrap: wrap; }
    .tab-btn { font-size: 11px; padding: 12px 0; }

    .footer-content { grid-template-columns: 1fr; gap: 35px; }
    .footer-inner { padding: 50px 25px 30px; }
}

@media (max-width: 480px) {
    .home-hero h1 { font-size: 34px; }
    .page-hero h1 { font-size: 30px; }
    .section h2, .section-full h2 { font-size: 28px; }
    .stats-bar-inner { grid-template-columns: 1fr; }
}
