/* BV Capital - Professional Carlyle Style Theme */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-light: #242424;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --accent-gold: #c4a35a;
    --accent-gold-light: #d4b978;
    --accent-gold-dark: #a68a45;
    --border-dark: #2a2a2a;
    --border-light: #333333;
    --gradient-start: rgba(10, 10, 10, 0);
    --gradient-end: rgba(10, 10, 10, 0.95);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Single font throughout - override Playfair Display */
h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .storytelling-title, .value-prop-info h2, .value-prop-item-text h3, .storytelling-item-text h3 {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Reduced content text sizes */
p, .card-description, .section-subtitle, .value-prop-content, .value-prop-item-content, .storytelling-item-text p {
    font-size: 14px;
    line-height: 1.65;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 550px;
}

/* Navigation - Compact Dropdown */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav > a {
    font-size: 10px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.3px;
    padding: 8px 5px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

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

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

.nav-dropdown a {
    text-transform: none !important;
}

#nav, #nav a, .nav, .nav a, .nav-dropdown, .nav-dropdown a, .nav-dropdown-content, .nav-dropdown-content a {
    text-transform: none !important;
    text-transform: capitalize !important;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-dark);
    min-width: 220px;
    padding: 15px 0;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content a {
    display: block;
    padding: 6px 18px;
    font-size: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-transform: none !important;
}

.nav-dropdown-content a:hover {
    background: var(--bg-tertiary);
    color: var(--accent-gold);
}

.nav-dropdown > a::after {
    content: ' ▾';
    font-size: 6px;
    margin-left: 2px;
    vertical-align: middle;
}

/* Single font throughout website */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.font-heading {
    font-family: 'Playfair Display', Georgia, serif;
}

.font-body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.8s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.8s ease forwards; }
.animate-slideInRight { animation: slideInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }

/* Stagger delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.hover-glow {
    position: relative;
}

.hover-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hover-glow:hover::after {
    opacity: 1;
    box-shadow: 0 0 30px rgba(196, 163, 90, 0.3);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: none;
    padding: 0 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav .active {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-primary);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--accent-gold-light);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

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

/* Section Styles */
.section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.section-dark {
    background: var(--bg-secondary);
}

.section-gray {
    background: var(--bg-tertiary);
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 700px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.7;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

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

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

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

/* Card Styles */
.card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    margin-bottom: 25px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--bg-primary);
}

.card-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

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

.stat-number {
    font-size: 56px;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-top: none;
}

.team-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-dark);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold);
}

/* Utility Classes */
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-right {text-align: right;}

.mt-0 {margin-top: 0;}
.mt-1 {margin-top: 10px;}
.mt-2 {margin-top: 20px;}
.mt-3 {margin-top: 30px;}
.mt-4 {margin-top: 40px;}
.mt-5 {margin-top: 50px;}

.mb-0 {margin-bottom: 0;}
.mb-1 {margin-bottom: 10px;}
.mb-2 {margin-bottom: 20px;}
.mb-3 {margin-bottom: 30px;}
.mb-4 {margin-bottom: 40px;}
.mb-5 {margin-bottom: 50px;}

.py-5 {padding-top: 50px; padding-bottom: 50px;}
.py-10 {padding-top: 100px; padding-bottom: 100px;}

.d-flex {display: flex;}
.d-grid {display: grid;}
.align-center {align-items: center;}
.justify-between {justify-content: space-between;}
.gap-3 {gap: 30px;}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .grid-4 {grid-template-columns: repeat(2, 1fr);}
    .grid-3 {grid-template-columns: repeat(2, 1fr);}
    .team-grid {grid-template-columns: repeat(2, 1fr);}
    .stats-grid {grid-template-columns: repeat(2, 1fr);}
    .footer-grid {grid-template-columns: repeat(2, 1fr);}
}

@media (max-width: 768px) {
    .container {padding: 0 20px;}
    .hero-title {font-size: 42px;}
    .section-title {font-size: 32px;}
    .grid-2, .grid-3, .grid-4 {grid-template-columns: 1fr;}
    .team-grid {grid-template-columns: 1fr;}
    .stats-grid {grid-template-columns: 1fr 1fr;}
    .footer-grid {grid-template-columns: 1fr;}
    .footer-bottom {flex-direction: column; gap: 20px; text-align: center;}
    
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Page Headers */
.page-header {
    padding: 180px 0 100px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-dark);
}

.page-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

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

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

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

/* Interactive Banner */
.interactive-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
}

.interactive-banner:hover {
    border-color: var(--accent-gold);
}

.interactive-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-banner:hover .interactive-banner-bg {
    opacity: 0.3;
}

