/* ==========================================================================
   DESIGN SYSTEM - AURUM NOVA
   Inspired by ore.themerex.net (Mineral Mining Theme)
   ========================================================================== */

/* Google Fonts Import - Institutional Geometric Sans-Serif */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,400..800;1,400..800&family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables & Tokens */
:root {
    /* Color Tokens - High Contrast Corporate Navy & Metallic Gold */
    --color-gold: #D4AF37;
    --color-gold-hover: #E5C158;
    --color-gold-dark: #B38E22;
    --color-gold-light: #F7E7A9;
    --color-gold-metallic: linear-gradient(135deg, #D4AF37 0%, #FFF3A7 40%, #C5A059 70%, #9A7B1C 100%);
    
    --color-navy-dark: #0A1128;
    --color-navy-deep: #060B1E;
    --color-navy-medium: #101935;
    --color-navy-light: #1A264A;
    --color-navy-border: #24335E;

    --color-slate-dark: #0A1128;
    --color-slate-medium: #101935;
    --color-slate-light: #1A264A;
    --color-slate-border: #24335E;
    
    --color-white: #FFFFFF;
    --color-cream: #F4F6FA;
    --color-light-gray: #F8FAFC;
    --color-border-gray: #E2E8F0;
    
    --color-text-dark: #0F172A;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;
    
    --text-light: #FFF8DC;
    --accent-primary: #FFD700;
    
    /* Premium Geometric Sans-Serif Typography */
    --font-heading: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-editorial: 'Montserrat', sans-serif;
    
    /* Extra Design Colors */
    --color-cream-badge: #FAF5E6;
    --color-gold-shadow: #EFE7D3;
    --color-tan-light: #F4F0E4;
    --color-alert-orange: #E05E36;
    --color-success: #28A745;
    --color-success-bg: rgba(40, 167, 69, 0.1);
    --color-alert-red: #DC3545;
    --color-alert-red-bg: rgba(220, 53, 69, 0.1);
    
    /* Layout Tokens */
    --container-width: 1280px;
    --transition-speed: 0.3s;
    --transition-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);
    --shadow-industrial: 8px 8px 0px rgba(18, 19, 28, 0.08);
    --shadow-industrial-gold: 8px 8px 0px var(--color-gold);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--color-navy-dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

p.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-ease);
}

/* Structural Components */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid var(--color-border-gray);
}

.section-dark {
    background-color: var(--color-slate-dark);
    color: var(--color-white);
    border-bottom: 1px solid var(--color-slate-border);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--color-white);
}

.section-dark p {
    color: var(--color-text-light);
    opacity: 0.8;
}

.section-cream {
    background-color: var(--color-cream);
}

/* Grid helpers */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Subtitle Biscuit / Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-cream-badge);
    color: var(--color-gold-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-gold);
}

.section-dark .badge-pill {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-gold-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header & Navbar */
.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all var(--transition-speed) var(--transition-ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Fixed Header on Scroll */
.site-header.fixed {
    position: fixed;
    background-color: var(--color-slate-dark);
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    background-color: #101010 !important;
}

.site-header.header-dark,
.site-header.header-solid {
    position: relative;
    background-color: #101010 !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrap {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin-right: 2.5rem !important;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.04em !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    flex-shrink: 0 !important;
}

.logo-brand-name {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.logo-img {
    height: 38px !important;
    width: auto !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem !important; /* Equal, mathematically precise spacing */
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFF8DC !important; /* Warm White */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0;
    white-space: nowrap !important; /* Force single baseline, no text stacking */
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: #FFD700 !important; /* Radiant Gold */
}

/* Navbar item line transition */
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FFD700;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Inline Chevron SVG Styling */
.chevron-svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.35rem;
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .chevron-svg,
.nav-item.dropdown.active .chevron-svg {
    transform: rotate(180deg);
    stroke: #FFD700;
}

/* Submenu Dropdown - Institutional Grade */
.nav-item.dropdown {
    cursor: pointer;
    position: relative;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #101010;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-top: 3px solid #FFD700;
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    border-radius: 0 0 6px 6px;
    padding: 0.5rem 0;
    list-style: none;
}

/* Hover & Active triggers for dropdown */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-link {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: #FFF8DC;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-left-color: #FFD700;
    padding-left: 1.5rem;
}

/* Highlighted INVESTORS & PARTNERS Link Button */
.nav-item-investors {
    margin-left: 0.5rem;
}

.nav-link-investor {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    background: transparent;
    border: 1px solid #FFD700 !important; /* 1px solid Radiant Gold border */
    color: #FFD700 !important; /* Radiant Gold text */
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    white-space: nowrap !important;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-link-investor:hover {
    background: #FFD700 !important; /* Fills button with Radiant Gold */
    color: #0A1128 !important; /* Turns text dark navy/black */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    z-index: 102;
    color: var(--text-light, #FFF8DC);
    transition: color 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover,
.mobile-toggle:focus,
.mobile-toggle:active {
    color: var(--accent-primary, #FFD700);
}

.mobile-toggle-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-toggle-icon line {
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    transform-box: view-box;
    transform-origin: 12px 12px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.mobile-toggle.active .line-top {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .line-middle {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .line-bottom {
    transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-slate-dark);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(207, 160, 44, 0.3);
}

.btn-secondary {
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
    color: var(--color-slate-dark);
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-slate-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(207, 160, 44, 0.3);
}

.btn-outline-gold,
.esg-pillar-card .btn {
    background-color: #FFD700 !important;
    background: #FFD700 !important;
    border: 2px solid #FFD700 !important;
    color: #101010 !important;
    font-family: var(--font-heading);
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-radius: 4px !important;
    padding: 0.75rem 1.25rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    min-height: 44px !important;
    box-sizing: border-box !important;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus,
.esg-pillar-card .btn:hover,
.esg-pillar-card .btn:focus {
    background-color: #101010 !important;
    background: #101010 !important;
    border-color: #FFD700 !important;
    color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) !important;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-slate-dark);
    color: var(--color-slate-dark);
}

.btn-outline:hover {
    background-color: var(--color-slate-dark);
    color: var(--color-white);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 100vh;
    background-color: var(--color-slate-dark);
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, rgba(18, 19, 28, 0.9) 30%, rgba(18, 19, 28, 0.4) 100%), url('../assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding-top: 80px; /* Accounts for header height */
}

/* Hero entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 700px;
}

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-ease) forwards;
}

.hero-content .badge-pill {
    animation-delay: 0.1s;
}

.hero-content .hero-title {
    animation-delay: 0.3s;
}

.hero-content .hero-desc {
    animation-delay: 0.5s;
}

.hero-content .btn-group {
    animation-delay: 0.7s;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 0.95;
    color: var(--color-white);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

/* Stats Section */
.stats-bar {
    padding: 3rem 0;
    background-color: var(--color-slate-medium);
    border-bottom: 1px solid var(--color-slate-border);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--color-slate-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Industrial Divider Grid Pattern & Section Headers */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 4rem;
    max-width: 680px;
}

.section-header.center {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-navy-dark, #0A1128);
    color: var(--color-gold, #D4AF37);
    padding: 0.45rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    margin-bottom: 0.35rem;
    width: fit-content;
}

.section-title {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

/* Feature / Info Cards */
.card-industrial {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-gray);
    padding: 2.5rem;
    transition: all var(--transition-speed) var(--transition-ease);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-industrial);
}

.card-industrial:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--color-gold);
    border-color: var(--color-slate-dark);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.card-link {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-slate-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '→';
    transition: transform var(--transition-speed) var(--transition-ease);
}

.card-link:hover {
    color: var(--color-gold);
}

.card-link:hover::after {
    transform: translateX(5px);
}

/* Project Cards in Grid */
.project-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: var(--color-slate-dark);
    box-shadow: var(--shadow-industrial);
    border: 1px solid var(--color-border-gray);
    transition: all var(--transition-speed) var(--transition-ease);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 12px 0px var(--color-gold);
    border-color: var(--color-gold);
}

.project-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--transition-ease);
}

.project-card:hover .project-card-bg {
    transform: scale(1.08);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(18, 19, 28, 0.95) 15%, rgba(18, 19, 28, 0.3) 100%);
    z-index: 1;
}

.project-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.project-card-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.project-card-title {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* News / Articles Section */
.news-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-speed) var(--transition-ease);
}

.news-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.news-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-slate-dark);
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-ease);
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.news-meta span.cat {
    color: var(--color-gold-dark);
}

