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

:root {
    --gold: #ff6f5e;
    --black: #444444;
    --white: #ffffff;
    --gray-light: #888888;
    --gray-medium: #0c2e33;
    --gray-dark: #15454b;
    --text-light: #f1f5f9;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1340px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

h2 {
    color: var(--gray-dark);
}

h3 {
    color: var(--gray-medium);
}



.dark-section {
    background: #0c2e33;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255, 111, 94, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 70% 50% at 80% 60%, rgba(255, 111, 94, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 50% 0%, rgba(140, 110, 50, 0.06) 0%, transparent 60%);
}

.section-title-large,
.asset-title {
    color: white;
}

/* Header */
.header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #e8e8e8;
}

.header-top-bar {
    background: #0c2e33;
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.header-top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-top-bar a:hover {
    color: var(--gold);
}

.header-top-bar .material-icons {
    font-size: 14px;
}

.header-top-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    margin: 0 15px;
    vertical-align: middle;
}

.header .navbar {
    padding: 14px 0;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}

.header .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-medium) !important;
    letter-spacing: 0.3px;
    padding: 8px 0 !important;
    position: relative;
    transition: color 0.3s;
}


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

.header .nav-link.active {
    color: var(--gold) !important;
    font-weight: 700;
}

.header .nav-link:hover {
    color: var(--black) !important;
}

/* Navbar dropdown */
.header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-collapse .cta-button {
    min-width: 150px;
}


/* Navbar dropdown */
.header .dropdown-toggle::after {
    display: none;
}

.header .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.header .dropdown.show .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.header .dropdown-item:hover,
.header .dropdown-item:focus {
    background: rgba(255, 111, 94, 0.1);
    color: var(--gold);
}

.header .dropdown-item.active {
    background: rgba(255, 111, 94, 0.12);
    color: var(--gold);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px 5px 5px;
    background: linear-gradient(360deg, #e0563b, #ff8c7d);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    height: 50px;
    width: max-content;
    min-width: 200px;
    justify-content: center;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}




.cta-button:hover {

    box-shadow: 0 8px 20px rgb(131 131 131 / 62%);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all 0.2s ease-in;
}

.cta-button img {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 5px;
}

.cta-button.secondary:hover {
    background: var(--gold);
    color: var(--white);
}

.cta-button.center {
    margin: 40px auto;
    display: flex;
}

.button-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.jpg');
    background-size: cover !important;
    background-position: bottom !important;
    color: var(--white);
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Push content up slightly so it doesn't overlap the curved image bottom too much */
    padding-bottom: 100px;
    max-width: 900px;
}

/* Premium Typography */
.hero-title {
    /* Using clamp for responsive font sizing that looks good on all devices */
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Premium Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: linear-gradient(360deg, #e0563b, #ff8c7d);
    color: var(--white);
    padding: 14px 20px 14px 28px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 20px -10px rgba(255, 101, 12, 0.5);
}

.btn-premium-primary:hover {
    box-shadow: 0 8px 20px rgb(131 131 131 / 62%);

}

.btn-premium-primary i {
    font-size: 24px;
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    /* Glass effect */
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* --- Hero Stats Box (For the White Cutout) --- */
.hero-stats-box {
    width: 750px;
    justify-content: center;
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    padding: 20px 0;
    display: flex;
    align-items: center;

    gap: 35px;
    z-index: 10;
}

.hero-stat-item {
    flex-direction: column-reverse;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    /* Using a dark green/black color like the reference */
    color: var(--gold);
    line-height: 1;
}

.stat-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--gray-medium);

}

.stat-divider {
    width: 2px;
    height: 40px;
    background-color: #e5e7eb;
}

/* Mine Page Stats Box (same look as hero-stats-box) */
.mine-stats-box {
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mine-stats-box .stat-num {
    font-size: clamp(22px, 2.5vw, 33px);
}


.title-line-1 {
    font-family: 'Sora', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.title-line-2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.title-outline {
    font-family: 'Raleway', sans-serif;
    font-size: 64px;
    font-weight: 800;
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}

.title-solid {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
}

.hero-description {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
    max-width: 616px;
    margin-left: auto;
    margin-right: auto;
}

/* Stock Ticker */
.stock-ticker {
    max-width: max-content;
    margin-inline: auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.stock-ticker-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    opacity: 0.7;
}

.ticker-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

.ticker-prices {
    display: flex;
    gap: 20px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.ticker-symbol {
    font-weight: 500;
}

.ticker-price {
    font-weight: 700;
}

.ticker-change {
    font-weight: 500;
    font-size: 10px;
}

.ticker-change.positive {
    color: #4ade80;
}

.ticker-change.negative {
    color: #f87171;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-line {
    width: 50px;
    height: 1px;
    border-bottom: 1px dashed var(--gold);
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.section-title-large {
    font-family: 'Sora', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-highlight {
    color: var(--gold);
}

.section-description {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gray-medium);
    margin-bottom: 40px;
}

/* Patterned White Background */





/* Who We Are Section */
.who-we-are {
    background: var(--white);
}

.who-images {
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.vision-mission {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.vm-card {
    display: flex;
    gap: 15px;
}

.vm-icon {
    flex-shrink: 0;
    padding-top: 3px;

}

.vm-icon img {
    height: 25px;
}

.stat-icon img {
    height: 60px;
}

.vm-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.4em;
}

.vm-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

body:not(.dashboard-page) .stat-card {
    background: linear-gradient(180deg, var(--gray-dark), #142b19);
    padding: 25px;
    border-radius: 25px;
    color: var(--white);
    height: 100%;
}

body:not(.dashboard-page) .stat-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 0.4px;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 0.5em;
}

.stat-number sup {
    color: var(--gold);
    font-size: 36px;
}

body:not(.dashboard-page) .stat-card p {
    font-size: 14px;
    opacity: 0.8;
}

.stat-icon {
    border-bottom: 1px solid #fff;
    text-align: right;
    margin-bottom: 20px;
}

/* Global Operations */
.global-operations {

    color: var(--white);
}

.global-operations .section-description {
    color: var(--white);
}

.operations-left {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.featured-asset {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.asset-image {
    height: 277px;
    background: url('../images/gu-la-mine-operation.png') center/cover;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 17px;
    left: 17px;
    background: var(--gold);
    padding: 4px 13px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.asset-content {
    padding: 35px;
}

.asset-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    margin-bottom: 10px;
}

.asset-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 2px solid rgba(255, 101, 12, 0.3);
    padding-left: 20px;
}

.metric-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.metric-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
}

.metric-unit {
    font-size: 13px;
    color: var(--gold);
}

.asset-details {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 13px;
    border-bottom: 1px solid #ffffff0d;
    color: #94a3b8;
    font-size: 15px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--text-light);
    font-weight: 700;
}

.asset-report-btn {
    width: 100%;
    padding: 17px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.7px;
    cursor: pointer;
    transition: all 0.3s;
}

.asset-report-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.asset-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asset-view-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.7px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.asset-view-btn:hover {
    background: transparent;
    color: var(--gold);
}


.stat-value {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.3;
}


/* --- Investment Stats (match intended) --- */
.investment-stats-new {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 90px 0 0px !important;
}

.investment-stats-new .container {
    max-width: 1200px;
}

/* Background Visuals */
.bg-sketch {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 520px;

    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    top: 46%;
    right: -210px;
    transform: translateY(-50%);
    width: 820px;
    height: 820px;
    border: 60px solid #f4f5f6;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Header */
.btn-investor {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--gold);
    color: #ffffff;
    padding: 6px 6px 6px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
}

.btn-investor:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 111, 94, 0.3);
}

.btn-investor .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
}

/* Quote area */
.main-quote-area {
    max-width: 900px;
}

/* Stats */
.stats-row {
    margin-top: 70px;
}


/* Main Content Area */
.quote-text {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 3vw, 35px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    max-width: 85%;
}

.author-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-dark);
}

