.leader-image .leader-photo { height: 280px; width: 100%; object-fit: cover; border-radius: 12px; }
.leader-image { overflow: hidden; border-radius: 12px; }
/* Magazine grid enhancements */
.insights-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.insights-search input {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    width: 260px;
}

.insights-grid.magazine {
    grid-auto-rows: 1fr;
}

.insight-card .insight-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.insight-card:hover .insight-thumb {
    transform: scale(1.06);
}

.insight-body { padding: 1.25rem 1.25rem 1.5rem; }
.insight-body h3 { color:#87001D; margin: .5rem 0 .25rem; font-size:1.15rem; }
.insight-body p { color:#555; font-size:.95rem; }
.insight-tag { display:inline-block; background:#87001D; color:#FFF1DE; padding:.25rem .6rem; border-radius:999px; font-size:.75rem; font-weight:600; }

.insight-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #FFF1DE;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.insight-card:hover .insight-overlay { opacity: 1; }

@media (max-width:768px) {
    .insights-search input { width: 100%; }
    .insights-controls { justify-content: center; }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF1DE;
}

/* Prevent page-level horizontal scroll on mobile due to overflowing components */
html, body { overflow-x: hidden; }

/* Design tokens */
:root {
    --brand-primary: #721627; /* updated brand maroon */
    --brand-primary-dark: #5e0d1b;
    --brand-primary-rgb: 114, 22, 39; /* updated RGB */
    --brand-accent: #D9B166; /* soft gold */
    --surface: #ffffff;
    --page-bg: #FFF1DE;
    --text-strong: #2b2b2b;
    --brand-tint: rgba(114, 22, 39, 0.64); /* slight transparency */
    --brand-tint-strong: rgba(114, 22, 39, 0.72); /* slight transparency */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 241, 222, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(135, 0, 29, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    column-gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-logo .logo-img { height: 40px; width: auto; display: block; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    margin-left: clamp(12px, 2.5vw, 40px);
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #87001D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #87001D;
    transition: width 0.3s ease;
}

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

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #87001D;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 100px 0 30px;
    background: #121214;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: clip;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr; /* single column layout */
    gap: 2.5rem;
    align-items: center;
}

/* Hero carousel slides */
.hero-content { position: relative; width: 100%; }
.hero-row { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 2.5rem; min-height: clamp(260px, 34vw, 460px); }

.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: #FFF1DE;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left; /* left-justify heading */
    grid-column: 1;
}

.hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: right; /* right-justify subtext */
}

/* Ensure right column copy doesn't collapse and hugs the right edge neatly */
.hero-row .hero-subtitle { justify-self: end; max-width: 38ch; }

/* Mobile: stack hero title and subtext cleanly */
@media (max-width: 768px) {
    .hero-row { grid-template-columns: 1fr; gap: 0.75rem; min-height: auto; }
    .hero-row h1 { text-align: left; }
    .hero-row .hero-subtitle { text-align: left; justify-self: start; max-width: 100%; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #87001D;
    color: white;
}

.btn-primary:hover {
    background: #6a0016;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(135, 0, 29, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #87001D;
    border-color: #87001D;
}

.btn-secondary:hover {
    background: #87001D;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #87001D, #a30024);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(135, 0, 29, 0.2);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-10px);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.75);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135,0,29,0.12);
    backdrop-filter: saturate(120%) blur(6px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #87001D;
    box-shadow: 0 15px 30px rgba(135, 0, 29, 0.1);
}

.feature-icon {
    display: none;
}

.feature-card h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: #121214;
    color: white;
    position: relative;
}

.stats::after { content: none; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats .stat-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 24px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFF1DE;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #FFF1DE;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #121214;
    color: #f3f3f3;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before { content: none; }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFF1DE;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    color: #87001D;
}

.footer-logo .logo-img {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.stats-logo,
.signup-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-logo .logo-img-inverted,
.signup-logo .logo-img-inverted {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: #FFF1DE;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D9B166;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #87001D;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    text-align: center;
    color: #bdbdbd;
}

/* Premium footer disclosures */
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    margin-top: 4px;
    color: #bdbdbd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-legal .disclosure-note { display: block; opacity: 0.9; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container { column-gap: 16px; }
    .nav-logo .logo-img { height: 36px; }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 241, 222, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.2s ease, visibility 0s linear 0.25s;
        box-shadow: 0 10px 27px rgba(135, 0, 29, 0.1);
        padding: 2rem 0;
        gap: 1rem;
        overflow: hidden;
        z-index: 9999;
    }

    .nav-menu.active {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1.1rem;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 300px;
        transform: none;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        margin: 0;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        padding-left: 20px;
        background: rgba(135, 0, 29, 0.1);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* Page specific responsive styles */
    .page-header h1 {
        font-size: 2rem;
    }

    /* Ensure full-bleed sections don't create horizontal gaps on mobile */
    .hero,
    .page-header,
    .strategy-explorer,
    .company-story,
    .team-overview,
    .leadership-team,
    .contact-content,
    .contact-form-section,
    .solutions-overview { width: 100vw; overflow-x: clip; margin-left: auto; margin-right: auto; }

    .container { padding-left: 16px; padding-right: 16px; }

    .story-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
    .mission-grid,
    .location-content { grid-template-columns: 1fr; gap: 2rem; }
    .story-content p { font-size: 1.05rem; line-height: 1.65; }
    .story-stats { margin-top: 1rem; }

    .story-stats { grid-template-columns: 1fr !important; }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
    .contact-content h2 { font-size: 1.6rem; margin-bottom: .5rem; }
    .contact-details .contact-item h4 { font-size: 1rem; margin: 0 0 .25rem; }
    .contact-details .contact-item p { margin: 0; }

    .form-container { grid-template-columns: 1fr !important; gap: 1.25rem; }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: #721627;
    color: white;
    text-align: center;
    position: relative;
}

.page-header::after { content: none; }

.header-logo {
    margin-bottom: 2rem;
}

.header-logo .logo-img-inverted {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.company-story { padding: 56px 0; background: white; }

/* Journey / Timeline */
.our-journey { padding: 80px 0; background: #FFF1DE; }
.timeline { position: relative; margin: 40px auto 60px; max-width: 900px; }
.timeline::before {
    content: '';
    position: absolute; left: 24px; top: 0; bottom: 0;
    width: 2px; background: rgba(135,0,29,0.2);
}
.timeline-item { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.timeline-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: #87001D; margin-left: 18px; box-shadow: 0 0 0 4px rgba(135,0,29,0.15);
}
.timeline-content { background: #fff; border: 1px solid rgba(135,0,29,0.15); border-radius: 12px; padding: 16px 18px; flex:1; box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.timeline-content h3 { color:#87001D; margin-bottom: 6px; font-size: 1.1rem; }
.timeline-content p { color:#555; margin:0; }

.aum-highlight { text-align: center; margin-top: 50px; }
.aum-bar { height: 12px; background: rgba(135,0,29,0.15); border-radius: 999px; overflow: hidden; max-width: 600px; margin: 0 auto 16px; }
.aum-fill { display:block; height:100%; background: linear-gradient(90deg, #87001D, #a00025); box-shadow: inset 0 0 10px rgba(255,255,255,0.2); }
.aum-stats { display:flex; gap:10px; justify-content:center; align-items: baseline; margin-bottom: 6px; }
.aum-value { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight:700; color:#87001D; }
.aum-label { color:#555; font-weight:600; }
.aum-note { color:#777; font-size:.85rem; }

.story-grid { display: grid; grid-template-columns: 1.6fr 0.6fr; gap: 2.0rem; align-items: start; }
.story-content p { max-width: 65ch; }

.story-content h2 {
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-stats { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 1.25rem; margin-top: 0.75rem; align-self: center; justify-self: end; background: #fff; border: 1px solid rgba(114,22,39,0.15); border-radius: 12px; padding: 14px 16px; box-shadow: 0 8px 22px rgba(114,22,39,0.08); position: relative; }
.story-stats::before { content: ''; position: absolute; left: -18px; top: 10%; bottom: 10%; width: 2px; background: rgba(114,22,39,0.25); border-radius: 1px; }
.story-stat { text-align: center; }
.story-stat h3 { font-size: 2.2rem; color: #721627; font-weight: 700; margin-bottom: 0.3rem; }
.story-stat p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: #6b6b6b; }

.mission-values {
    padding: 80px 0;
    background: #FFF1DE;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #87001D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(135, 0, 29, 0.1);
}

.value-item h4 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.value-item h4 i {
    margin-right: 10px;
    color: #87001D;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.leadership {
    padding: 80px 0;
    background: white;
}

.leadership h2 { text-align: center; font-size: 2.1rem; color: #87001D; margin-bottom: 1.5rem; font-weight: 700; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: #FFF1DE;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image .image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #87001D, #a30024);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.member-image .image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.member-image .image-placeholder p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.team-member h3 {
    color: #87001D;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: #87001D;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Services Page Styles */
.services-overview {
    padding: 60px 0;
    background: #FFF1DE;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.main-services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #FFF1DE;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #87001D;
    box-shadow: 0 15px 30px rgba(135, 0, 29, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #87001D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #87001D;
    font-weight: bold;
}

.investment-process {
    padding: 80px 0;
    background: #FFF1DE;
}

.investment-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #87001D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.service-benefits {
    padding: 80px 0;
    background: white;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #87001D;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Insights Page Styles */
.market-overview {
    padding: 60px 0;
    background: white;
}

.market-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.market-stat {
    background: #FFF1DE;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(135, 0, 29, 0.1);
}

.market-stat h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-weight: 600;
    font-size: 1rem;
}

.stat-change.positive {
    color: #28a745;
}

.stat-change.negative {
    color: #dc3545;
}

.stat-change.neutral {
    color: #6c757d;
}

.featured-insights {
    padding: 80px 0;
    background: #FFF1DE;
}

.featured-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    position: relative;
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

.insight-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.insight-image {
    height: 200px;
    background: linear-gradient(135deg, #87001D, #a30024);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.insight-image i {
    font-size: 3rem;
}

.insight-content {
    padding: 2rem;
}

.insight-category {
    background: #87001D;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.insight-content h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.insight-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #999;
}

.insight-meta span {
    display: flex;
    align-items: center;
}

.insight-meta i {
    margin-right: 0.5rem;
}

.performance-charts {
    padding: 80px 0;
    background: white;
}

.performance-charts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.chart-container {
    background: #FFF1DE;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
}

.chart-container h3 {
    color: #87001D;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.chart-placeholder {
    height: 200px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px dashed #87001D;
}

.chart-description {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.market-commentary {
    padding: 80px 0;
    background: #FFF1DE;
}

.market-commentary h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.commentary-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
}

.commentary-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FFF1DE;
}

.commentary-header h3 {
    color: #87001D;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.commentary-date {
    color: #666;
    font-style: italic;
}

.commentary-body h4 {
    color: #87001D;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.commentary-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.commentary-body li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.commentary-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.investment-themes {
    padding: 80px 0;
    background: white;
}

.investment-themes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.theme-card {
    background: #FFF1DE;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(135, 0, 29, 0.1);
}

.theme-card:hover {
    transform: translateY(-5px);
}

.theme-icon { display: none; }

.theme-card h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.theme-card p {
    color: #666;
    line-height: 1.6;
}

.newsletter-signup {
    padding: 80px 0;
    background: var(--brand-tint-strong);
    color: white;
    text-align: center;
}

.newsletter-signup h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-signup p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: #FFF1DE;
    color: #87001D;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: white;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-info { background: #fff; padding: 2rem; border-radius: 14px; box-shadow: 0 10px 30px rgba(135, 0, 29, 0.10); border: 1px solid rgba(135, 0, 29, 0.12); }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start; }

.contact-card { background: #FFF; padding: 1.5rem; border-radius: 12px; text-align: left; box-shadow: 0 5px 20px rgba(135, 0, 29, 0.06); border: 1px solid rgba(0,0,0,0.06); transition: transform 0.3s ease; }

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon { display: none; }

.contact-card h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact details list styling */
.contact-info h2 { font-size: 2rem; color:#87001D; margin-bottom: .5rem; }
.contact-info > p { color:#555; font-size:1.05rem; margin-bottom: 1.25rem; max-width: 60ch; }
.contact-details { display: grid; gap: 12px; }
.contact-item { display:flex; align-items:flex-start; gap: 12px; background: #FFF1DE; border: 1px solid rgba(135,0,29,0.15); border-radius: 12px; padding: 12px 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-item:hover { background:#fff; box-shadow: 0 10px 24px rgba(135,0,29,0.10); transform: translateY(-2px); }
.contact-item i { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #87001D; color: #FFF1DE; flex: 0 0 38px; font-size: 16px; box-shadow: 0 6px 14px rgba(135,0,29,0.25); }
.contact-item h4 { margin: 0 0 4px; color:#87001D; font-size: 1.05rem; }
.contact-item p { margin: 0; color:#4a4a4a; font-weight: 500; }

/* Make the right form card visually balanced with the left card */
.contact-content .contact-form { background: #fff; border: 1px solid rgba(135,0,29,0.12); border-radius: 14px; box-shadow: 0 10px 30px rgba(135,0,29,0.10); }
.contact-content .contact-form h3 { color:#87001D; margin-bottom: 1rem; }

@media (max-width: 768px){
  .contact-info { padding: 1.25rem; }
}

.contact-form-section {
    padding: 80px 0;
    background: #FFF1DE;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-content h2 {
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #87001D;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87001D;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-sidebar {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
    border: 1px solid rgba(135,0,29,0.12);
}

.sidebar-content h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefits-list {
    list-style: none;
    margin: 1rem 0 1.25rem;
    display: grid;
    gap: 12px;
}

.benefits-list li {
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    background: #FFF1DE;
    border: 1px solid rgba(135,0,29,0.12);
    padding: 10px 12px;
    border-radius: 10px;
}

.benefits-list li i { color:#87001D; width: 20px; }

.security-disclaimer { color:#777; display:block; margin-top: 8px; }

.sidebar-cta {
    background: #FFF1DE;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.sidebar-cta h4 {
    color: #87001D;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.sidebar-cta p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.office-location {
    padding: 80px 0;
    background: white;
}

.office-location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.location-info h3 {
    color: #87001D;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.location-info p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.location-info i {
    color: #87001D;
    margin-right: 10px;
    width: 20px;
}

.location-map .map-placeholder {
    background: linear-gradient(135deg, #87001D, #a30024);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.2);
}

.location-map .map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-map .map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-map .map-placeholder span {
    opacity: 0.8;
}

.faq-section {
    padding: 80px 0;
    background: #FFF1DE;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #87001D;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(135, 0, 29, 0.1);
}

.faq-item h3 {
    color: #87001D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

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

.feature-card,
.stat-item,
.service-card,
.team-member,
.insight-card,
.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #87001D;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    border-radius: 2px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 8px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Navigation */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #87001D;
    color: #87001D;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #87001D;
    color: #FFF1DE;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 250px;
    box-shadow: 0 15px 40px rgba(135, 0, 29, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 12px 0;
    margin-top: 15px;
    border: 1px solid rgba(135, 0, 29, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    margin: 0 8px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #FFF1DE 0%, #f8e8d0 100%);
    color: #87001D;
    padding-left: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(135, 0, 29, 0.1);
}

/* Mega menu */
.dropdown.mega { position: static; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(980px, 92vw);
    background: #ffffff;
    border: 1px solid rgba(135,0,29,0.1);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.25s ease, visibility 0s linear 0.22s;
    z-index: 1001;
}
.dropdown.mega:hover .mega-menu,
.dropdown.mega.open .mega-menu { opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.mega-col h5 { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color:#87001D; margin: 6px 0 10px; }
.mega-menu a { display: block; padding: 10px 12px; border-radius: 10px; color:#333; text-decoration: none; transition: opacity .22s ease, transform .25s ease, background .2s ease, color .2s ease; }
.mega-menu .mega-col, .mega-menu a { opacity: 0; transform: translateY(6px); }
.dropdown.mega:hover .mega-menu .mega-col,
.dropdown.mega:hover .mega-menu a,
.dropdown.mega.open .mega-menu .mega-col,
.dropdown.mega.open .mega-menu a { opacity: 1; transform: translateY(0); }
.mega-menu a span { display:block; font-weight:600; }
.mega-menu a small { display:block; color:#666; margin-top:4px; font-size:.85rem; }
.mega-menu a:hover { background: linear-gradient(135deg, #FFF1DE 0%, #f8e8d0 100%); transform: translateY(-2px); }
.mega-col.highlight { background: linear-gradient(135deg, rgba(135,0,29,0.04), rgba(217,177,102,0.06)); border: 1px solid rgba(135,0,29,0.08); border-radius: 12px; padding: 12px; }
.mega-cta { display:flex; align-items:center; gap:8px; font-weight:700; color:#87001D; }

/* Rotate chevron when mega is open via JS */
.dropdown.mega.open > .nav-link i { transform: rotate(180deg); }

@media (max-width: 992px) {
  .mega-menu { grid-template-columns: 1fr 1fr; width: 95vw; }
}
@media (max-width: 768px) {
  .mega-menu { position: static; transform:none; opacity:1; visibility:visible; box-shadow:none; border:none; padding: 10px 0; grid-template-columns: 1fr; }
  .mega-col.highlight { border:none; background: transparent; padding:0; }
}

/* Reduced motion: disable transitions */
@media (prefers-reduced-motion: reduce) {
  .mega-menu, .mega-menu *, .dropdown-menu, .dropdown-menu * { transition: none !important; }
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); display: none; align-items: center; justify-content: center; z-index: 11000; }
.cookie-modal { width: min(560px, 92vw); background: #fff; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.25); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; transform: translateY(10px); opacity: 0; transition: opacity .2s ease, transform .25s ease; }
.cookie-modal-header { padding: 16px 20px; background: linear-gradient(135deg, #FFF1DE, #f8e8d0); border-bottom: 1px solid rgba(0,0,0,0.06); }
.cookie-modal-header h3 { margin: 0; color:#87001D; font-size: 1.2rem; }
.cookie-modal-body { padding: 18px 20px; color:#444; display: grid; gap: 10px; }
.cookie-row { display:flex; align-items:center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cookie-actions { display:flex; gap: 10px; justify-content: flex-end; padding: 14px 20px; background: #fafafa; border-top: 1px solid rgba(0,0,0,0.06); }
.cookie-modal-backdrop.show { display: flex; }
.cookie-modal-backdrop.show .cookie-modal { opacity: 1; transform: translateY(0); }

/* Enhanced Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121214;
    z-index: -2;
}

/* Hero media placeholder (video/image) with gentle parallax */
.hero-media {
    position: absolute;
    inset: 0;
    background: url('hero-1.jpeg') center/cover no-repeat;
    opacity: 0.35; /* increase visibility of background image */
    transform: translateY(0);
    transition: transform 0.6s ease;
}

.hero:hover .hero-media {
    transform: translateY(-6px);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 241, 222, 0.92);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFF1DE;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 241, 222, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 241, 222, 0.8);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Quick Links Section */
.quick-links { display: none; }

/* Hero button contrast on dark background */
.hero .btn-outline {
    border-color: rgba(255, 241, 222, 0.9);
    color: #FFF1DE;
}

.hero .btn-outline:hover {
    background: #FFF1DE;
    color: #87001D;
}

.quick-links-grid { display: none; }

/* Action chips / filters */
.insights-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 10px 0 20px; justify-content: center; }
.chip {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(135,0,29,0.2);
    background: white;
    color: #87001D;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.chip:hover { background: #FFF1DE; }
.chip.active { background: #87001D; color: #FFF1DE; border-color: #87001D; }

.quick-link-card { display: none; }
.quick-link-icon { display: none; }

/* Enhanced CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Footer */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
}

.social-links a { width: auto; height: auto; background: transparent; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; color: #FFF1DE; text-decoration: none; transition: color 0.3s ease; border: none; line-height: 0; padding: 0; }
.social-links a i { font-size: 24px; line-height: 1; display: block; color: #FFF1DE; }

.social-links a:hover { color: #D9B166; }

.social-links a:hover { background: #FFF; transform: translateY(-2px); }

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

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #87001D;
}

.btn-sm {
    padding: 0.25rem 1rem;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Solutions Page Styles */
.solutions-overview {
    padding: 4rem 0;
    background: #FFF1DE;
}

.solutions-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.solution-tab {
    background: white;
    border: 2px solid #ddd;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.solution-tab.active,
.solution-tab:hover {
    border-color: #87001D;
    background: #87001D;
    color: #FFF1DE;
}

.solution-section {
    display: none;
    padding: 4rem 0;
}

.solution-section.active {
    display: block;
}

/* Strategy Explorer - horizontal snap carousel */
.strategy-explorer { padding: 60px 0; background: #ffffff; }
.strategy-explorer-wrap { position: relative; display: flex; align-items: center; gap: 10px; overflow-x: hidden; }
.strategy-scroller {
    display: grid;
    grid-auto-flow: column;
    /* exactly 3 cards visible at a time (gap = 16px => 2 gaps = 32px) */
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 6px;
    scrollbar-width: none; /* hide scrollbar in Firefox */
}
.strategy-scroller::-webkit-scrollbar { height: 0; width: 0; }
.strategy-card {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(135,0,29,0.12);
    border-radius: 14px;
    padding: 18px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.strategy-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.10); }
.strategy-card h3 { color:#87001D; margin: 10px 0 8px; font-size: 1.1rem; }
.strategy-card p { color:#555; font-size: .95rem; }
.strategy-card-icon { width: 48px; height: 48px; border-radius: 50%; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, #87001D, #a00025); color:#FFF1DE; box-shadow:0 8px 20px rgba(135,0,29,0.2) }
.strategy-cta { display:inline-flex; align-items:center; gap:6px; margin-top:10px; color:#87001D; font-weight:600; }
.strategy-nav { background:#FFF1DE; border:1px solid rgba(135,0,29,0.25); color:#87001D; width:38px; height:38px; border-radius:8px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .25s ease; }
.strategy-nav:hover { background:#87001D; color:#FFF1DE; }

@media (max-width:768px){
  .strategy-scroller { grid-auto-columns: minmax(240px, 75%); }
}

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

.solution-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.solution-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #87001D;
    font-size: 1.2rem;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #87001D;
    color: #FFF1DE;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-visual {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.chart-container {
    height: 300px;
    position: relative;
}

/* Investment Process */
.investment-process {
    padding: 4rem 0;
    background: #f8f8f8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #87001D;
    color: #FFF1DE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Insurance Expertise Page Styles */
.expertise-overview {
    padding: 4rem 0;
    background: #FFF1DE;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(135, 0, 29, 0.2);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: #87001D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #FFF1DE;
    font-size: 1.5rem;
}

.alm-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

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

.alm-features {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.alm-feature {
    margin-bottom: 1.5rem;
}

.alm-feature h4 {
    color: #87001D;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.alm-visual {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.alm-chart {
    height: 320px;
    position: relative;
}

.alm-feature select, .alm-feature input[type="range"] { width: 100%; }
.alm-intro { color:#555; margin: 0.25rem 0 1rem; }

@media (max-width: 768px){
  .alm-content { grid-template-columns: 1fr; gap: 2rem; }
}

.regulatory-section {
    padding: 4rem 0;
    background: #FFF1DE;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.regulatory-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.regulatory-item h3 {
    color: #87001D;
    margin-bottom: 1rem;
}

.regulatory-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.regulatory-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

.case-studies {
    padding: 4rem 0;
    background: #f8f8f8;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-study-type {
    background: #87001D;
    color: #FFF1DE;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #87001D;
}

.result-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.interactive-tools {
    padding: 4rem 0;
    background: #FFF1DE;
}

.portfolio-simulator {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.simulator-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-weight: 500;
    color: #333;
}

.control-group select,
.control-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.simulator-results {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.result-chart {
    height: 300px;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.metric h4 {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #87001D;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* quick-links-grid removed */
    
    .solutions-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-stats {
        grid-template-columns: 1fr;
    }
    
    .alm-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-results {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-actions {
        display: none;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-logo .logo-img {
        height: 35px;
    }
}

/* Team Page Styles */
.team-overview { padding: 24px 0; background: #FFF1DE; }

.team-overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #87001D;
}

.team-overview-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.75rem;
}

.leadership-team {
    padding: 40px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 0, 29, 0.15);
}

.leader-image {
    height: 300px;
    background: linear-gradient(135deg, #87001D 0%, #a00025 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.leader-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #87001D 0%, #a00025 100%);
    transition: transform 0.3s ease;
}

.leader-image .image-placeholder:hover {
    transform: scale(1.05);
}

.leader-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.leader-image .image-placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.leader-image .leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.leader-image .leader-photo:hover {
    transform: scale(1.05);
}

.leader-content {
    padding: 2rem;
}

.leader-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #87001D;
}

.leader-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.leader-bio {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
    align-items: center;
}

.expertise-tag {
    background: transparent;
    border: none;
    padding: 0;
}

.leader-logos img { max-height: 38px; width: auto; height: auto; opacity: 1; filter: grayscale(100%); object-fit: contain; display: block; margin: 0 auto; }

.leader-logos { display: grid; grid-template-columns: 1fr; grid-auto-rows: minmax(38px, auto); align-items: center; justify-items: center; row-gap: 12px; }

@media (max-width: 768px) { .leader-logos { grid-template-columns: 1fr; row-gap: 10px; } }

.leader-quote {
    font-style: italic;
    color: #666;
    border-left: 3px solid #87001D;
    padding-left: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.team-values {
    padding: 80px 0;
    background: white;
}

.team-values-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #87001D;
}

.team-values-content p {
    font-size: 1.1rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #FFF1DE;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #87001D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #87001D;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for team page */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leader-image {
        height: 250px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-overview-content h2,
    .team-values-content h2 {
        font-size: 2rem;
    }
} 

/* Progress Indicator and Scroll-Driven Storytelling */
.progress-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.progress-bar {
    width: 3px;
    height: 200px;
    background: rgba(135, 0, 29, 0.2);
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(135, 0, 29, 0.1);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--progress-height, 0%);
    background: #87001D;
    border-radius: 1px;
    transition: height 0.3s ease;
}

.section-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
}

.section-indicator:hover,
.section-indicator.active {
    opacity: 1;
    background: #ffffff;
    border-color: rgba(135, 0, 29, 0.25);
    transform: translateX(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #87001D;
    min-width: 30px;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937; /* dark slate for strong contrast */
    white-space: nowrap;
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
}

.section-indicator:hover .section-title,
.section-indicator.active .section-title {
    transform: translateX(0);
    opacity: 1;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Enhanced Quick Links with Hover Effects */
.quick-link-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 0, 29, 0.1), transparent);
    transition: left 0.6s ease;
}

.quick-link-card:hover::before {
    left: 100%;
}

.quick-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(135, 0, 29, 0.15);
}

.quick-link-icon {
    transition: all 0.4s ease;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    color: #87001D;
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #87001D, #FFF1DE);
    transition: width 0.4s ease;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(135, 0, 29, 0.1);
}

.feature-icon {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: #87001D;
}

/* Enhanced Stats Animation */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 0, 29, 0.05), transparent);
    transition: left 0.8s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item h3 {
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.1);
    color: #87001D;
}

/* Mobile Responsive for Progress Indicator */
@media (max-width: 768px) {
    .progress-indicator {
        right: 15px;
        gap: 15px;
    }
    
    .section-indicator {
        gap: 8px;
    }
    
    .section-number {
        font-size: 1rem;
        min-width: 25px;
    }
    
    .section-title {
        display: none;
    }
    
    .progress-bar {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .progress-indicator {
        display: none;
    }
}

/* Dark/Light Theme Toggle */
/* theme toggle removed */

/* Dark theme styles */
/* dark theme removed */

/* Improve base body text contrast in light theme */
body {
    color: #2b2b2b;
}

/* Make feature and body copy slightly darker for readability */
.hero-content p,
.feature-card p,
.cta-content p,
.story-content p,
.mission-card p,
.value-item p,
.member-bio,
.overview-content p,
.service-card p,
.process-step p,
.benefit-item p {
    color: #4a4a4a;
}

/* Ensure hero subtitle has high contrast over hero background */
.hero .hero-subtitle {
    color: rgba(255, 241, 222, 0.96);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* dark theme removed */

/* dark theme removed */

/* Improve indicator base contrast in dark theme */
/* dark theme removed */

/* Fix text readability in dark theme */
/* dark theme removed start */
/* body.dark-theme h1, */
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: #ffffff;
}

body.dark-theme p {
    color: #e0e0e0;
}

body.dark-theme .hero-content h1,
body.dark-theme .hero-content p {
    color: #ffffff;
}

body.dark-theme .feature-card h3,
body.dark-theme .feature-card p {
    color: #ffffff;
}

body.dark-theme .stat-item h3,
body.dark-theme .stat-item p {
    color: #ffffff;
}

body.dark-theme .cta-content h2,
body.dark-theme .cta-content p {
    color: #ffffff;
}

body.dark-theme .section-title {
    color: #ffffff;
}

body.dark-theme .progress-indicator .section-title {
    color: #ffffff;
}

body.dark-theme .progress-indicator .section-number {
    color: #87001D;
}

/* Additional dark theme text readability fixes */
body.dark-theme .stat-value {
    color: #ffffff;
}

body.dark-theme .dropdown-menu a {
    color: #ffffff;
}

/* Improve dropdown readability in dark theme */
body.dark-theme .dropdown-menu {
    background: rgba(34, 34, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #FFF1DE;
}

body.dark-theme .control-group label {
    color: #ffffff;
}

body.dark-theme .section-title {
    color: #ffffff;
}

body.dark-theme .metric h4 {
    color: #e0e0e0;
}

body.dark-theme .insight-content p {
    color: #e0e0e0;
}

body.dark-theme .insight-content h3 {
    color: #ffffff;
}

/* Comprehensive dark theme text readability for all #666 elements */
body.dark-theme .hero-content p,
body.dark-theme .feature-card p,
body.dark-theme .cta-content p,
body.dark-theme .story-content p,
body.dark-theme .story-stat p,
body.dark-theme .mission-card p,
body.dark-theme .value-item p,
body.dark-theme .member-bio,
body.dark-theme .overview-content p,
body.dark-theme .service-card p,
body.dark-theme .process-step p,
body.dark-theme .benefit-item p,
body.dark-theme .insight-content p,
body.dark-theme .chart-description,
body.dark-theme .commentary-date,
body.dark-theme .commentary-body li,
body.dark-theme .commentary-body p,
body.dark-theme .theme-card p,
body.dark-theme .contact-card p,
body.dark-theme .form-content p,
body.dark-theme .footer-section p,
body.dark-theme .footer-links a,
body.dark-theme .solution-subtitle,
body.dark-theme .regulatory-item li,
body.dark-theme .result-label,
body.dark-theme .metric h4,
body.dark-theme .team-overview-content p,
body.dark-theme .leader-title,
body.dark-theme .leader-bio,
body.dark-theme .leader-quote,
body.dark-theme .team-values-content p,
body.dark-theme .value-card p,
body.dark-theme .cta-panel-content p {
    color: #e0e0e0;
}
/* dark theme removed end */

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(135, 0, 29, 0.3);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced animations for section transitions */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chart container enhancements */
.chart-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.05), rgba(255, 241, 222, 0.1));
    border: 1px solid rgba(135, 0, 29, 0.1);
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(135, 0, 29, 0.1);
    border-color: rgba(135, 0, 29, 0.2);
}

/* Loading animation for charts */
.chart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #87001D;
}

.chart-loading::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid rgba(135, 0, 29, 0.2);
    border-top: 3px solid #87001D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* Performance Chart Container */
.performance-chart-container {
    margin-top: 60px;
    text-align: center;
}

.performance-chart-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #87001D;
    margin-bottom: 30px;
}

.chart-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 0, 29, 0.1);
    border: 1px solid rgba(135, 0, 29, 0.1);
    transition: all 0.3s ease;
}

.chart-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(135, 0, 29, 0.15);
}

#performanceChart {
    width: 100% !important;
    height: 300px !important;
}

@media (max-width: 768px) {
    .performance-chart-container h3 {
        font-size: 1.5rem;
    }
    
    .chart-wrapper {
        padding: 20px;
    }
    
    #performanceChart {
        height: 250px !important;
    }
}

/* Dual CTA Banner */
.dual-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.05), rgba(255, 241, 222, 0.3));
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-panel {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(135, 0, 29, 0.1);
    border: 1px solid rgba(135, 0, 29, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-panel:hover::before {
    opacity: 1;
}

.cta-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(135, 0, 29, 0.15);
}

.cta-panel.primary {
    border-left: 5px solid #87001D;
}

.cta-panel.secondary {
    border-left: 5px solid #FFF1DE;
}

.cta-panel-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-panel-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #87001D;
    margin-bottom: 15px;
}

.cta-panel-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-panel-visual {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #87001D, #FFF1DE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.cta-panel:hover .cta-panel-visual {
    transform: scale(1.1) rotate(5deg);
}

.cta-panel-visual i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.cta-panel:hover .cta-panel-visual i {
    transform: scale(1.1);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-large i {
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .dual-cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-panel {
        padding: 30px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-panel-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-panel-visual {
        width: 60px;
        height: 60px;
    }
    
    .cta-panel-visual i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dual-cta-banner {
        padding: 60px 0;
    }
    
    .cta-panel {
        padding: 25px;
    }
    
    .cta-panel-content h3 {
        font-size: 1.3rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Progress Indicator and Scroll-Driven Storytelling */
.contact-details a.contact-item { text-decoration: none; color: inherit; display: flex; align-items: flex-start; gap: 12px; background: #FFF1DE; border: 1px solid rgba(135,0,29,0.15); border-radius: 12px; padding: 12px 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-details a.contact-item:hover { background:#fff; box-shadow: 0 10px 24px rgba(135,0,29,0.10); transform: translateY(-2px); }