.news-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Gallery Grid */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--color-border-gray);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-ease);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-slate-dark);
    color: var(--color-white);
    border-color: var(--color-slate-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border-gray);
    background-color: var(--color-slate-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-ease);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 19, 28, 0.85);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) var(--transition-ease);
    z-index: 1;
}

.gallery-item-overlay * {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s var(--transition-ease);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-overlay * {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-item-cat {
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Lightbox Modal CSS */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 16, 0.98);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid var(--color-slate-light);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    color: var(--color-white);
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-speed);
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.6;
    padding: 1rem;
    transition: all var(--transition-speed);
}

.lightbox-nav:hover {
    opacity: 1;
    color: var(--color-gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Subpage Hero Section */
.page-hero {
    background-color: var(--color-slate-dark);
    padding: 10rem 0 6rem 0;
    background-image: linear-gradient(to right, rgba(18, 19, 28, 0.95) 40%, rgba(18, 19, 28, 0.5) 100%), url('../assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--color-gold);
}

.page-hero-title {
    display: none;
}

.page-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.page-hero-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-gold-light);
    text-transform: none;
    letter-spacing: 0.02em;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.4;
}

.breadcrumbs {
    display: none;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    opacity: 0.75;
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumbs span.current {
    color: var(--color-gold);
}

/* Two Column / Layout Split */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.sidebar {
    background-color: var(--color-light-gray);
    border: 1px solid var(--color-border-gray);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.5rem;
}

/* Forms & inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--color-border-gray);
    background-color: var(--color-light-gray);
    transition: all var(--transition-speed);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-slate-dark);
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.section-dark .form-control {
    background-color: var(--color-slate-light);
    border-color: var(--color-slate-border);
    color: var(--color-white);
}

.section-dark .form-control:focus {
    border-color: var(--color-gold);
    background-color: var(--color-slate-medium);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer styling */
.site-footer {
    background-color: var(--color-slate-dark);
    color: var(--color-text-light);
    border-top: 2px solid var(--color-gold);
}

.footer-top {
    padding: 5rem 0 3rem 0;
    border-bottom: 1px solid var(--color-slate-border);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-light);
    opacity: 0.75;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    opacity: 1;
    padding-left: 0.25rem;
}

.contact-info-list {
    list-style: none;
    font-size: 0.9rem;
}

.contact-info-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    opacity: 0.85;
}

.contact-info-list strong {
    color: var(--color-gold-light);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* Admin Dashboard Styling */
.admin-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-gray);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.admin-header {
    background-color: var(--color-slate-dark);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-body {
    padding: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border-gray);
}

.admin-table th {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-light-gray);
}

.admin-table tr:hover {
    background-color: var(--color-light-gray);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
}

.status-success {
    background-color: var(--color-success-bg);
    color: var(--color-success);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   MOBILE & TABLET NAVIGATION HEADER & ACCORDION OVERHAUL (< 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    /* 1. Header Sticky Bar & High Z-Index Visibility */
    .site-header,
    .site-header.fixed,
    .site-header.header-dark,
    .site-header.header-solid {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 80px !important;
        z-index: 9999 !important;
        background-color: #101010 !important;
        background: #101010 !important;
        border-bottom: 1px solid rgba(255, 248, 220, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
    }

    .nav-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }

    /* High Contrast Warm White Hamburger Icon */
    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        order: 2 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        padding: 10px !important;
        color: #FFF8DC !important;
        z-index: 10000 !important;
    }

    .mobile-toggle-icon {
        width: 26px !important;
        height: 26px !important;
        color: #FFF8DC !important;
        stroke: #FFF8DC !important;
    }

    .mobile-toggle-icon line {
        stroke: #FFF8DC !important;
        stroke-width: 2.5px !important;
        transition: all 0.3s ease !important;
    }

    .mobile-toggle.active .line-top,
    .mobile-toggle.active .line-middle,
    .mobile-toggle.active .line-bottom {
        stroke: #FFD700 !important;
    }

    .logo-wrap {
        order: 1 !important;
    }

    .logo-text {
        font-size: 1.4rem !important;
        color: #FFFFFF !important;
    }

    /* Mobile Nav Drawer overlay */
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        right: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background-color: #101010 !important;
        background: #101010 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1.5rem 1.75rem 4rem 1.75rem !important;
        gap: 0 !important;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        border-top: 1px solid rgba(255, 215, 0, 0.15) !important;
        z-index: 9998 !important;
        box-sizing: border-box !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* 3. Hairline Dividers (1px solid rgba(255, 248, 220, 0.1)) */
    .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 248, 220, 0.1) !important;
        background: transparent !important;
        background-color: transparent !important;
    }

    .nav-item:last-child {
        border-bottom: none !important;
    }

    .nav-link {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 1.25rem 0 !important;
        border: none !important;
        border-bottom: none !important;
        color: #FFF8DC !important;
        background: transparent !important;
        background-color: transparent !important;
        text-decoration: none !important;
        box-shadow: none !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link-investor {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0.85rem 1.25rem !important;
        margin-top: 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        border: 1px solid #FFD700 !important;
        color: #FFD700 !important;
        background: transparent !important;
        border-radius: 4px !important;
    }

    .chevron-svg {
        margin-left: 0.5rem !important;
        pointer-events: none !important;
        transition: transform 0.3s ease, stroke 0.3s ease !important;
        stroke: #FFF8DC !important;
    }

    .nav-item.active .chevron-svg {
        transform: rotate(180deg) !important;
        stroke: #FFD700 !important;
    }

    /* 2. Force Dropdown UI Fix (Transparent Backgrounds, Remove Dark Blocks) */
    .dropdown-menu {
        position: static !important;
        left: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        background: transparent !important;
        background-color: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-width: unset !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease !important;
    }

    .nav-item.active .dropdown-menu {
        max-height: 500px !important;
        padding: 0.25rem 0 1rem 0 !important;
    }

    .dropdown-item {
        width: 100% !important;
        border: none !important;
        border-bottom: none !important;
        background: transparent !important;
        background-color: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .dropdown-link {
        display: block !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: rgba(255, 248, 220, 0.75) !important;
        padding: 0.75rem 0 0.75rem 1.25rem !important;
        border: none !important;
        border-bottom: none !important;
        background: transparent !important;
        background-color: transparent !important;
        transition: color 0.2s ease, padding-left 0.2s ease !important;
        text-decoration: none !important;
    }

    .dropdown-link:hover,
    .dropdown-link:focus {
        color: #FFD700 !important;
        padding-left: 1.5rem !important;
        background: transparent !important;
        background-color: transparent !important;
    }
}
    
    /* Hero adjustments */
    .hero-slider {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px 0;
    }
    
    /* Project Cards scale down */
    .project-card {
        height: 300px;
    }
    
    /* Grid margins */
    .grid {
        gap: 1.5rem;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--color-slate-border);
        padding: 1.5rem 0;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Process Section Styling */
.section-process {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-white);
    background-image: linear-gradient(to right, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 75%), url('../assets/project_community.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border-gray);
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-header span {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: var(--color-cream-badge);
    border: 1px solid var(--color-gold);
    color: var(--color-gold-dark);
}

.process-content-wrapper {
    display: flex;
    max-width: 60%;
}

.process-left {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-num {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5.5rem;
    color: var(--color-gold);
    line-height: 0.8;
    margin-top: 0.1rem;
}

.process-main-p {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-slate-dark);
    margin-bottom: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.process-sub-p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.btn-process-cta {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-speed) var(--transition-ease);
    text-decoration: none;
}

.btn-process-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(207, 160, 44, 0.25);
}

/* Step 2 Section Styling */
.section-process-step2 {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-white);
    background-image: linear-gradient(to left, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 75%), url('../assets/project_imara.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border-gray);
}

.process-content-wrapper-right {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    max-width: 60%;
}

/* Step 3 Section Styling */
.section-process-step3 {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-white);
    background-image: linear-gradient(to right, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 75%), url('../assets/project_mwamba.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border-gray);
}

@media (max-width: 768px) {
    .section-process {
        background-image: linear-gradient(to bottom, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%), url('../assets/project_community.jpg');
        background-size: 100% 50%;
        background-position: bottom center;
        padding-bottom: 220px;
    }
    
    .section-process-step2 {
        background-image: linear-gradient(to bottom, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%), url('../assets/project_imara.jpg');
        background-size: 100% 50%;
        background-position: bottom center;
        padding-bottom: 220px;
    }
    
    .section-process-step3 {
        background-image: linear-gradient(to bottom, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%), url('../assets/project_mwamba.jpg');
        background-size: 100% 50%;
        background-position: bottom center;
        padding-bottom: 220px;
    }
    
    .process-content-wrapper,
    .process-content-wrapper-right {
        max-width: 100%;
    }
    
    .process-left {
        gap: 1.5rem;
    }
}

/* Supply Chain Comparison Styling */
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto 3rem auto;
}

