:root {
    --bg-light: #fdfdfd;
    --bg-lighter: #ffffff;
    --text-main: #111111;
    --text-muted: #555555;
    --accent: #b5952f;
    --accent-hover: #967a22;
    --accent-light: rgba(181, 149, 47, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(181, 149, 47, 0.15);
    /* Subtly golden border */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(181, 149, 47, 0.12);
    /* Golden shadow glow */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    /* Subtle dot grid pattern for texture */
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

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

.text-accent {
    color: var(--accent) !important;
}

.text-white {
    color: #ffffff !important;
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-alt {
    background-color: var(--bg-lighter);
}

.max-w-700 {
    max-width: 700px;
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 100px 0;
    }
}

/* Navbar */
.glass-nav {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 25px 0;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 5px 0;
    /* Reduced padding for sticky header */
}

.glass-nav .brand-text {
    color: #ffffff;
    transition: color 0.4s ease;
}

.glass-nav.scrolled .brand-text {
    color: var(--text-main);
    font-size: 1.1rem;
    /* Slightly smaller text on sticky */
}

.glass-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.glass-nav.scrolled .nav-link {
    color: var(--text-main) !important;
}

.brand-logo {
    height: 120px;
    width: auto;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.glass-nav.scrolled .brand-logo {
    filter: brightness(0);
    /* Make logo black on white background */
    height: 70px;
    /* Compress logo size when sticky */
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 5px 0 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    opacity: 1;
    color: var(--accent) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.glass-nav .navbar-toggler-icon {
    filter: invert(1);
    transition: filter 0.3s ease;
}

.glass-nav.scrolled .navbar-toggler-icon {
    filter: none;
}

/* Dropdown Professionalism */
.dropdown-menu {
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--accent) !important;
    color: #ffffff !important;
}


/* Mobile Menu Enhancements */
@media (max-width: 991.98px) {
    .brand-logo {
        height: 80px;
        /* Adjusted slightly to fit with text */
    }

    span.brand-text {
        display: inline-block !important;
        font-size: small !important;
        vertical-align: middle;
    }

    .hero-content .btn-lg {
        font-size: 0.95rem;
        /* Slightly smaller button text */
        padding: 0.7rem 1.8rem !important;
        /* Slightly tighter padding */
        white-space: nowrap;
        /* Prevent arrow from wrapping */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        background: var(--bg-lighter);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        border: 1px solid var(--glass-border);
    }

    .glass-nav .nav-link {
        color: var(--text-main) !important;
        padding: 10px 15px !important;
        border-radius: 5px;
    }

    .glass-nav .nav-link:hover {
        background: rgba(181, 149, 47, 0.05);
    }

    /* Mobile Submenu Enhancements */
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.02);
        padding: 5px 0 5px 15px;
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 5px;
    }

    .navbar-nav .dropdown-item {
        padding: 10px 15px;
        color: var(--text-main) !important;
        font-weight: 400;
        border-radius: 5px;
        border-bottom: none;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item.active {
        background-color: rgba(181, 149, 47, 0.05) !important;
        color: var(--accent) !important;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .glass-nav.scrolled .navbar-toggler-icon {
        filter: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1579532537598-459ecdaf39cc?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-section.hero-about {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
    height: 70vh;
    min-height: 500px;
}

.hero-section.hero-investment {
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=2671&auto=format&fit=crop') no-repeat center bottom/cover;
    height: 70vh;
    min-height: 500px;
}

.hero-section.hero-contact {
    background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
    height: 70vh;
    min-height: 500px;
}

.hero-section.hero-updates {
    height: 60vh;
    min-height: 450px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Richer gradient overlay */
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.6) 0%, rgba(5, 5, 10, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: opacity 0.3s ease;
}

@media (max-height: 700px),
(max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-indicator:hover {
    opacity: 1;
    cursor: pointer;
}

.indicator-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.indicator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateY(-100%);
    animation: scrollLine 2.5s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Buttons & Links */
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-outline-light:hover::before {
    width: 100%;
}

.btn-outline-light:hover {
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 149, 47, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 500;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--text-main);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-accent:hover::before {
    width: 100%;
}

.btn-accent:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 149, 47, 0.4);
}

.hover-scale {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.link-accent {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.link-accent:hover {
    color: var(--text-main);
}

.link-accent i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 8px;
}

.link-accent:hover i {
    transform: translateX(8px);
    color: var(--accent);
}

.accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), transparent);
    border-radius: 2px;
}

.accent-line.center {
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* Glass Cards & Elements v3 */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(181, 149, 47, 0.4);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Watermark Background Icon */
.card-watermark {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.03;
    z-index: -1;
    transform: rotate(-15deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-main);
}

.glass-card:hover .card-watermark {
    opacity: 0.08;
    color: var(--accent);
    transform: rotate(0) scale(1.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--bg-lighter);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.glass-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(181, 149, 47, 0.2);
    background: var(--accent);
    color: #ffffff;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px var(--accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover .icon-wrapper::after {
    opacity: 0.4;
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from {
        transform: scale(1);
        opacity: 0.3;
    }

    to {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Counters section */
.counter-box {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.counter-number {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.counter-box:hover .counter-number {
    color: var(--accent);
}

.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Market Dashboard Styles */
.market-ticker-container {
    background: #0d1f29;
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001; /* Above navbar if needed, but below on scroll */
    border-bottom: 1px solid rgba(181, 149, 47, 0.2);
}

.market-ticker {
    display: flex;
    white-space: nowrap;
    animation: tickerLoop 30s linear infinite;
}

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

.ticker-item {
    padding: 0 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.market-card {
    border-top: 3px solid var(--accent) !important;
}

.market-price-large {
    font-size: 2.2rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

.market-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.change-up { color: #28a745; }
.change-down { color: #dc3545; }

.status-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(0,0,0,0.05);
    color: var(--text-muted);
}

.market-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-top: none;
    padding: 15px;
}

.market-table tbody td {
    padding: 15px;
    vertical-align: middle;
    font-size: 0.9rem;
}

.indicator-item {
    font-size: 0.95rem;
}

.btn-outline-accent {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-accent:hover, .btn-outline-accent.active {
    background-color: var(--accent);
    color: #fff;
}

/* Ticker color helpers */
.text-success-custom { color: #28a745 !important; }
.text-danger-custom { color: #dc3545 !important; }
.timeline-path {
    position: relative;
    padding-left: 60px;
}

.timeline-path::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--glass-border) 100%);
    border-radius: 2px;
}

.timeline-node {
    position: relative;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--bg-lighter);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-node:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(181, 149, 47, 0.2);
}

.timeline-icon {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-lighter);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(181, 149, 47, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-node:hover .timeline-icon {
    background: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* Forms */
.form-floating .form-control {
    background-color: var(--bg-lighter);
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px 5px 0 0;
    padding-left: 1rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    background-color: #ffffff;
    border-bottom-color: var(--accent);
    box-shadow: 0 4px 6px rgba(181, 149, 47, 0.05);
}

.form-floating label {
    padding-left: 1rem;
    color: var(--text-muted);
}

/* Footer - Redesigned Dark Theme */
.footer {
    background-color: #111111;
    color: #ffffff;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.brand-logo-footer {
    height: 150px;
    width: auto;
    border-radius: 4px;
    filter: brightness(0) invert(1);
    /* Ensure logo is white on dark background */
    transition: filter 0.3s ease;
}

.brand-logo-footer:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(181, 149, 47, 0.5));
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\F284';
    /* Bootstrap icon chevron-right */
    font-family: 'bootstrap-icons';
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent) !important;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* Animations (triggered by JS) */
.animate-hidden {
    opacity: 0;
    visibility: hidden;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered transition delays handled by JS or CSS */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.text-xs { font-size: 0.75rem; }
.text-xxs { font-size: 0.65rem; }

.news-headline {
    font-size: 0.95rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.news-headline:hover {
    color: var(--accent) !important;
}

.progress-bar {
    transition: width 1s ease-in-out;
}

.bg-accent {
    background-color: var(--accent) !important;
}

/* Chart & Widget Containers */
#tv-main-chart, #tv-heatmap {
    min-height: 400px;
    background: #fff;
    border-radius: 12px;
}

.glass-card iframe {
    border-radius: 12px;
}

/* Custom indicator spacing */
.indicators-list .indicator-item {
    transition: background 0.3s;
    padding-left: 10px;
    padding-right: 10px;
}

.indicators-list .indicator-item:hover {
    background: rgba(181, 149, 47, 0.03);
    border-radius: 5px;
}

/* Custom table coloring */
.text-success-custom { color: #28a745 !important; }
.text-danger-custom { color: #dc3545 !important; }

/* --- Newsroom & Updates Redesign --- */
.newsroom-header-section {
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: var(--bg-lighter);
}

.breadcrumb-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.breadcrumb-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover, .breadcrumb-link.active {
    color: var(--accent);
}

.feature-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.h-100-min {
    min-height: 3.6rem;
}

.smaller {
    font-size: 0.7rem;
}

.ls-2 { letter-spacing: 2px; }
.ls-1 { letter-spacing: 1px; }

.story-card {
    padding: 10px;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.story-card:hover {
    border-top-color: var(--accent);
    background: rgba(181, 149, 47, 0.02);
}

.link-accent-simple {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.border-end-minimal {
    border-right: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 991.98px) {
    .border-end-minimal {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.press-card {
    transition: transform 0.3s ease;
}

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

.media-contacts-banner {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.media-contacts-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(181, 149, 47, 0.1) 0%, transparent 50%);
}

.btn-media-contact {
    background-color: #9ac8e2; /* Light blue from JPM image */
    color: #1a1a1a;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-media-contact:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.lead-sm {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Expansion News Styles --- */
.bg-accent-light {
    background-color: var(--accent-light);
}

.hover-shadow-sm:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.transition-all {
    transition: all 0.3s ease;
}

.smaller {
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    #portfolioNews .d-flex {
        flex-direction: column;
        text-align: center;
    }
    #portfolioNews .me-4 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
}