.author-title {
    font-size: 13px;
    color: #888888;
    margin-top: 4px;
}

/* Statistics Grid */
.stat-box {
    position: relative;
    padding-left: 30px;
    padding-bottom: 150px;
    height: 100%;
}

/* The vertical grey line */
.stat-box::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 15px;
    bottom: -20px;
    width: 1px;
    height: 100%;
    background-color: #e5e5e5;
}

/* The outer grey circle and inner dark dot */
.stat-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
    border: 2px solid #cccccc;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 3px #ffffff, inset 0 0 0 6px #333333;
    /* Creates the inner dot */
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 800;
    color: var(--gray-dark) !important;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-light);
    display: block;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Mining Projects */


.mining-projects .section-header {
    position: relative;
}

.projects-content {
    position: relative;
}

.projects-description {
    color: var(--white);
    font-size: 20px;
    line-height: 2.5;
    margin: 30px 0;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.project-image {
    height: 777px;
    border-radius: 28px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://c.animaapp.com/mlp0i3xjW7Pz1A/img/service.png') center/cover;
}

.project-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 600;
}

/* Blog Section */
.blog-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 292px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.blog-img-1 {
    background-image: url('https://c.animaapp.com/mlp0i3xjW7Pz1A/img/5-6.png');
}

.blog-img-2 {
    background-image: url('https://c.animaapp.com/mlp0i3xjW7Pz1A/img/cons-blog3-1200x630.png');
}

.blog-img-3 {
    background-image: url('https://c.animaapp.com/mlp0i3xjW7Pz1A/img/cons-blog2-1200x630.png');
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    padding: 10px 35px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    padding: 30px 30px 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--black);
}

.meta-item .material-icons {
    font-size: 16px;
    color: var(--gold);
}

.blog-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    padding: 0 30px 20px;
}

.blog-link {
    display: inline-block;
    margin: 20px 30px 30px;
    padding: 15px 35px;
    background: var(--gray-light);
    border-radius: 50px;
    color: var(--black);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.blog-link:hover {
    background: var(--gold);
    color: var(--white);
}

/* Contact Section */
.contact-subtitle {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
}

.info-card {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.info-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.info-text p {
    margin-bottom: 0;
    color: var(--gray-medium);
    font-size: 15px;
    line-height: 1.55;
    word-break: break-word;
}

.contact-form .form-control {
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #d7e0e2;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--gray-dark);
    transition: all 0.25s ease;
}

.contact-form .form-control::placeholder {
    color: #94a3b8;
}

.contact-form .form-control:focus {
    background: #ffffff;
    border-color: #ff6f5e;
    box-shadow: 0 0 0 0.2rem rgba(255, 111, 94, 0.15);
    color: var(--gray-dark);
    outline: none;
}

.contact-form textarea.form-control {
    border-radius: 10px;
    resize: vertical;
}

.form-note {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
}

/* Footer */
.footer {
    color: var(--white);
    padding: 70px 0 0 0;
    border-radius: 40px 40px 0 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 94, 0.4), transparent);
}

/* Footer Top Layout */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: var(--gold);
    border-color: rgba(255, 111, 94, 0.4);
    background: rgba(255, 111, 94, 0.08);
}

/* Nav Columns */
.footer-nav {
    display: flex;
    gap: 50px;
}

.footer-heading {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    border: none;
    padding: 0;
    display: block;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-list a::before {
    display: none;
}

.footer-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Contact Column */
.footer-contact {
    min-width: 220px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.footer-contact-link .material-icons {
    font-size: 18px;
    color: var(--gold);
    opacity: 0.7;
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 111, 94, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta-link .material-icons {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-cta-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-cta-link:hover .material-icons {
    transform: translateX(3px);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
}

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

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn .material-icons {
    font-size: 16px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Banners */

#about-us-page .sub-page-hero {
    background-image: url('../images/about-ban-img.jpg');
    background-position: center;
}

#company-overview-page .sub-page-hero {
    background-image: url('../images/overview-ban-img.jpg');
    background-position: center;
}

#value-creation-page .sub-page-hero {
    background-image: url('../images/value-ban-img.jpg');
    background-position: center;
}

#sustainability-page .sub-page-hero {
    background-image: url('../images/sustainability-ban-img.jpg');
    background-position: center;
}

#ai-page .sub-page-hero {
    background-image: url('../images/ai-ban-img.jpg');
    background-position: center;
}

/* --- About Us Page Specifics --- */

.sub-page-hero {
    position: relative;
    height: 50vh;
    min-height: 550px;
    background: url('../images/about-hero-bg.jpg') center/cover no-repeat;
    background-color: #1a1a1a;
    /* Fallback */
    margin-top: 0;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    background-attachment: fixed;
}

.sub-page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.sub-page-hero .container {
    z-index: 2;
}

.light-stat-card {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6f5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        #fafafa;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-stat-card .fw-bold {
    color: var(--gold) !important;
}

.light-stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

/* --- Dark Gold Gradient & Glassmorphism --- */
.vmv-dark-gold {
    overflow: hidden;
    /* border-top: 1px solid rgba(255, 111, 94, 0.15);
    border-bottom: 1px solid rgba(255, 111, 94, 0.15); */
}

.vmv-dark-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6f5e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 111, 94, 0.18) 0%, rgba(255, 111, 94, 0.05) 40%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 6s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 111, 94, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 111, 94, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 111, 94, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.6;
}