.toggle-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    opacity: 0.5;
    cursor: pointer;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.toggle-label.active {
    color: var(--color-gold);
    opacity: 1;
    transform: scale(1.04);
}

.toggle-label:hover:not(.active) {
    opacity: 0.85;
    color: var(--color-slate-dark);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    transition: .3s var(--transition-ease);
    border: 2px solid var(--color-border-gray);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-slate-dark);
    border-radius: 50%;
    transition: transform var(--transition-speed) var(--transition-ease), width var(--transition-speed) var(--transition-ease), background-color var(--transition-speed) var(--transition-ease);
}

input:checked + .slider {
    border-color: var(--color-gold);
}

input:checked + .slider:before {
    transform: translateX(30px);
    background-color: var(--color-gold);
}

.switch:active .slider:before {
    width: 26px; /* Liquid stretching effect when switch is pressed */
}

.slider.round {
    border-radius: 34px;
}

/* Direct Static Supply Chain Grid */
.direct-supply-chain-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.direct-chain-card {
    flex: 1;
    background: var(--color-white);
    border: 1.5px solid var(--color-border-gray, #cbd5e1);
    border-radius: 12px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direct-chain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.direct-chain-card.highlight-card {
    border: 2px solid var(--color-gold);
    background: linear-gradient(135deg, #fffdf8, #fff8e7);
    box-shadow: 0 12px 30px rgba(207, 160, 44, 0.18);
}

.chain-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-gold);
    color: var(--color-slate-dark);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.chain-step-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-slate-dark);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.highlight-card .chain-step-title {
    color: var(--color-gold-dark, #b8860b);
}

.chain-step-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

.chain-arrow-connector {
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: bold;
    flex-shrink: 0;
}

.chain-arrow-mobile {
    display: none;
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .direct-supply-chain-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .chain-arrow-connector {
        display: none;
    }
    .chain-arrow-mobile {
        display: block;
    }
    .direct-chain-card {
        width: 100%;
    }
}

/* 7-Step Process CSS Grid */
.process-steps-7-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.step-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    position: relative;
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #d4af37;
}

.step-card-highlight {
    border: 2px solid #d4af37;
    background-color: #fffdf5;
    box-shadow: 0 4px 6px -1px rgba(212, 175, 55, 0.1);
}

.step-card-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.2);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.step-title {
    font-family: 'Anton', 'Arial Narrow', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #111827;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.step-card-highlight .step-title {
    color: #b45309;
}

.step-desc {
    font-size: 0.92rem;
    color: #4b5563;
    font-family: 'Instrument Sans', 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 992px) {
    .process-steps-7-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-steps-7-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .process-steps-7-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-steps-7-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.flowchart-container {
    position: relative;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: min-height var(--transition-speed) var(--transition-ease);
    overflow: hidden;
}

.flowchart-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity var(--transition-speed) var(--transition-ease), transform var(--transition-speed) var(--transition-ease), visibility var(--transition-speed) var(--transition-ease);
    pointer-events: none;
    visibility: hidden;
}

.flowchart-state.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.flowchart-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
    padding: 1rem 0;
}

.flow-box {
    background-color: var(--color-white);
    border: 1.5px solid var(--color-gold);
    padding: 1rem 1.5rem;
    min-width: 160px;
    text-align: center;
    position: relative;
    box-shadow: 4px 4px 0px var(--color-gold-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.flow-box:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--color-gold);
}

.flow-box.middleman {
    background-color: var(--color-tan-light); /* Light tan background */
}

.box-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-dark);
}

.flow-arrow {
    position: relative;
    width: 24px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-arrow::before {
    content: "➔";
    font-size: 1.3rem;
    color: var(--color-alert-orange); /* Orange/red arrow color */
    line-height: 1;
}

@media (max-width: 1024px) {
    .flowchart-row.traditional-row {
        gap: 1rem 0.5rem;
    }
    
    .flow-box {
        padding: 0.85rem 1rem;
        min-width: 130px;
    }
    
    .box-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .flowchart-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        height: 20px;
        width: auto;
    }
    
    .flow-arrow::before {
        content: "▼";
    }
}