.interactive-banner-content {
    position: relative;
    z-index: 1;
}

.interactive-banner-label {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.interactive-banner-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Content Box */
.content-box {
    padding: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-dark);
}

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

.content-image img {
    width: 100%;
    height: auto;
}

/* Tabs */
.tabs {
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 40px;
}

.tab-links {
    display: flex;
    gap: 40px;
}

.tab-link {
    padding: 20px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-link:hover,
.tab-link.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-with-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-with-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

/* Image Sections */
.image-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-parallax {
    background-attachment: fixed;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.75);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Image Card */
.image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-card-content {
    padding: 25px;
    background: var(--bg-card);
}

/* Full Width Image */
.full-width-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Team Images */
.team-member-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-member-image {
    transform: scale(1.05);
}

/* Interactive Banner with Image */
.interactive-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-banner:hover .interactive-banner-image {
    opacity: 0.35;
}

/* ========== PROFESSIONAL SECTIONS ========== */

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    padding: 50px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    margin-bottom: 30px;
    border-radius: 8px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--bg-primary);
}

.feature-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Numbers Section */
.numbers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    text-align: center;
}

.number-item {
    padding: 20px;
}

.number-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.number-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Process Steps */
.process-steps {
    position: relative;
    padding: 60px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.process-step {
    text-align: center;
    padding: 40px;
}

.process-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 30px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--accent-gold);
}

/* Testimonials */
.testimonial-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.testimonial-card {
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    position: relative;
}

.testimonial-quote {
    font-size: 120px;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent-gold);
    background: var(--bg-light);
}

.value-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

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

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.split-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content.dark {
    background: var(--bg-secondary);
}

.split-content.light {
    background: var(--bg-card);
}

/* Card Hover Effects */
.card-professional {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.card-professional:hover {
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-professional:hover::before {
    transform: scaleX(1);
}

/* Info Box */
.info-box {
    padding: 40px;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-gold);
    margin: 40px 0;
}

.info-box h3 {
    margin-bottom: 15px;
    color: var(--accent-gold);
}

/* Quote Block */
.quote-block {
    padding: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-dark);
    position: relative;
    margin: 50px 0;
}

.quote-block blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-block cite {
    font-size: 14px;
    color: var(--accent-gold);
    font-style: normal;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.stats-bar-item {
    padding: 40px;
    text-align: center;
    border-right: 1px solid var(--border-dark);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-item .stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.image-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.image-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-gallery-item:hover img {
    transform: scale(1.15);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(196, 163, 90, 0.5);
}

/* ===== CARLYLE STORYTELLING STYLE ===== */
.storytelling-section {
    position: relative;
    padding: 120px 0;
    background: var(--bg-primary);
}

.storytelling-section.with-bg {
    background-image: url('images/new-home-image-1920x1276.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.storytelling-section.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%);
}

.storytelling-section .container {
    position: relative;
    z-index: 1;
}

.storytelling-eyebrow {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.storytelling-title {
    font-size: 42px;
    margin-bottom: 60px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
}

.storytelling-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.storytelling-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.storytelling-item:hover {
    transform: translateY(-5px);
}

.storytelling-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 3/4;
}

.storytelling-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.storytelling-item:hover .storytelling-img img {
    transform: scale(1.05);
}

.storytelling-slide-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    color: var(--accent-gold);
    opacity: 0.5;
    line-height: 1;
}

.storytelling-item-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}

.storytelling-item-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

/* Value Prop Section - Dark Blue */
.value-prop-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.value-prop-section.dark {
    background: #0d1b2a;
}

.value-prop-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: flex-start;
}

.value-prop-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-family: 'Playfair Display', Georgia, serif;
}

.value-prop-content {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.value-prop-items {
    display: grid;
    gap: 30px;
}

.value-prop-item {
    display: flex;
    gap: 30px;
    padding: 35px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-prop-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent-gold);
}

.value-prop-item-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
}

.value-prop-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-prop-item-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Playfair Display', Georgia, serif;
}

.value-prop-item-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.value-prop-item-cta a {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .storytelling-carousel { grid-template-columns: repeat(2, 1fr); }
    .value-prop-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .storytelling-carousel { grid-template-columns: 1fr; }
    .storytelling-title { font-size: 32px; }
    .storytelling-item-text p { max-width: 100%; }
    .value-prop-item { flex-direction: column; gap: 20px; }
}

/* Interactive Banner Background */
.interactive-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
}

.interactive-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.interactive-banner:hover .interactive-banner-bg {
    opacity: 0.4;
}

.interactive-banner-content {
    position: relative;
    z-index: 1;
}

.interactive-banner-label {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.interactive-banner-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Hero styling for new theme */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}