.glass-card:hover {

    border-color: rgba(255, 111, 94, 0.5);
    background: linear-gradient(135deg, rgba(255, 111, 94, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 111, 94, 0.08),
        inset 0 1px 0 rgba(255, 111, 94, 0.2);
}

/* --- VMV Stats --- */
.vmv-stat {
    padding: 30px 20px;
    border: 1px solid rgba(255, 111, 94, 0.15);
    border-radius: 16px;
    background: rgba(255, 111, 94, 0.04);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.vmv-stat:hover {
    border-color: rgba(255, 111, 94, 0.35);
    background: rgba(255, 111, 94, 0.08);
}

.vmv-stat__number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 8px;
}

.vmv-stat__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* --- Zigzag Timeline Section --- */
.timeline-zigzag {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-zigzag::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #e5e7eb;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 110px;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #ff6f5e;
    border-radius: 50%;
    z-index: 2;
}

.timeline-half {
    width: 44%;
}

.timeline-year {
    font-family: 'Sora', sans-serif;
    color: #ff6f5e;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}

.row-odd .content-block {
    text-align: center;
}

.row-odd .year-block {
    text-align: left;
}

.row-even .year-block {
    text-align: right;
}

.row-even .content-block {
    text-align: left;
}

.content-block {
    padding-top: 0;
}

/* ─── Stats Banner ─── */
.stats-banner {
    background: var(--gold);
    padding: 45px 0;
}

.stats-banner__item {
    text-align: center;
    padding: 10px 0;
}

.stats-banner__number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stats-banner__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

/* ─── Operations CTA ─── */
.operations-cta {
    background: #f4f6f8;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #e8ebee;
    border-bottom: 3px solid #e8ebee;
}

.operations-cta__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
}

.operations-cta__desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px;
}

.operations-cta .cta-button {
    margin: 0 auto;
}

.value-step-number {
    color: var(--gold);
}

/* --- Industrial Highlights Section (Light Theme) --- */
.industrial-highlights {
    background-color: #f8f9fa;
    /* Light gray background to make the white card pop */
}

.gold-bar {
    width: 40px;
    height: 3px;
    background-color: #ff6f5e;
    margin-top: 15px;
}

.highlight-list {
    position: relative;
}

.highlight-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}

.highlight-item:last-child {
    padding-bottom: 0;
}

/* Thin vertical gray line connecting the icons */
.highlight-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 28px;
    bottom: -4px;
    width: 1px;
    background-color: #e5e7eb;
    /* Changed to a light, subtle gray */
}

.highlight-icon-wrapper {
    position: relative;
    z-index: 2;
    height: 24px;
}

.highlight-icon-wrapper .material-icons,
.highlight-icon-wrapper .fa-circle-check {
    color: #ff6f5e;
    font-size: 22px;
    line-height: 1;
}

.highlight-text {
    padding-top: 1px;
}

/* Right Column Card */
.highlight-stats-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-stats-card .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-dark);
    line-height: 1;
}

.highlight-stats-card .stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #ff6f5e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
}


/* --- Global Footprint: Location Route --- */
.location-route {
    position: relative;
    padding-left: 36px;
}

/* Vertical connecting line */
.location-route::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            rgba(255, 111, 94, 0.3) 0px,
            rgba(255, 111, 94, 0.3) 6px,
            transparent 6px,
            transparent 12px);
}

.location-waypoint {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    position: relative;
}

.location-waypoint:first-child {
    padding-top: 0;
}

.location-waypoint:last-child {
    padding-bottom: 0;
}

/* Marker */
.waypoint-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
    border: 2px solid rgba(255, 111, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.location-waypoint:hover .waypoint-marker {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 111, 94, 0.25);
    transform: scale(1.08);
}

/* Ping animation on the marker */
.waypoint-ping {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 2px solid rgba(255, 111, 94, 0.3);
    animation: waypointPing 3s ease-out infinite;
    pointer-events: none;
}

@keyframes waypointPing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Content */
.waypoint-content {
    flex: 1;
    padding: 4px 0;
}

.waypoint-region {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.waypoint-name {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.waypoint-detail {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.waypoint-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-medium);
    background: rgba(255, 111, 94, 0.08);
    border: 1px solid rgba(255, 111, 94, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
}

.waypoint-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-medium);
}

.waypoint-stats strong {
    color: var(--gray-dark);
    font-weight: 700;
}

.waypoint-divider {
    width: 1px;
    height: 14px;
    background: #ddd;
}

/* Hover lift on each waypoint row */
.location-waypoint {
    transition: transform 0.3s ease;
}

.location-waypoint:hover {
    transform: translateX(6px);
}

/* Dark theme variants */
.footprint-wrapper {
    padding: 0;
}

.location-route--dark::before {
    background: repeating-linear-gradient(to bottom,
            rgba(255, 111, 94, 0.2) 0px,
            rgba(255, 111, 94, 0.2) 6px,
            transparent 6px,
            transparent 12px);
}

.waypoint-marker--dark {
    background: rgba(255, 111, 94, 0.1);
    border-color: rgba(255, 111, 94, 0.3);
    color: var(--gold);
}

.location-waypoint:hover .waypoint-marker--dark {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 111, 94, 0.2);
}

.waypoint-tag--dark {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 111, 94, 0.1);
    border-color: rgba(255, 111, 94, 0.2);
}

.waypoint-stats--dark {
    color: rgba(255, 255, 255, 0.45);
}

.waypoint-stats--dark strong {
    color: var(--gold);
}

/* --- Value Creation Page Specifics --- */

/* Value philosophy cards with patterned background */
.value-card {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6f5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        #fafafa;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}


.value-card:hover {

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 111, 94, 0.3);
}



.value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 111, 94, 0.12), rgba(255, 111, 94, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.value-card__icon .material-icons {
    font-size: 24px;
    color: var(--gold);
}

.value-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.value-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* Modern pill badge */
.value-card__badge {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 111, 94, 0.12), rgba(255, 111, 94, 0.06));
    border: 1px solid rgba(255, 111, 94, 0.25);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 10px;
}

/* Financial stat bar redesign */
.financial-stat-bar {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6f5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        #fafafa;
    border-radius: 16px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 28px;
}

.financial-stat-bar__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.financial-stat-bar__header .material-icons {
    font-size: 22px;
    color: var(--gold);
}

.financial-stat-bar__header h6 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0;
}