/* Image Comparison Slider Styling */
.section-slider {
    position: relative;
    width: 100%;
    background-color: var(--color-slate-dark);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slider-header-overlay {
    position: absolute;
    top: 3.5rem;
    left: 5%;
    right: 5%;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.slider-title {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.35;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.base-image {
    background-size: cover;
    background-position: left center;
    z-index: 1;
}

.overlay-image {
    z-index: 2;
    overflow: hidden;
}

.overlay-inner-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: left center;
}

/* Draggable Handle styling */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-gold);
    z-index: 5;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-button {
    width: 46px;
    height: 46px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: ew-resize;
    user-select: none;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 900;
    border: 2px solid var(--color-white);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.slider-handle:hover .handle-button {
    background-color: var(--color-gold-hover);
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.handle-arrow-left,
.handle-arrow-right {
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease;
}

.slider-handle:hover .handle-arrow-left:not([style*="opacity: 0"]) {
    transform: translateX(-2px);
}

.slider-handle:hover .handle-arrow-right:not([style*="opacity: 0"]) {
    transform: translateX(2px);
}

.handle-line {
    flex-grow: 1;
    width: 2px;
    background-color: var(--color-gold);
}

/* Callouts & Tooltips styling */
.callout {
    pointer-events: none;
    z-index: 3;
    font-family: var(--font-body);
}

.callout-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    .slider-wrapper {
        height: 440px;
    }
    
    .slider-title {
        font-size: 1.35rem;
        padding: 0 1rem;
    }
    
    .callout-text {
        font-size: 0.7rem !important;
    }

    /* Hide callout vectors on small screens to prevent overflow and visual clutter */
    @media (max-width: 576px) {
        .callout {
            display: none !important;
        }
    }

    /* Toggle button layout on mobile */
    .toggle-container {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .toggle-label {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
        max-width: 280px;
        line-height: 1.4;
    }

    /* Mobile Dropdown Tappable Links */
    .dropdown-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: var(--color-text-light);
    }
}

/* ==========================================================================
   CIP Gold Plant Carousel Component
   ========================================================================== */
/* ==========================================================================
   CIP Gold Plant Carousel Component (Overhauled UI/UX)
   ========================================================================== */
.cip-carousel-section {
    background-color: #111827;
    background-image: radial-gradient(ellipse at top, rgba(31, 41, 55, 0.7) 0%, rgba(17, 24, 39, 0.98) 100%), url('../assets/cip_plant_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cip-carousel-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem auto;
}

.cip-carousel-header .section-title {
    color: #ffffff;
    font-size: 2.2rem;
    margin-top: 0.5rem;
}

.cip-carousel-wrapper {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 24px;
    background: #111827;
    background-image: radial-gradient(ellipse at top, rgba(31, 41, 55, 0.65) 0%, rgba(17, 24, 39, 0.98) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px -10px rgba(245, 158, 11, 0.15), 0 20px 45px rgba(0, 0, 0, 0.6);
    padding: 2.25rem 2.5rem;
}

.cip-slides-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: height 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cip-slides-track {
    display: flex;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
    align-items: flex-start;
}

.cip-slide {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1), transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    pointer-events: none;
    flex-shrink: 0;
}

.cip-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cip-slide.exit-left {
    opacity: 0;
    transform: translateX(-20px);
}

.cip-slide.enter-right {
    opacity: 0;
    transform: translateX(20px);
}

.cip-slide.enter-left {
    opacity: 0;
    transform: translateX(-20px);
}

/* Slide Typography & Badges */
.cip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cip-slide-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cip-lead-desc {
    font-size: 1.05rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    padding-left: 1rem;
    border-left: 3px solid #f59e0b;
}

.cip-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cip-card {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cip-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.cip-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cip-key-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cip-key-list li {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cip-key-list li strong {
    color: #fbbf24;
}

.cip-key-list li::before {
    content: "•";
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.cip-highlight-box {
    background: rgba(245, 158, 11, 0.05);
    border: none;
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.cip-highlight-title {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.cip-highlight-text {
    font-size: 0.925rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.5;
}

/* Slide 2 - Process Flow */
.cip-flow-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    background: rgba(17, 24, 39, 0.9);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: 1.75rem;
    justify-content: center;
}

.cip-flow-step {
    font-size: 0.825rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.cip-flow-arrow {
    color: #9ca3af;
    font-weight: bold;
    font-size: 0.85rem;
}

.cip-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cip-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cip-step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.cip-step-num {
    background: #f59e0b;
    color: #111827;
    font-weight: 800;
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cip-step-content h5 {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0 0 0.25rem 0;
}

.cip-step-content p {
    color: #9ca3af;
    font-size: 0.825rem;
    margin: 0;
    line-height: 1.4;
}

/* Slide 3 - CIP vs Other Methods */
.cip-table-container {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.cip-table th {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 2px solid #f59e0b;
}

.cip-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d1d5db;
}

.cip-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.cip-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cip-comp-card {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
}

.cip-comp-card h5 {
    color: #fbbf24;
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cip-comp-card p {
    color: #9ca3af;
    font-size: 0.825rem;
    margin: 0;
    line-height: 1.4;
}

.cip-banner-gold {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.25));
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cip-banner-gold-icon {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.cip-banner-gold p {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cip-banner-gold strong {
    color: #fbbf24;
}

/* Controls & Navigation */
.cip-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cip-counter {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 0.1em;
}

.cip-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cip-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.cip-dot.active {
    background: #fbbf24;
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.cip-arrows {
    display: flex;
    gap: 0.75rem;
}

.cip-arrow-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cip-arrow-btn:hover {
    background: #f59e0b;
    border-color: #fbbf24;
    color: #111827;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cip-arrow-btn svg {
    transition: stroke 0.3s ease;
}

.cip-arrow-btn:hover svg {
    stroke: #111827;
}

@media (max-width: 768px) {
    .cip-carousel-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .cip-grid-2 {
        grid-template-columns: 1fr;
    }
    .cip-comparison-grid {
        grid-template-columns: 1fr;
    }
    .cip-flow-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .cip-flow-arrow {
        display: none;
    }
}

/* Entrance Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   INSTITUTIONAL & INVESTOR PORTAL STYLES - AURUM NOVA
   ========================================================================== */

/* Hero Authority Section - Luxury Dark Theme */
.hero-authority {
    position: relative;
    min-height: 85vh;
    background-color: #0A1128;
    background-image: linear-gradient(180deg, rgba(17, 24, 39, 0.78) 0%, rgba(10, 17, 40, 0.90) 100%), url('../assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding: 150px 0 90px 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 35%, rgba(212, 175, 55, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

/* Cascading Fade-Up Animations */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-kicker,
.hero-authority .hero-title,
.hero-authority .hero-desc,
.hero-btn-group {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-kicker {
    display: inline-block;
    color: #D4AF37;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    animation-delay: 0s;
}

.hero-authority .hero-title {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    animation-delay: 0.2s;
    text-transform: none;
}

.hero-authority .hero-desc {
    color: #D1D5DB;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 2.25rem;
    animation-delay: 0.4s;
    font-weight: 400;
}

.hero-btn-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    animation-delay: 0.6s;
}

/* CTA Buttons Luxury Styling & Hover Lift */
.btn-gold-hero {
    background-color: #D4AF37;
    color: #0A1128;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 2.25rem;
    border-radius: 4px;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold-hero:hover {
    background-color: #E5C158;
    border-color: #E5C158;
    color: #0A1128;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline-hero {
    background-color: transparent;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 2.25rem;
    border-radius: 4px;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-hero:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

/* Quick Facts Data Banner */
.quick-facts-banner {
    background-color: var(--color-navy-dark);
    border-top: 1px solid var(--color-navy-border);
    border-bottom: 3px solid var(--color-gold);
    padding: 4.5rem 0;
    position: relative;
    z-index: 10;
}

.quick-facts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-facts-title {
    color: var(--color-white);
    font-size: 2.2rem;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.quick-fact-card {
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    padding: 2.25rem 1.75rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.quick-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold-metallic);
    opacity: 0.8;
}

.quick-fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.15);
}

.fact-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Qualitative Development Status Cards */
.qualitative-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.75rem;
    text-align: center;
}

.qualitative-heading {
    color: #D4AF37;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    text-align: center;
}

.qualitative-subtitle {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Investor Relations Portal Page */
.investor-hero {
    position: relative;
    background-color: var(--color-navy-deep);
    background-image: linear-gradient(180deg, rgba(6, 11, 30, 0.9) 0%, rgba(10, 17, 40, 0.96) 100%), url('../assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 70px 0;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-navy-border);
}

.investor-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.investor-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin-bottom: 2.5rem;
}

.investor-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.quick-stat-badge {
    background: rgba(16, 25, 53, 0.8);
    border: 1px solid var(--color-navy-border);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-ticker-label {
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.stat-ticker-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
}

.stat-ticker-val.text-green { color: #22C55E; }
.stat-ticker-val.text-gold { color: var(--color-gold); }

.stat-change {
    font-size: 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    margin-left: 0.25rem;
}

.section-dark-portal {
    background-color: var(--color-navy-deep);
    color: var(--color-white);
    padding: 5rem 0;
}

.section-dark-portal .section-title,
.section-dark-portal h1,
.section-dark-portal h2,
.section-dark-portal h3 {
    color: #FFFFFF !important;
}

.section-dark-portal p {
    color: #CBD5E1 !important;
}

.investor-section-header {
    margin-bottom: 3rem;
}

.grid-investor-stock {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-investor-stock {
        grid-template-columns: 1fr;
    }
}

.investor-card {
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stock-quote-card {
    border-top: 3px solid var(--color-gold);
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.stock-exchange {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.stock-ticker-heading {
    font-size: 2.2rem;
    color: var(--color-white);
    margin: 0.1rem 0;
}

.stock-company-name {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.current-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.price-change.positive {
    color: #22C55E;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.stock-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    background: rgba(6, 11, 30, 0.5);
    padding: 1.25rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
    .stock-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.metric-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-white);
}

.chart-wrapper {
    margin-top: 1.5rem;
}

.chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.chart-timeframes {
    display: flex;
    gap: 0.35rem;
}

.tf-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tf-btn.active, .tf-btn:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    border-color: var(--color-gold);
}

.svg-chart-container {
    width: 100%;
    height: 160px;
    background: rgba(6, 11, 30, 0.6);
    border-radius: 6px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stock-svg-graph {
    width: 100%;
    height: 100%;
}

.card-title-gold {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.75rem;
}

.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.highlights-list li {
    display: flex;
    gap: 1rem;
}

.hl-icon {
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.highlights-list strong {
    color: var(--color-white);
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.highlights-list p {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.download-factsheet-box {
    margin-top: 1.5rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Press Releases Feed */
.press-releases-feed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.press-card {
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-radius: 8px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 90px 1fr 100px;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .press-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.press-card:hover {
    border-color: var(--color-gold);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.press-date-box {
    background: rgba(6, 11, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.press-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.press-month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.press-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.press-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.tag-financial { background: rgba(34, 197, 94, 0.15); color: #4ADE80; border: 1px solid rgba(34, 197, 94, 0.3); }
.tag-exploration { background: rgba(212, 175, 55, 0.15); color: var(--color-gold); border: 1px solid rgba(212, 175, 55, 0.3); }
.tag-esg { background: rgba(56, 189, 248, 0.15); color: #38BDF8; border: 1px solid rgba(56, 189, 248, 0.3); }
.tag-governance { background: rgba(168, 85, 247, 0.15); color: #C084FC; border: 1px solid rgba(168, 85, 247, 0.3); }

.press-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.press-title {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.press-title a:hover {
    color: var(--color-gold);
}

.press-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.press-action {
    justify-self: end;
}

.btn-icon-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    width: 60px;
    height: 60px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.btn-icon-download span {
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 2px;
}

.btn-icon-download:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Financial Reports Grid */
.report-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-gray);
    border-top: 3px solid var(--color-gold);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.report-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.pdf-badge {
    background: rgba(212, 175, 55, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.report-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold-dark);
    background: var(--color-cream-badge);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.report-title {
    font-size: 1.15rem;
    color: var(--color-navy-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.report-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-gray);
}

.report-size {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.btn-report-download {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-navy-dark);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-report-download:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
}

/* ==========================================================================
   PROJECTS, ESG, LEADERSHIP & COMPLIANCE STYLES - AURUM NOVA
   ========================================================================== */

.text-placeholder {
    color: var(--color-gold) !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
    font-size: 0.85rem !important;
}

/* Projects Asset Framework Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-asset-card {
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-top: 3px solid var(--color-gold);
    border-radius: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 100%;
}

.project-asset-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.18);
}

.asset-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.asset-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}

.asset-code {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.asset-title {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.asset-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.asset-fields-list {
    background: rgba(6, 11, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.asset-field-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    gap: 0.5rem;
}

.asset-field-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.field-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.field-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: right;
}

.asset-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
}

/* ESG Infrastructure Metric Box */
.esg-metric-box {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.esg-metric-box-light {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-gray);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-key {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.metric-value-placeholder {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.metric-value-placeholder-dark {
    color: var(--color-navy-dark);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

/* Leadership Grid & Profile Cards */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.leader-profile-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-gray);
    border-top: 3px solid var(--color-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.leader-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.profile-headshot-box {
    height: 220px;
    background: var(--color-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--color-border-gray);
}

.profile-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.member-name {
    font-size: 1.2rem;
    color: var(--color-navy-dark);
    margin-bottom: 0.25rem;
}

.member-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.member-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border-gray);
    padding-top: 0.75rem;
}

/* Mobile Responsiveness Audit & Media Query Enforcements (< 768px) */
@media (max-width: 768px) {
    .projects-grid,
    .leadership-grid,
    .grid-investor-stock,
    .quick-facts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .asset-field-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .field-val {
        text-align: left;
    }

    .card-header-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .price-change.positive {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   ABOUT PAGE IDENTITY, MISSION & VISION, AND VALUES GRID
   ========================================================================== */

/* Mission & Vision Split Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.mv-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-gray);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.mv-accent-line {
    width: 45px;
    height: 4px;
    background: #D4AF37;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

/* Our Values 7-Card Icon Flexbox Grid (4-3 Centered Desktop Structure) */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1140px;
}

.value-card {
    flex: 0 0 calc(25% - 1.15rem);
    max-width: calc(25% - 1.15rem);
    min-height: 180px;
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: var(--transition-standard);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.value-card:hover {
    transform: translateY(-2px);
    border-top-color: #FFD700;
    border-left-color: rgba(255, 215, 0, 0.4);
    border-right-color: rgba(255, 215, 0, 0.4);
    border-bottom-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.value-title {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

/* Responsiveness for Values Flexbox Grid (< 1024px, < 768px, < 480px) */
@media (max-width: 1024px) {
    .value-card {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .value-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }

    .ceo-profile-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .value-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   CEO EXECUTIVE PROFILE & LEADERSHIP STYLES
   ========================================================================== */

.ceo-profile-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.ceo-media-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo-headshot-frame {
    width: 100%;
    max-width: 360px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #D4AF37;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.25rem;
    background: #0A1128;
}

.ceo-headshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn-linkedin-connect {
    width: 100%;
    max-width: 360px;
    background-color: #0A66C2;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-linkedin-connect:hover {
    background-color: #004182;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 102, 194, 0.35);
}

.ceo-details-column {
    display: flex;
    flex-direction: column;
}

.ceo-name {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-navy-dark);
    font-weight: 800;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    line-height: 1.15;
}

.ceo-title {
    color: #D4AF37;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    display: block;
}

.ceo-bio-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.text-placeholder-block {
    background: rgba(212, 175, 55, 0.06);
    border-left: 4px solid #D4AF37;
    padding: 1.25rem 1.5rem;
    color: #D4AF37;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-radius: 0 6px 6px 0;
    margin: 0;
}

.future-executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    min-height: 120px;
    border: 2px dashed rgba(10, 17, 40, 0.15);
    border-radius: 8px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   PROJECTS PORTFOLIO & PROJECT DETAIL TEMPLATE STYLES
   ========================================================================== */

.project-asset-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-thumb-box {
    position: relative;
    width: 100%;
    height: 190px;
    background: #0A1128;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.thumb-placeholder-svg,
.thumb-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 40, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.project-asset-card:hover .thumb-overlay {
    opacity: 1;
}

.view-detail-btn {
    background: #D4AF37;
    color: #0A1128;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
}

.asset-card-body {
    padding: 1.5rem;
}

.asset-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.badge-operational {
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-development {
    background: rgba(234, 179, 8, 0.15);
    color: #FACC15;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.badge-exploration {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Project Detail Layout (Core Details Grid) */
.project-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: flex-start;
}

.detail-content-card {
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.development-plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.development-plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-bullet-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Sidebar Data Card */
.sidebar-data-card {
    background: #0A1128;
    border: 1px solid var(--color-navy-border);
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.sidebar-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}

.sidebar-title {
    color: #FFFFFF;
    font-size: 1.35rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0.5rem;
}

.sidebar-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.sidebar-stat-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: right;
}

/* Geological Information Section */
.geological-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.geo-info-card {
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-left: 4px solid #D4AF37;
    padding: 1.5rem 1.75rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.geo-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.geo-val {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Project Gallery Grid */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.gallery-placeholder-card {
    height: 180px;
    background: #0A1128;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.gallery-placeholder-card:hover {
    border-color: #D4AF37;
    background: rgba(10, 17, 40, 0.8);
}

.gallery-placeholder-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   OUR BUSINESS SECTION & 6-PILLAR GRID STYLES
   ========================================================================== */

.our-business-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-navy-dark);
    margin: 0;
    position: relative;
    display: block;
    text-align: inherit;
}

.gold-underline {
    width: 60px;
    height: 4px;
    background: #D4AF37;
    border-radius: 2px;
    margin: 0.75rem auto 0 auto;
}

.our-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.business-pillar-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 2.25rem 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.business-pillar-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.pillar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pillar-icon {
    font-size: 2.2rem;
    margin: 0;
}

.pillar-status-badge {
    font-size: 0.725rem;
    padding: 4px 10px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    display: inline-block;
}

.badge-active {
    background: rgba(34, 197, 94, 0.12);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.badge-in-development {
    background: rgba(234, 179, 8, 0.14);
    color: #B45309;
    border: 1px solid rgba(234, 179, 8, 0.4);
}

.badge-planned {
    background: rgba(59, 130, 246, 0.12);
    color: #1D4ED8;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.badge-future-phase {
    background: rgba(107, 114, 128, 0.12);
    color: #4B5563;
    border: 1px solid rgba(107, 114, 128, 0.35);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.pillar-desc {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

.partnership-placeholder-banner {
    background: rgba(10, 17, 40, 0.04);
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    color: var(--color-gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

/* Tablet (2 cols) & Mobile (1 col) Media Queries */
@media (max-width: 1024px) {
    .our-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .our-business-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ==========================================================================
   MINING LIFECYCLE 11-STEP VERTICAL TIMELINE STYLES
   ========================================================================== */

.lifecycle-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-central-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, #D4AF37 0%, rgba(212, 175, 55, 0.4) 50%, #D4AF37 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-step-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3.5rem;
    width: 100%;
}

.timeline-step-item:last-child {
    margin-bottom: 0;
}

.step-odd {
    justify-content: flex-start;
}

.step-even {
    justify-content: flex-end;
}

.timeline-step-content {
    width: 44%;
    background: var(--color-navy-medium);
    border: 1px solid var(--color-navy-border);
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 2rem 2.25rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-step-content:hover {
    transform: translateY(-4px);
    border-color: #D4AF37;
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.2);
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #0A1128;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.step-heading {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.step-desc {
    color: #9CA3AF;
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for Vertical Timeline (< 768px) */
@media (max-width: 768px) {
    .timeline-central-line {
        left: 20px;
        transform: none;
    }

    .timeline-step-item {
        justify-content: flex-end !important;
        margin-bottom: 2.5rem;
    }

    .timeline-node {
        left: 20px;
        transform: translate(-50%, -50%);
    }

    .timeline-step-content {
        width: calc(100% - 50px) !important;
    }
}

/* ==========================================================================
   ESG & SUSTAINABILITY 3-PILLAR GRID STYLES
   ========================================================================== */

.esg-3pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.esg-pillar-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 3rem 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.esg-pillar-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.esg-pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.esg-pillar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F3F4F6;
}

.esg-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.esg-custom-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-navy-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.esg-list-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Responsiveness (< 768px) */
@media (max-width: 768px) {
    .esg-3pillar-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ==========================================================================
   COMMUNITY DEVELOPMENT 7-PILLAR GRID STYLES
   ========================================================================== */

.community-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.community-pillar-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.community-pillar-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.pillar-image-container {
    aspect-ratio: 16 / 9;
    background-color: #F3F4F6;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
}

.pillar-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: #F8FAFC;
}

.placeholder-label {
    font-size: 0.725rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.pillar-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-card-content .pillar-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 1rem;
}

.case-study-box {
    background: rgba(212, 175, 55, 0.06);
    border-left: 4px solid #D4AF37;
    padding: 1.15rem 1.25rem;
    color: #D4AF37;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: 0 6px 6px 0;
    line-height: 1.5;
}

.pillar-card-full-width {
    grid-column: 1 / -1;
    max-width: 840px;
    justify-self: center;
    width: 100%;
}

/* Tablet (2 cols) & Mobile (1 col) Media Queries */
@media (max-width: 1024px) {
    .community-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pillar-card-full-width {
        grid-column: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .community-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ==========================================================================
   LEGAL & COMPLIANCE HUB 9-CATEGORY STYLES
   ========================================================================== */

.compliance-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

.compliance-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.compliance-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.compliance-card-header {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.compliance-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin: 0;
    line-height: 1.3;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.compliance-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.2;
    flex: 0 0 auto !important;
    max-width: 100% !important;
    text-align: right;
}

.badge-verified {
    background: rgba(34, 197, 94, 0.12);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.badge-pending {
    background: rgba(234, 179, 8, 0.14);
    color: #B45309;
    border: 1px solid rgba(234, 179, 8, 0.4);
}

.compliance-card-desc {
    font-size: 0.925rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 1.75rem 0;
    flex-grow: 1;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
}

.compliance-download-container {
    margin-top: auto;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.btn-compliance-download {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    background: var(--color-navy-dark);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.75rem 1rem !important;
    border-radius: 6px;
    border: 1px solid var(--color-navy-border);
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    height: auto !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

.btn-compliance-download span {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
}

.btn-compliance-download:hover:not(.disabled) {
    background: #0D1635;
    color: #FFFFFF;
    border-color: #D4AF37;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.2);
}

.btn-compliance-download.disabled {
    background: #F1F5F9;
    color: #94A3B8;
    border-color: #E2E8F0;
    cursor: not-allowed;
    opacity: 0.8;
}

.compliance-card-full-width {
    grid-column: 1 / -1;
}

.legal-disclaimer-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
    padding: 2rem 2.5rem;
    margin-bottom: 6rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.legal-disclaimer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 0.75rem;
}

.legal-disclaimer-text {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
}

/* Responsiveness (< 1024px) */
@media (max-width: 1024px) {
    .compliance-categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .compliance-card-full-width {
        grid-column: auto;
    }

    .compliance-card {
        padding: 1.5rem 1.25rem !important;
    }

    .legal-disclaimer-box {
        padding: 1.5rem !important;
    }
}

/* ==========================================================================
   UNIVERSAL POLICY TEMPLATE (policies.php) STYLES
   ========================================================================== */

.policy-safety-banner {
    background: #DC2626;
    color: #FFFFFF;
    padding: 0.9rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    position: relative;
    z-index: 100;
}

.policy-document-card {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-top: 4px solid #D4AF37;
    border-radius: 8px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.policy-watermark-tag {
    background: rgba(220, 38, 38, 0.08);
    border: 1px dashed rgba(220, 38, 38, 0.4);
    color: #DC2626;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.policy-header {
    margin-bottom: 2.5rem;
}

.policy-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--color-navy-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.825rem;
    color: #64748B;
    font-weight: 600;
}

.policy-meta .meta-separator {
    color: #CBD5E1;
}

.policy-body-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.policy-body-content h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin: 2.25rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #F1F5F9;
}

.policy-body-content p {
    margin-bottom: 1.35rem;
}

.policy-callout-box {
    background: #F8FAFC;
    border-left: 4px solid #D4AF37;
    border-radius: 0 6px 6px 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.policy-footer-stamp {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: flex-end;
}

.stamp-box {
    background: rgba(10, 17, 40, 0.04);
    border: 1px solid var(--color-navy-border);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 0.825rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.stamp-label {
    color: #64748B;
    font-weight: 600;
}

.stamp-value {
    color: #D4AF37;
    font-weight: 800;
}

/* Responsiveness (< 768px) */
@media (max-width: 768px) {
    .policy-document-card {
        padding: 2rem 1.5rem !important;
    }

    .policy-safety-banner {
        font-size: 0.75rem !important;
        padding: 0.75rem 1rem !important;
    }
}

/* ==========================================================================
   AURUM NOVA UPDATES PORTAL & SINGLE ARTICLE STYLES
   ========================================================================== */

.updates-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-pill {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--color-navy-dark);
    color: var(--color-gold);
    border-color: var(--color-navy-border);
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.2);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.update-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.update-image-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #F8FAFC;
}

.update-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.update-card:hover .update-image {
    transform: scale(1.05);
}

.update-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-navy-dark);
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2;
}

.update-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.update-metadata {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.update-metadata .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.update-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.update-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.update-title a:hover {
    color: #D4AF37;
}

.update-excerpt {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.update-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
}

.update-read-more:hover {
    color: #D4AF37;
}

/* Single Article Template (.single-update-card) */
.single-update-card {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-top: 4px solid #D4AF37;
    border-radius: 8px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.update-header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.meta-inline-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 600;
}

.single-update-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--color-navy-dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.single-update-image-box {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid #E2E8F0;
}

.single-update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-update-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.single-update-body .lead-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1E293B;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.single-update-body h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin: 2.25rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #F1F5F9;
}

.single-update-body p {
    margin-bottom: 1.35rem;
}

.verification-notice-banner {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-left: 4px solid #D4AF37;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-navy-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sources-references-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 2rem 2.25rem;
    margin-top: 3.5rem;
}

.sources-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sources-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

/* Tablet & Mobile Responsiveness (< 1024px) */
@media (max-width: 1024px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .single-update-card {
        padding: 2rem 1.5rem !important;
    }
}

/* ==========================================================================
   MEDIA GALLERY PORTAL & LIGHTBOX MODAL STYLES
   ========================================================================== */

.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.gallery-filter-pill {
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.gallery-filter-pill:hover,
.gallery-filter-pill.active {
    background: var(--color-navy-dark);
    color: var(--color-gold);
    border-color: var(--color-navy-border);
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.2);
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.gallery-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.gallery-image-frame {
    aspect-ratio: 4 / 3;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
}

.gallery-placeholder-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-placeholder-box {
    transform: scale(1.05);
}

.placeholder-status-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 0.5rem;
}

.placeholder-cat-badge {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-gold-dark);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 17, 40, 0) 0%, rgba(10, 17, 40, 0.95) 100%);
    padding: 2rem 1.25rem 1.25rem 1.25rem;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-category {
    font-size: 0.7rem;
    font-weight: 800;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.overlay-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.overlay-click-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(8px);
}

.lightbox-content-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    background: #0A1128;
    border: 1px solid var(--color-navy-border);
    border-top: 4px solid #D4AF37;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lightbox-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.lightbox-close-btn:hover {
    background: #D4AF37;
    color: #0A1128;
}

.lightbox-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    font-size: 2.5rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav-btn:hover {
    background: #D4AF37;
    color: #0A1128;
}

.nav-prev {
    left: 1.25rem;
}

.nav-next {
    right: 1.25rem;
}

.lightbox-display-area {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #060B1A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    border-bottom: 1px solid var(--color-navy-border);
}

.lightbox-placeholder-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-caption-bar {
    padding: 2rem 2.5rem;
    background: #0A1128;
}

.lightbox-cat-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.lightbox-desc {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* Responsiveness (< 1024px) */
@media (max-width: 1024px) {
    .media-gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 768px) {
    .media-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .lightbox-content-box {
        max-width: 100%;
    }

    .lightbox-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   CONTACT US PAGE OVERHAUL STYLES
   ========================================================================== */

.contact-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.contact-info-lead {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.65;
    margin-bottom: 2.25rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
}

.contact-detail-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-navy-dark);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.5;
}

.interactive-map-frame {
    width: 100%;
    margin-top: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: #0A1128;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
}

.map-embed-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
    border-radius: 8px;
}

.google-maps-placeholder-frame {
    width: 100%;
    aspect-ratio: 16 / 8;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.maps-placeholder-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.maps-placeholder-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.925rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-navy-dark);
    margin-bottom: 0.5rem;
}

.required-star {
    color: #D4AF37;
}

.contact-form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    border-radius: 6px;
    transition: all 0.25s ease;
    color: var(--color-navy-dark);
}

.contact-form-control:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.btn-send-enquiry {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #D4AF37;
    color: #0A1128;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 0.5rem;
}

.btn-send-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    background: #E5BE3B;
}

/* Responsiveness (< 1024px) */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem !important;
    }
}

/* Operational Location UX Link Styling */
a.location-link, .location-link {
    color: #FFF8DC !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.2s ease;
}

a.location-link:hover, .location-link:hover {
    color: #FFD700 !important;
    text-decoration: none !important;
}

.contact-detail-value a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value a:hover {
    color: #FFD700;
    text-decoration: none;
}

.contact-detail-value a.location-link {
    color: #FFF8DC !important;
    background: var(--color-navy-dark, #0A1128);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

.contact-detail-value a.location-link:hover {
    color: #FFD700 !important;
    text-decoration: none !important;
    border-color: #FFD700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

/* Premium Pill Badge Utility */
.badge-pill {
    display: inline-block !important;
    width: fit-content !important;
    border: 1px solid rgba(255, 215, 0, 0.6) !important;
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.06) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.35rem 1rem !important;
    border-radius: 9999px !important;
    transition: all 0.3s ease !important;
}

.badge-pill:hover {
    border-color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.12) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Global Breadcrumb & Hero Category Badge Removal */
.breadcrumbs-kicker,
.breadcrumbs,
.breadcrumbs-container,
.hero-breadcrumbs,
.page-hero .badge-pill,
.page-hero .badge-gold-glow,
.hero-category-badge,
.pill-label {
    display: none !important;
}

/* ==========================================================================
   FLOATING WHATSAPP CTA WIDGET STYLES
   ========================================================================== */

.whatsapp-float-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.whatsapp-float-widget:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
    background: #20BA5A;
}

.whatsapp-float-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .whatsapp-float-widget {
        bottom: 1.5rem;
        right: 1.25rem;
        padding: 0.75rem;
        z-index: 1000;
    }
    .whatsapp-float-label {
        display: none;
    }
}

/* ==========================================================================
   STAGING PRE-LAUNCH VERIFICATION HIGHLIGHTS & CITATIONS
   ========================================================================== */

.staging-unverified-data {
    background-color: rgba(254, 240, 138, 0.95) !important;
    color: #854D0E !important;
    border: 1px dashed #D97706 !important;
    padding: 0.15rem 0.45rem !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.staging-unverified-data::after {
    content: "[VERIFY]" !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #92400E !important;
    letter-spacing: 0.03em !important;
}

.citation-source-note {
    font-size: 0.8rem !important;
    color: #64748B !important;
    font-style: italic !important;
    margin-top: 1rem !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid #E2E8F0 !important;
    display: block !important;
}

/* ==========================================================================
   GLOBAL TRANSITION & ANIMATION SYSTEM
   ========================================================================== */

:root {
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Page Load Fade-In */
main {
    animation: pageFadeIn 0.6s ease-in-out forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-Reveal Base Utility Classes */
.reveal,
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.active,
.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Stagger Delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Standardized Interactive Hovers */
.btn,
.btn-primary,
.btn-outline,
.btn-gold-hero,
.btn-outline-hero,
.btn-compliance-download,
.btn-send-enquiry {
    transition: var(--transition-standard) !important;
}

.btn:hover,
.btn-primary:hover,
.btn-gold-hero:hover,
.btn-outline-hero:hover,
.btn-compliance-download:hover,
.btn-send-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Image Card Scale Zoom Inside Overflow-Hidden Container */
.project-card,
.update-card,
.card-industrial,
.news-card,
.media-card {
    overflow: hidden;
    transition: var(--transition-standard);
}

.project-card-bg,
.news-img,
.update-image,
.media-img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.project-card:hover .project-card-bg,
.news-card:hover .news-img,
.update-card:hover .update-image,
.media-card:hover .media-img {
    transform: scale(1.03) !important;
}

/* Accessibility / Reduced Motion Safety */
@media (prefers-reduced-motion: reduce) {
    main {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .reveal,
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .btn:hover,
    .project-card:hover .project-card-bg,
    .update-card:hover .update-image {
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE ARCHITECTURE (MOBILE & TABLET OVERHAUL)
   ========================================================================== */

/* Prevent Horizontal Scrolling Globally */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure images and media elements never breach container boundaries */
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

/* Fluid Container Padding */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box;
}

/* Jasiri Grid Layout Base (Desktop) */
.jasiri-grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3.5rem;
    align-items: start;
    width: 100%;
}

.jasiri-sidebar {
    position: sticky;
    top: 2rem;
    width: 360px;
    min-width: 320px;
    max-width: 100%;
}

/* Tablet & iPad Breakpoints (768px - 1024px) */
@media (max-width: 1024px) {
    .mobile-toggle {
        display: block !important;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #101010 !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1.5rem 3rem 1.5rem;
        gap: 0 !important;
        transition: all 0.4s ease;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 215, 0, 0.15);
    }
    .nav-menu.active {
        right: 0;
    }
    
    /* 3 and 4 column grids wrap into 2 columns on tablet */
    .projects-grid,
    .esg-3pillar-grid,
    .business-pillar-grid,
    .media-gallery-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    /* Jasiri page stacks to 1 column on tablet and mobile */
    .jasiri-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        width: 100% !important;
    }

    .jasiri-sidebar {
        position: static !important;
        top: auto !important;
        width: 100% !important;
    }
}

/* Mobile & iPhone Breakpoints (< 768px) */
@media (max-width: 768px) {
    /* Fluid Typography Scaling */
    h1, .hero-heading, .page-hero-heading {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
        line-height: 1.2 !important;
        word-break: break-word;
    }
    h2, .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem) !important;
        line-height: 1.25 !important;
    }
    h3 {
        font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
    }
    .hero-tagline, .page-hero-tagline {
        font-size: 1rem !important;
    }

    /* Force all multi-column grids into single vertical column */
    .projects-grid,
    .esg-3pillar-grid,
    .business-pillar-grid,
    .media-gallery-grid,
    .news-grid,
    .split-layout,
    .jasiri-grid-layout,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Disable sticky positioning on sidebars for mobile */
    .sidebar,
    .jasiri-sidebar,
    .jasiri-grid-layout .sidebar {
        position: static !important;
        top: auto !important;
        width: 100% !important;
    }
}

/* Quick Facts & Data Sidebar Overflow Protection & Stacking */
.quick-facts-list {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.quick-facts-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding: 0.85rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.quick-facts-row:last-child {
    border-bottom: none !important;
}

.quick-facts-label {
    color: #9CA3AF !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    flex-shrink: 0 !important;
    width: auto !important;
    max-width: 40% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.quick-facts-val-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    flex-grow: 1 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.quick-facts-val {
    color: #FFFFFF !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-align: right !important;
    max-width: 100% !important;
    display: inline-block !important;
    width: auto !important;
}

.quick-facts-val-highlight {
    color: #FFD700 !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-align: right !important;
    max-width: 100% !important;
    display: inline-block !important;
    width: auto !important;
}

.quick-facts-verify-tag {
    font-size: 0.65rem !important;
    color: #E9C46A !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    margin-top: 0.35rem !important;
    display: block !important;
    white-space: nowrap !important;
    text-align: right !important;
}

.btn-send-enquiry {
    background: #FFD700 !important;
    color: #101010 !important;
    border: 2px solid #FFD700 !important;
    font-family: var(--font-heading);
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    padding: 0.85rem 0.25rem !important;
    border-radius: 4px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25) !important;
}

.btn-send-enquiry:hover {
    background: #101010 !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) !important;
}

/* Scroll Offset & Highlight Pulse Animation */
[id] {
    scroll-margin-top: 110px;
}

.highlight-section {
    animation: highlightPulse 2.5s ease;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
        border-color: #FFD700 !important;
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* ==========================================================================
   INVESTORS & PARTNERS PORTAL MOBILE RESPONSIVENESS OVERHAUL
   ========================================================================== */

/* 1. Data Table Responsive Overflow Safety */
.table-responsive-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

.table-responsive-wrapper table {
    width: 100% !important;
    min-width: 600px !important;
}

/* 2. Financial Grid Stacking (< 768px & iPhone Viewports) */
@media (max-width: 768px) {
    .grid-investor-stock,
    .press-releases-feed,
    .grid-3 {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 1.5rem !important;
    }

    .stock-metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
    }

    .investor-quick-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .quick-stat-badge {
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: space-between !important;
        padding: 0.75rem 1rem !important;
    }

    .card-header-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .stock-price-box {
        text-align: left !important;
    }

    .price-change.positive {
        justify-content: flex-start !important;
    }

    .chart-controls {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    .chart-timeframes {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .tf-btn {
        flex: 1 !important;
        text-align: center !important;
        padding: 0.4rem 0 !important;
        min-height: 38px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .press-card {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1.25rem !important;
    }

    .press-action {
        justify-self: stretch !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
    }

    /* 3. Touch-Friendly PDF Links (Min 48px Height & 100% Width) */
    .btn-report-download,
    .btn-icon-download,
    .download-factsheet-box .btn,
    .download-factsheet-box a,
    .btn-full {
        width: 100% !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.875rem !important;
        font-weight: 800 !important;
        box-sizing: border-box !important;
        border-radius: 6px !important;
    }

    .btn-icon-download {
        flex-direction: row !important;
        gap: 0.5rem !important;
        height: auto !important;
    }

    .btn-icon-download span {
        font-size: 0.85rem !important;
        margin-top: 0 !important;
    }

    .report-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
        text-align: center !important;
    }

    .report-card {
        padding: 1.25rem !important;
    }

    .investor-card {
        padding: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .investor-quick-stats {
        grid-template-columns: 1fr !important;
    }
}

/* Footer Contact Data Email Link */
.footer-email-link {
    color: #FFF8DC !important;
    text-decoration: none !important;
    font-weight: 700;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-email-link:hover,
.footer-email-link:focus {
    color: #FFD700 !important;
    text-decoration: none !important;
}