.financial-stat-bar__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.financial-stat-bar__metrics {
    display: flex;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.financial-stat-bar__metric {
    flex: 1;
    text-align: center;
}

.financial-stat-bar__metric+.financial-stat-bar__metric {
    border-left: 1px solid #e2e8f0;
}

.financial-stat-bar__value {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.2;
}

.financial-stat-bar__value .unit {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
}

.financial-stat-bar__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Smooth hover transition for the white stat cards */
.transition-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Asset Financials List Formatting */
.financial-metrics-list .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.financial-metrics-list .text-muted {
    color: #9ca3af !important;
}

/* Ensure the glass card maintains a premium feel */
.glass-card .badge {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    padding: 6px 12px;
}

/* Validation Error Styling */
.err_input {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Language Selector in Footer */
.lang-selector li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.lang-selector li.active a {
    font-weight: bold;
    color: var(--gold);
}

.lang-selector li a:hover {
    color: var(--gold);
}

/* --- Future Value & Kora Economics --- */
.kora-economics-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.economic-stat {
    border-left: 2px solid rgba(255, 111, 94, 0.3);
    padding-left: 15px;
}

/* --- Capital Allocation Framework --- */
.allocation-pillars {
    background-color: #fff;
}

.allocation-card {
    transition: background-color 0.3s ease;
}

.allocation-card:hover {
    background-color: #f8f9fa;
    /* Slight darkening on hover for the white cards */
}

.allocation-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(255, 111, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.allocation-icon .material-icons {
    font-size: 32px;
    color: var(--gold);
}

/* --- Individual Mine Page Specifics --- */

.gallery-img {
    cursor: pointer;
    position: relative;
}

.gallery-img img {
    transition: transform 0.5s ease;
}

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

/* Add a subtle overlay on gallery images on hover */
.gallery-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 111, 94, 0);
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-img:hover::after {
    background: rgba(255, 111, 94, 0.2);
}

/* ================================================
   GLOBAL UTILITY CLASSES
   ================================================ */

.font-heading {
    font-family: 'Sora', sans-serif;
}

.text-gold {
    color: var(--gold);
}

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

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

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

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

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

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

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

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

.lh-snug {
    line-height: 1.6;
}

.lh-comfortable {
    line-height: 1.7;
}

.lh-relaxed {
    line-height: 1.8;
}

.icon-sm {
    font-size: 16px;
}

.icon-md {
    font-size: 28px;
}

.icon-lg {
    font-size: 32px;
}

.icon-xl {
    font-size: 36px;
}

.icon-xxl {
    font-size: 40px;
}

.icon-hero {
    font-size: 48px;
}

.icon-jumbo {
    font-size: 80px;
}

.obj-cover {
    object-fit: cover;
}

.aspect-3-4 {
    aspect-ratio: 3/4;
}

.img-h-300 {
    height: 300px;
}

.img-h-500 {
    height: 500px;
}

.min-h-450 {
    min-height: 450px;
}

.min-h-500 {
    min-height: 500px;
}

.border-gold-top {
    border-top-color: var(--gold) !important;
}

.border-gold-bottom {
    border-bottom-color: var(--gold) !important;
}

.border-gold-left {
    border-left-color: var(--gold) !important;
}

.border-gold-right {
    border-right-color: var(--gold) !important;
}

.honeypot {
    display: none;
}

.img-offset-top {
    margin-top: 40px;
}

/* ================================================
   SHARED COMPONENT PATTERNS
   ================================================ */

.stats-overlap {
    margin-top: -50px;
    z-index: 10;
}

.micro-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-label-sm {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.label-caps {
    font-size: 13px;
    letter-spacing: 1px;
}

.label-caps-bold {
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.stat-value-lg {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
}

.stat-value-36 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
}

.stat-value-xl {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
}

.stat-value-xxl {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
}

.sub-page-hero h1 {
    font-family: 'Sora', sans-serif;
}

.hero-title-accent {
    color: var(--gold);
}

.dark-section .section-line {
    border-color: var(--gold);
}

.dark-section .section-label {
    color: var(--gold);
}

.dark-section .glass-card h3,
.dark-section .glass-card h4,
.dark-section .glass-card h5 {
    font-family: 'Sora', sans-serif;
}

.dark-section .glass-card .material-icons {
    color: var(--gold);
}




.mine-location-label {
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--gold) !important;
}

.mine-hero-lead {
    max-width: 650px;
    line-height: 1.8;
}

.metric-label-muted {
    font-size: 13px;
}

.metric-highlight {
    color: var(--gold);
    font-weight: 800;
    font-size: 18px;
}

.metric-highlight-sm {
    color: var(--gold);
    font-weight: 800;
    font-size: 16px;
}

.mine-location-meta {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.grade-note {
    font-size: 11px;
}

.table-gold thead tr {
    border-bottom: 2px solid var(--gold);
}

.table-gold tbody {
    font-family: 'Sora', sans-serif;
    color: #333;
}

.table-gold .gold-value {
    color: var(--gold);
    font-size: 18px;
}

.table-notes {
    font-size: 12px;
}

.modal-dark-border {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #ff6f5e;
}

.modal-section-title {
    color: #ff6f5e;
    font-weight: 700;
}

. {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.ticker-divider-sm {
    height: 12px;
    opacity: 0.2;
}

/* ================================================
   PAGE-SPECIFIC STYLES
   ================================================ */

/* --- Index Page --- */
body:not(.dashboard-page) .stat-card .stat-number {
    color: white !important;
}

/* --- About Page --- */
#about-us-page .light-stat-card .stat-number {
    font-size: 36px;
}

#about-us-page .vmv-section .glow-orb:first-child {
    top: -10%;
    left: -5%;
}

#about-us-page .vmv-section .glow-orb:nth-child(2) {
    bottom: -10%;
    right: -5%;
}

#about-us-page .vmv-section .glass-card .material-icons {
    font-size: 36px;
}

#about-us-page .vmv-section .glass-card h3 {
    color: var(--gold);
}

#about-us-page .timeline-zigzag h5 {
    font-family: 'Sora', sans-serif;
}

/* --- Value Page --- */
#value-creation-page .cash-engines .glow-orb:first-child {
    top: -10%;
    right: 10%;
}

#value-creation-page .cash-engines .glow-orb:nth-child(2) {
    bottom: -20%;
    left: -10%;
}

.allocation-card h4 {
    font-family: 'Sora', sans-serif;
}



.kora-location {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kora-icon-bg {
    font-size: 80px;
    color: #e5e7eb;
}

.gold-accent-bar {
    height: 4px;
    background-color: var(--gold);
}

.allocation-card-alt {
    background-color: #fafafa;
}

/* --- Horizon Page --- */
#mine-horizon-page .sub-page-hero {
    background-image: url('../images/horizon-ban-img.jpg');
}

.horizon-land-overlay {
    background: rgb(196 164 91 / 68%);
    backdrop-filter: blur(5px);
    width: 60%;
    border-radius: 0 15px 0 0;
}

.horizon-land-label {
    font-size: 12px;
    letter-spacing: 1px;
}

#mine-horizon-page .operating-dashboard .glow-orb:first-child {
    top: 10%;
    left: -10%;
}

#mine-horizon-page .operating-dashboard .glow-orb:nth-child(2) {
    bottom: -20%;
    right: 10%;
}

#mine-horizon-page .operating-dashboard h2 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
}

#mine-horizon-page .geology-esg h3 {
    font-family: 'Sora', sans-serif;
}

/* --- Puna Page --- */
.hero-puna {
    background-image: url('../images/puna-ban-img.jpg');
}

/* --- Condor Page --- */
.hero-condor {
    background-image: url('../images/condor-ban-img.jpg');
}

/* --- Oil Page --- */
.hero-oil {
    background-image: url('../images/oil-ban-img.jpg');
}

#mine-condor-page .technical-details .glow-orb {
    top: 30%;
    left: 30%;
}

#mine-condor-page .technical-details h2 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
}

#mine-condor-page .guidance-strip h4 {
    font-family: 'Sora', sans-serif;
}

.section-title-lg {
    font-size: 40px;
    line-height: 1.2;
}

/* --- Overview Page --- */
#company-overview-page .value-creation .glow-orb {
    top: 20%;
    left: 40%;
}

#company-overview-page .industrial-highlights h2 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
}

.highlight-item h4 {
    font-size: 16px;
    font-weight: 700;
}

.highlight-item p {
    font-size: 14px;
    line-height: 1.6;
}

.stat-border-subtle {
    border-color: #f1f5f9 !important;
}

.stat-geo-size {
    font-size: 24px;
}

.waypoint-detail-muted {
    color: rgba(255, 255, 255, 0.45);
}

.waypoint-divider-subtle {
    background: rgba(255, 255, 255, 0.15);
}

#company-overview-page .footprint-wrapper .glow-orb:first-child {
    top: -20%;
    right: -10%;
}

#company-overview-page .footprint-wrapper .glow-orb:nth-child(2) {
    bottom: -15%;
    left: -8%;
}

/* --- Innovation Page --- */
#innovation-page .sub-page-hero {
    background-image: url('https://placehold.co/1920x1080/0a0a0a/ff6f5e?text=Innovation+%26+Technology');
}

.quick-facts-border {
    border-color: rgba(255, 111, 94, 0.3) !important;
}

#innovation-page .tech-deep-dive .glow-orb:first-child {
    top: 20%;
    left: -10%;
}

#innovation-page .tech-deep-dive .glow-orb:nth-child(2) {
    bottom: 10%;
    right: -10%;
}

#innovation-page .tech-deep-dive h2 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
}

.core-objective-border {
    border-color: var(--gold) !important;
}

.blockchain-step-circle {
    width: 100px;
    height: 100px;
    border-color: var(--gold) !important;
}

.blockchain-connector {
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.glow-orb-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.5;
}

#innovation-page .mine-cta-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
}

#innovation-page .mine-cta-section .cta-desc {
    font-size: 18px;
    line-height: 1.6;
}

/* --- Sustainability Page --- */
#sustainability-page .sub-page-hero {
    background-image: url('../images/sustainability-ban-img.jpg');
    background-position: center;
}

/* --- Imprint Page --- */
#imprint-page .sub-page-hero {
    background-image: url('../images/about-ban-img.jpg');
    background-position: center;
}

.imprint-block {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6f5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        #fafafa;
    border-color: #eaeaea !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}



.imprint-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 111, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#sustainability-page .sust-pillars-desc {
    max-width: 600px;
}

#sustainability-page .sust-pillar-card {
    min-height: 320px;
}

#sustainability-page .environmental-pillar .glow-orb:first-child {
    top: -10%;
    right: 10%;
}

#sustainability-page .environmental-pillar .glow-orb:nth-child(2) {
    bottom: -15%;
    left: -5%;
}

#sustainability-page .environmental-pillar h2 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
}

#sustainability-page .glass-card p {
    font-size: 14px;
    line-height: 1.8;
}

#sustainability-page .glass-card .env-stat-value {
    font-family: 'Sora', sans-serif;
}

#sustainability-page .glass-card .env-stat-unit {
    color: var(--gold);
    font-size: 16px;
}

#sustainability-page .glass-card .env-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

#sustainability-page .social-img {
    object-fit: cover;
    aspect-ratio: 3/4;
}

#sustainability-page .social-img-offset {
    margin-top: 40px;
}

#sustainability-page .social-feature-desc {
    font-size: 14px;
}

/* --- Puna Leach Page Specifics --- */

/* Sticky Sidebar for Mine Facts */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 100px;
        /* Adjust this value depending on the height of your fixed navbar */
        z-index: 10;
    }

    .puna-hero {
        min-height: 70vh;
    }
}

/* Ensure table transparency holds in the light section */
.table-light.bg-transparent td,
.table-light.bg-transparent th {
    background-color: transparent !important;
}

@media (max-width: 991px) {
    .hero-image-wrapper {
        min-height: 400px !important;
    }
}

/* --- Typography & Layout Utilities --- */
.font-heading {
    font-family: 'Sora', sans-serif;
}

.section-title-large {
    font-size: 40px;
}

.fs-16 {
    font-size: 16px;
}

.lh-comfortable {
    line-height: 1.6;
}

.lh-relaxed {
    line-height: 1.8;
}

.text-gold {
    color: var(--gold);
}

/* --- Ecosystem Section Specifics --- */
.ecosystem-row {
    border-color: #f1f5f9 !important;
}

.icon-box-large {
    width: 70px;
    height: 70px;
}

.bg-gold-light {
    background-color: rgba(255, 111, 94, 0.1);
}

.icon-lg {
    font-size: 32px;
}

/* Adds the vertical separator line on desktop screens */
@media (min-width: 768px) {
    .feature-text-col {
        border-left: 1px solid #e5e7eb;
        padding-left: 3rem !important;
    }
}


/* --- Blockchain Dark Section Specifics --- */

.border-gold {
    border-color: var(--gold) !important;
}

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

.blockchain-step-circle {
    width: 120px;
    height: 120px;
    background: rgba(10, 10, 10, 0.4);
    /* Darkens the glass slightly for contrast */
}

/* Beautiful fading gold line to connect the steps on desktop */
.blockchain-connector-dark {
    top: 60px;
    /* Perfectly centers behind the 120px circles */
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 111, 94, 0.4) 15%, rgba(255, 111, 94, 0.4) 85%, transparent 100%);
    z-index: 0;
}

/* Centered wide glow orb for the background */
.glow-orb-center-large {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    opacity: 0.4;
}

.fs-14 {
    font-size: 14px;
}

.blockchain-step-circle::before {
    content: none !important;
}

#legal-page .section-title {
    font-size: 30px;
    margin-bottom: 0 !important;
}

/* --- Home Page Feature Cards --- */
.feature-thumb-img {
    height: 300px;
}

.bg-dark-premium {
    background-color: #1a1a1a !important;
}

/* Positions the background glow orb specifically for this card */
.feature-glow {
    top: -20%;
    right: -20%;
    opacity: 0.6;
}

/* ================================================
   LOGIN / AUTH MODALS (Global - all pages)
   ================================================ */

.modal-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6f5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal.modal-static .modal-dialog {
    transform: none !important;
}

/* Logo centered top */
.modal .modal-header {
    background: transparent;
    border: 0 !important;
    padding: 20px 28px 0;
    justify-content: center !important;
    position: relative;
}

.modal .modal-header .btn-close {
    position: absolute !important;
    right: 16px !important;
    top: 16px !important;
    z-index: 1060 !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    opacity: 0.5 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
}

.modal .modal-header .btn-close:hover {
    opacity: 0.7 !important;
}

.modal .modal-body {
    padding: 20px 32px 12px;
}

.modal .modal-footer {
    border-top: none;
    padding: 4px 32px 15px;
}

/* Typography */
.modal-content h2 {
    color: #1a1a1a;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.3px;
}

.modal-content label,
.modal-content p,
.modal-content h6 {
    color: #555;
}

.modal-content a {
    color: #ff6f5e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.modal-content a:hover {
    color: #8f6820;
}

/* Inputs */
.modal .modal-content .form-control,
.modal .modal-content .form-select,
.modal .modal-content input[type="text"],
.modal .modal-content input[type="email"],
.modal .modal-content input[type="password"],
.modal .modal-content input[type="number"] {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 10px !important;
    padding: 13px 16px !important;
    color: #333 !important;
    height: auto !important;
    width: 100% !important;
    margin: 5px 0 !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
}

.modal .modal-content .form-control:focus,
.modal .modal-content input:focus {
    background: #fff !important;
    border: 1px solid #ff6f5e !important;
    box-shadow: 0 0 0 0.15rem rgba(181, 140, 64, 0.15) !important;
    outline: none;
}

.modal .modal-content .form-control::placeholder,
.modal .modal-content input::placeholder {
    color: #aaa !important;
}

.modal .modal-content .form-control:disabled,
.modal .modal-content input:disabled {
    background: #f0f0f0 !important;
    border-color: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed;
}

/* Error */
.modal .err_input {
    border: 1px solid #dc3545 !important;
    background: #fff5f5 !important;
}

.modal .err_input:focus {
    border-color: #dc3545 !important;
}

/* Button */
.modal-content .btn-primary {
    background: linear-gradient(180deg, #ff6f5e, #e0563b);
    border: none;
    color: #fff;
    padding: 12px 48px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    width: auto;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.modal-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transition: left 0.5s ease;
}

@media (max-width: 991.98px) {
    .modal-content .btn-primary {
        width: 100%;
        padding: 12px 0;
    }
}

.modal-content .btn-primary:hover {
    box-shadow: 0 5px 20px rgba(181, 140, 64, .3);
}

.modal-content .btn-primary:hover::before {
    left: 100%;
}

.modal-content .btn-primary:active {
    transform: scale(0.98);
}

/* Toggle password */
.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #bbb;
    width: 24px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
}

.toggle-password:hover {
    color: #ff6f5e;
}

/* Labels */
.modal-content .form-group label {
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-size: 13px;
}

.modal-content .form-check-label {
    color: #666;
}

/* Logo */
.modal-header .modal-logo {
    display: block;
    margin: 0 auto;
    height: 50px;
}
/* === 06 PETROL INNER === */
/* Petrol & Coral — modern restyle of shared inner-page components.
   Scoped to inner-page <main> wrappers so the homepage (#pc-home) is untouched.
   Concept: deep petrol teal-blue surfaces, misty pales, vivid coral accents,
   Sora headings / Inter body, rounded corners, soft shadows. */
#about-us-page, #company-overview-page, #value-creation-page,
#mine-aurora-page, #mine-condor-page, #mine-oil-page,
#sustainability-page, #ai-page, #legal-page {
  --pc-petrol-deep:#0c2e33; --pc-petrol:#103a40; --pc-petrol-black:#082226;
  --pc-mist:#e8eef0; --pc-mist-light:#f4f8f9; --pc-ink:#15242a;
  --pc-coral:#ff6f5e; --pc-coral-dark:#e0563b; --pc-coral-light:#ff8c7d;
  --pc-radius:16px; --pc-radius-sm:12px;
  --pc-shadow:0 18px 50px -22px rgba(8,34,38,.55);
  --pc-shadow-soft:0 12px 32px -18px rgba(8,34,38,.40);
  font-family:'Inter',-apple-system,sans-serif !important;
  color:var(--pc-ink) !important;
  background:var(--pc-mist-light) !important;
}
#about-us-page h1, #about-us-page h2, #about-us-page h3, #about-us-page h4,
#company-overview-page h1, #company-overview-page h2, #company-overview-page h3, #company-overview-page h4,
#value-creation-page h1, #value-creation-page h2, #value-creation-page h3, #value-creation-page h4,
#mine-aurora-page h1, #mine-aurora-page h2, #mine-aurora-page h3, #mine-aurora-page h4,
#mine-condor-page h1, #mine-condor-page h2, #mine-condor-page h3, #mine-condor-page h4,
#mine-oil-page h1, #mine-oil-page h2, #mine-oil-page h3, #mine-oil-page h4,
#sustainability-page h1, #sustainability-page h2, #sustainability-page h3, #sustainability-page h4,
#ai-page h1, #ai-page h2, #ai-page h3, #ai-page h4,
#legal-page h1, #legal-page h2, #legal-page h3, #legal-page h4 {
  font-family:'Sora',sans-serif !important; letter-spacing:-.02em;
}

/* ---- HERO ---- */
#about-us-page .sub-page-hero, #company-overview-page .sub-page-hero,
#value-creation-page .sub-page-hero, #mine-aurora-page .sub-page-hero,
#mine-condor-page .sub-page-hero, #mine-oil-page .sub-page-hero,
#sustainability-page .sub-page-hero, #ai-page .sub-page-hero,
#legal-page .sub-page-hero {
  background-color:#0c2e33 !important;
  background-blend-mode:multiply !important;
  border-radius:0 0 28px 28px !important;
  background-attachment:scroll !important;
}
#about-us-page .sub-page-hero .hero-overlay, #company-overview-page .sub-page-hero .hero-overlay,
#value-creation-page .sub-page-hero .hero-overlay, #mine-aurora-page .sub-page-hero .hero-overlay,
#mine-condor-page .sub-page-hero .hero-overlay, #mine-oil-page .sub-page-hero .hero-overlay,
#sustainability-page .sub-page-hero .hero-overlay, #ai-page .sub-page-hero .hero-overlay,
#legal-page .sub-page-hero .hero-overlay {
  background:
    radial-gradient(780px 520px at 82% -8%, rgba(255,111,94,.20), transparent 60%),
    radial-gradient(760px 560px at 6% 112%, rgba(36,140,150,.42), transparent 55%),
    linear-gradient(118deg, rgba(8,34,38,.92) 0%, rgba(12,46,51,.72) 48%, rgba(12,46,51,.30) 100%) !important;
}
#about-us-page .sub-page-hero h1, #company-overview-page .sub-page-hero h1,
#value-creation-page .sub-page-hero h1, #mine-aurora-page .sub-page-hero h1,
#mine-condor-page .sub-page-hero h1, #mine-oil-page .sub-page-hero h1,
#sustainability-page .sub-page-hero h1, #ai-page .sub-page-hero h1,
#legal-page .sub-page-hero h1 {
  font-family:'Sora',sans-serif !important; font-weight:800 !important;
  letter-spacing:-.03em !important; color:#fff !important;
}
.hero-title-accent {
  color:#ff6f5e !important; font-family:'Sora',sans-serif !important;
}
/* coral eyebrow rule + label inside hero */
.sub-page-hero .section-line {
  border-bottom:none !important; height:3px !important; width:34px !important;
  background:#ff6f5e !important; border-radius:3px !important;
}
.sub-page-hero .section-label {
  color:#ff8c7d !important; letter-spacing:.22em !important;
  font-family:'Sora',sans-serif !important; font-weight:600 !important; font-size:12px !important;
}

/* ---- SECTION HEADERS ---- */
.section-line {
  border-bottom:none !important; height:3px !important; width:34px !important;
  background:#ff6f5e !important; border-radius:3px !important;
}
.section-label {
  color:#ff6f5e !important; letter-spacing:.2em !important;
  font-family:'Sora',sans-serif !important; font-weight:600 !important;
  font-size:12px !important; text-transform:uppercase !important;
}
.section-title, .section-title-large, .section-title-lg {
  font-family:'Sora',sans-serif !important; letter-spacing:-.02em !important;
  color:#15242a !important;
}
.dark-section .section-title, .dark-section .section-title-large {
  color:#fff !important;
}
.dark-section .section-label { color:#ff8c7d !important; }
.dark-section .section-line { background:#ff6f5e !important; }
.text-gold, .text-highlight { color:#ff6f5e !important; }

/* ---- BUTTONS ---- */
.cta-button, .btn-premium-primary {
  background:#ff6f5e !important; color:#fff !important;
  border:none !important; border-radius:999px !important;
  font-family:'Sora',sans-serif !important; font-weight:600 !important;
  padding:13px 28px !important;
  box-shadow:0 12px 26px -12px rgba(255,111,94,.85) !important;
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease !important;
}
.cta-button:hover, .btn-premium-primary:hover {
  background:#e0563b !important; color:#fff !important;
  transform:translateY(-2px) !important;
  box-shadow:0 16px 32px -12px rgba(255,111,94,.9) !important;
}
.cta-button.secondary {
  background:transparent !important; color:#0c2e33 !important;
  border:1.5px solid #0c2e33 !important; box-shadow:none !important;
}
.cta-button.secondary:hover {
  background:#0c2e33 !important; color:#fff !important; transform:translateY(-2px) !important;
}

/* ---- CARDS ---- */
body:not(.dashboard-page) .stat-card {
  background:linear-gradient(165deg, #103a40, #0c2e33) !important;
  border-radius:18px !important; border:1px solid rgba(255,111,94,.18) !important;
  box-shadow:0 12px 32px -18px rgba(8,34,38,.40) !important; position:relative !important;
  overflow:hidden !important;
}
body:not(.dashboard-page) .stat-card::before {
  content:"" !important; position:absolute !important; top:0; left:0; right:0;
  height:4px !important; background:#ff6f5e !important;
}
body:not(.dashboard-page) .stat-card .stat-number { color:#fff !important; }
body:not(.dashboard-page) .stat-card .text-gold,
body:not(.dashboard-page) .stat-card sup { color:#ff6f5e !important; }

.info-card {
  background:#fff !important; border-radius:16px !important;
  border:1px solid #dde7e9 !important; box-shadow:0 12px 32px -18px rgba(8,34,38,.40) !important;
  padding:24px 26px !important; align-items:center !important; height:100% !important;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease !important;
}
.info-card:hover {
  border-color:#ff6f5e !important;
  box-shadow:0 18px 40px -18px rgba(255,111,94,.35) !important;
  transform:translateY(-3px) !important;
}

.value-card.light-stat-card, .light-stat-card {
  background:#fff !important; border:1px solid #dde7e9 !important;
  border-radius:16px !important; box-shadow:0 12px 32px -18px rgba(8,34,38,.40) !important;
  position:relative !important; overflow:hidden !important;
  padding:26px !important;
}
.light-stat-card::before {
  content:"" !important; position:absolute !important; top:0; left:0;
  width:4px !important; height:100% !important; background:#ff6f5e !important;
}
.light-stat-card:hover { border-color:#ff6f5e !important; transform:translateY(-4px) !important; }
.light-stat-card .text-gold, .light-stat-card .fw-bold { color:#ff6f5e !important; }

.vm-card h3 { font-family:'Sora',sans-serif !important; }
.vm-card p { color:#42565c !important; }

.glass-card {
  background:linear-gradient(135deg, rgba(255,111,94,.07) 0%, rgba(36,140,150,.05) 100%) !important;
  border:1px solid rgba(255,111,94,.28) !important; border-radius:18px !important;
  box-shadow:0 18px 50px -22px rgba(8,34,38,.6), inset 0 1px 0 rgba(255,111,94,.12) !important;
}

/* feature columns (ai / sustainability) */
.feature-text-col {
  background:#fff !important; border-radius:16px !important;
  border:1px solid #dde7e9 !important; box-shadow:0 12px 32px -18px rgba(8,34,38,.40) !important;
}
.feature-desc, .social-feature-desc { color:#42565c !important; }

/* generic stat box */
.stat-box {
  background:#fff !important; border-radius:16px !important;
  border:1px solid #dde7e9 !important; box-shadow:0 12px 32px -18px rgba(8,34,38,.40) !important;
}

/* dark feature/section surfaces -> petrol */
#about-us-page .dark-section, #company-overview-page .dark-section,
#value-creation-page .dark-section, #mine-aurora-page .dark-section,
#mine-condor-page .dark-section, #mine-oil-page .dark-section,
#sustainability-page .dark-section, #ai-page .dark-section {
  background:linear-gradient(160deg, #0c2e33, #082226) !important;
}
.glow-orb {
  background:radial-gradient(circle, rgba(255,111,94,.20) 0%, rgba(36,140,150,.08) 40%, rgba(0,0,0,0) 70%) !important;
}

/* ---- STATS BANNER ---- */
.stats-banner {
  background:linear-gradient(160deg, #0c2e33, #082226) !important;
  border-top:1px solid rgba(255,111,94,.2) !important;
  border-bottom:1px solid rgba(255,111,94,.2) !important;
}
.stats-banner__number {
  font-family:'Sora',sans-serif !important; color:#ff6f5e !important;
}
.stats-banner__label { color:#a9c0c4 !important; }

/* vmv stat row */
.vmv-stat__number { font-family:'Sora',sans-serif !important; color:#ff6f5e !important; }
.vmv-stat__label { color:#a9c0c4 !important; }

/* ---- TIMELINE ---- */
.timeline-zigzag::before { background-color:#d8e2e4 !important; }
.timeline-dot {
  background-color:#ff6f5e !important;
  box-shadow:0 0 0 5px rgba(255,111,94,.18) !important; width:14px !important; height:14px !important;
}
.timeline-year { font-family:'Sora',sans-serif !important; color:#ff6f5e !important; }

/* ---- OPERATIONS CTA ---- */
.operations-cta {
  background:linear-gradient(160deg, #0c2e33, #082226) !important;
  border-top:none !important; border-bottom:none !important;
}
.operations-cta__title { color:#fff !important; font-family:'Sora',sans-serif !important; }
.operations-cta__desc { color:#bcd2d6 !important; }

/* ---- IMPRINT / LEGAL ---- */
#legal-page .imprint-content { background:#f4f8f9 !important; }
.imprint-block {
  background:#fff !important; border:1px solid #dde7e9 !important;
  border-radius:16px !important; box-shadow:0 12px 32px -18px rgba(8,34,38,.40) !important;
  position:relative !important; overflow:hidden !important;
  transition:border-color .2s ease, transform .2s ease !important;
}
.imprint-block::before {
  content:"" !important; position:absolute !important; top:0; left:0;
  width:4px !important; height:100% !important; background:#ff6f5e !important;
}
.imprint-block:hover { border-color:#ff6f5e !important; transform:translateY(-3px) !important; }
.imprint-icon {
  width:46px !important; height:46px !important; border-radius:12px !important;
  background:rgba(255,111,94,.14) !important; display:grid !important;
  place-items:center !important; flex-shrink:0 !important;
}
.imprint-icon .material-icons, .imprint-block .text-gold { color:#ff6f5e !important; }
#legal-page .section-title { color:#15242a !important; }

/* ---- RESPONSIVE ---- */
@media (max-width:768px){
  .sub-page-hero { border-radius:0 0 20px 20px !important; }
  .cta-button, .btn-premium-primary { padding:12px 22px !important; }
}
/* === /06 PETROL INNER === */

/* =====================================================================
   OPERATION SUBPAGE LAYOUT VARIANTS  (added 2026-06)
   Goal: give each mine a distinct skeleton so the operation pages stop
   reading as one repeated template. Reuses existing tokens only:
   --gold (#ff6f5e coral), petrol darks (#0c2e33), Sora headings / Inter body,
   .glass-card / .glow-orb / .dark-section.
   ===================================================================== */

/* Aurora land-package overlay (was referenced in markup but never styled) */
.aurora-land-overlay{
  background:linear-gradient(135deg, rgba(255,111,94,.92), rgba(224,86,59,.85));
  backdrop-filter:blur(5px);
  width:62%;
  border-radius:0 16px 0 0;
}
.aurora-land-label{ font-size:12px; letter-spacing:1px; }

/* Re-theme Horizon's land overlay from the legacy olive to the coral token */
.horizon-land-overlay{
  background:linear-gradient(135deg, rgba(12,46,51,.88), rgba(21,69,75,.78)) !important;
  border-left:3px solid var(--gold);
}

/* small index/eyebrow marker */
.idx-marker{
  font-family:'Sora',sans-serif; font-weight:700; font-size:14px;
  color:var(--gold); letter-spacing:3px; display:inline-block; margin-bottom:10px;
}

/* ---------- AURORA: horizontal KPI ribbon (replaces 3-card grid) ---------- */
.kpi-ribbon{
  display:flex; flex-wrap:wrap; align-items:stretch;
  border:1px solid rgba(255,111,94,.25); border-radius:20px; overflow:hidden;
  background:linear-gradient(135deg, rgba(255,111,94,.06) 0%, rgba(255,255,255,.02) 100%);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow:0 8px 32px 0 rgba(0,0,0,.4);
}
.kpi-ribbon__item{ flex:1 1 0; min-width:230px; padding:46px 42px; position:relative; }
.kpi-ribbon__item + .kpi-ribbon__item{ border-left:1px solid rgba(255,111,94,.18); }
.kpi-ribbon__label{
  display:block; text-transform:uppercase; letter-spacing:1.5px;
  font-size:12px; font-weight:700; color:rgba(255,255,255,.6); margin-bottom:16px;
}
.kpi-ribbon__num{
  display:block; font-family:'Sora',sans-serif; font-weight:700;
  font-size:clamp(34px,4vw,52px); color:#fff; line-height:1;
}
.kpi-ribbon__num .text-gold{ color:var(--gold); }
.kpi-ribbon__unit{ display:block; margin-top:12px; color:rgba(255,255,255,.6); font-size:14px; }
@media (max-width:767px){
  .kpi-ribbon__item{ flex:1 1 100%; }
  .kpi-ribbon__item + .kpi-ribbon__item{ border-left:none; border-top:1px solid rgba(255,111,94,.18); }
}

/* ---------- AURORA: staggered / offset image pair ---------- */
.offset-raised{ margin-top:-64px; }
@media (max-width:991px){ .offset-raised{ margin-top:0; } }
.img-caption{
  font-family:'Sora',sans-serif; font-weight:700; font-size:18px;
  color:var(--gray-dark); margin-top:18px;
}
.img-caption + p{ color:var(--text-muted); }

/* ---------- HORIZON: vertical numbered KPI list (replaces 3-card grid) ---------- */
.kpi-row{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:30px 0; border-bottom:1px solid rgba(255,111,94,.18);
}
.kpi-row:last-child{ border-bottom:none; }
.kpi-row__left{ display:flex; align-items:center; gap:22px; }
.kpi-row__index{
  font-family:'Sora',sans-serif; font-weight:700; font-size:18px; color:var(--gold);
  width:48px; height:48px; flex:none; display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,111,94,.4); border-radius:50%;
}
.kpi-row__label{ color:rgba(255,255,255,.9); font-weight:600; font-size:18px; }
.kpi-row__unit{ display:block; color:rgba(255,255,255,.5); font-size:13px; letter-spacing:.5px; }
.kpi-row__num{
  font-family:'Sora',sans-serif; font-weight:700; color:#fff;
  font-size:clamp(30px,3.4vw,44px); line-height:1; white-space:nowrap;
}
.kpi-row__num .text-gold{ color:var(--gold); }
@media (max-width:575px){ .kpi-row{ flex-direction:column; align-items:flex-start; gap:10px; } }

/* ---------- HORIZON: zig-zag gallery + infra chips ---------- */
.zigzag-tag{
  display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.infra-chips{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.infra-chip{
  display:inline-flex; align-items:center; gap:10px;
  background:#f4f8f9; border:1px solid #e2e8f0; border-radius:999px;
  padding:11px 20px; font-weight:700; color:var(--gray-dark); font-size:14px;
}
.infra-chip .material-icons{ color:var(--gold); font-size:20px; }

/* ---------- OIL: asset image frame ---------- */
.asset-frame{
  border-radius:18px; overflow:hidden; position:relative;
  box-shadow:0 18px 50px -22px rgba(8,34,38,.55);
}
.asset-frame::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,111,94,.25); border-radius:18px;
}

/* fix legacy helper used in condor guidance strip */
@media (min-width:768px){ .border-end-md{ border-right:1px solid #dbe4e6; } }
/* === /OPERATION SUBPAGE LAYOUT VARIANTS === */

/* flatpickr year dropdown (DOB picker) */
.flatpickr-current-month .fp-year-dd {
  -webkit-appearance: auto; appearance: auto;
  background: transparent; border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: inherit; color: inherit;
  padding: 0 2px; margin-left: 4px;
}
.flatpickr-current-month .fp-year-dd:focus { outline: none; }
