/* ==========================================================================
   PETRONAS CORPORATE - Premium Design System (Petronas.com Inspired)
   ========================================================================== */

/* ── 1. CSS Custom Properties ─────────────────────────────────────────────── */
:root {
    --petronas-teal: #00A19C;
    --petronas-dark: #004851;
    --petronas-accent: #00C9B7;
    --petronas-navy: #0A1628;
    --petronas-navy-90: rgba(10, 22, 40, 0.9);
    --petronas-navy-70: rgba(10, 22, 40, 0.7);
    --text-primary: #1A202C;
    --text-secondary: #5A6577;
    --text-light: rgba(255, 255, 255, 0.75);
    --bg-light: #F7F8FA;
    --bg-section: #F0F2F5;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', 'Outfit', system-ui, sans-serif;
}

/* ── 2. Base Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: #FFF;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

img { max-width: 100%; height: auto; }
a { transition: color var(--transition); }

.container {
    width: min(100% - 32px, 1140px);
    margin-inline: auto;
}

.h-100 { height: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }

@media (min-width: 1400px) {
    .container {
        width: min(100% - 48px, 1580px);
    }
}

/* ── 3. Header & Navigation ───────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    padding: 0;
    transform: translateY(0);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    background: transparent;
    color: #FFF;
    --header-height: 112px;
    --nav-row-height: 56px;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.header-scrolled {
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    --header-height: 92px;
    --nav-row-height: 46px;
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(720px, 3.1fr);
    height: var(--header-height);
    background: rgba(44, 55, 68, 0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: height var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.site-header:hover .header-inner {
    background: #FFF;
    color: #111827;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Logo */
.brand-panel {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    padding: 0 18px 0 clamp(18px, 2.6vw, 42px);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FFF;
    flex: 0 0 auto;
}

.site-header:hover .site-logo,
.site-header:hover .site-logo .logo-mark,
.site-header:hover .global-link,
.site-header:hover .global-link a,
.site-header:hover .main-nav .nav-link,
.site-header:hover .header-icon-link,
.site-header:hover .mobile-toggle {
    color: #111827;
}

.site-logo .logo-symbol {
    position: relative;
    width: 31px;
    height: 43px;
    border: 4px solid #FFF;
    border-radius: 22px 22px 22px 4px;
    transform: rotate(32deg);
    background: var(--petronas-teal);
    box-shadow: inset 0 0 0 5px var(--petronas-teal);
}

.site-logo .logo-symbol::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 5px;
    top: 5px;
    border-radius: 50%;
    background: #FFF;
}

.site-logo .logo-mark {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFF;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1;
}

.global-link {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 18px;
    color: rgba(255,255,255,0.88);
}

.global-link a {
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.global-divider {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.75);
    flex: 0 0 auto;
}

.site-header:hover .global-divider {
    background: rgba(17,24,39,0.45);
}

.global-link::after {
    content: '';
    height: 1px;
    flex: 1 1 auto;
    min-width: 40px;
    background: rgba(255,255,255,0.42);
}

.site-header:hover .global-link::after {
    background: rgba(17,24,39,0.22);
}

.nav-panel {
    display: grid;
    grid-template-rows: var(--nav-row-height) var(--nav-row-height);
    height: var(--header-height);
    min-width: 0;
}

.nav-row {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 0;
}

.nav-row-bottom {
    position: relative;
}

.nav-row-top {
    border-bottom: 1px solid rgba(255,255,255,0.26);
}

.site-header:hover .nav-row-top {
    border-bottom-color: rgba(17,24,39,0.16);
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.utility-nav,
.feature-nav {
    justify-content: flex-end;
}

.utility-nav {
    flex: 1 1 auto;
}

.feature-nav {
    width: 100%;
}

.main-nav li {
    display: flex;
    align-items: stretch;
}

.main-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--nav-row-height);
    color: rgba(255,255,255,0.92);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.72rem, 0.74vw, 0.88rem);
    line-height: 1.2;
    padding: 0 clamp(12px, 1.16vw, 24px);
    text-decoration: none;
    border-radius: 0;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #FFF;
}

.site-header:hover .main-nav .nav-link:hover,
.site-header:hover .main-nav .nav-link.active {
    color: #000;
}

.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: var(--petronas-accent);
}

.media-subnav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    width: 100%;
    padding: 0 0 0 var(--media-subnav-left, 54%);
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease, visibility 0.16s ease;
    z-index: 2;
}

.site-header.media-submenu-open .media-subnav,
.site-header:has(.has-submenu:hover) .media-subnav,
.site-header:has(.media-subnav:hover) .media-subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header.media-submenu-open .feature-nav,
.site-header:has(.has-submenu:hover) .feature-nav,
.site-header:has(.media-subnav:hover) .feature-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.media-subnav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--nav-row-height);
    color: #111827;
    font-size: clamp(0.78rem, 0.78vw, 0.92rem);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.media-subnav-link:hover,
.media-subnav-link.active {
    color: var(--petronas-teal);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 clamp(16px, 2.2vw, 34px);
}

.site-header .dropdown {
    position: relative;
}

.site-header .dropdown-menu:not(.show) {
    display: none;
}

.site-header .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #FFF;
    border-radius: 6px;
    z-index: 1300;
}

.header-icon-link {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.header-icon-link i {
    font-size: 1.16rem;
    line-height: 1;
}

.header-icon-link:hover,
.header-icon-link:focus-visible {
    color: #FFF;
    opacity: 0.75;
}

.admin-link {
    width: 23px;
    height: 23px;
    border: 2px solid rgba(255,255,255,0.95);
    border-radius: 50%;
    font-size: 0.48rem;
    font-weight: 800;
    letter-spacing: 0;
}

.site-header:hover .admin-link {
    border-color: rgba(17,24,39,0.9);
}

.language-flag-link {
    overflow: hidden;
    background: #FFF;
}

.site-header:hover .language-flag-link {
    background: #FFF;
}

.flag-icon {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.flag-id {
    background: linear-gradient(to bottom, #D71920 0 50%, #FFF 50% 100%);
}

.flag-en {
    position: relative;
    background: #1F4A9A;
}

.flag-en::before,
.flag-en::after {
    content: '';
    position: absolute;
    inset: 0;
}

.flag-en::before {
    background:
        linear-gradient(35deg, transparent 41%, #FFF 41% 47%, #C8102E 47% 53%, #FFF 53% 59%, transparent 59%),
        linear-gradient(-35deg, transparent 41%, #FFF 41% 47%, #C8102E 47% 53%, #FFF 53% 59%, transparent 59%);
}

.flag-en::after {
    background:
        linear-gradient(to right, transparent 38%, #FFF 38% 44%, #C8102E 44% 56%, #FFF 56% 62%, transparent 62%),
        linear-gradient(to bottom, transparent 38%, #FFF 38% 44%, #C8102E 44% 56%, #FFF 56% 62%, transparent 62%);
}

.language-toggle::after {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px;
}

.mobile-nav-panel { display: none; }

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: none;
    padding-top: clamp(96px, 11vh, 150px);
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.search-overlay.show {
    display: block;
}

body.search-open {
    overflow: hidden;
}

.search-overlay-inner {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
}

.search-overlay-form {
    display: grid;
    grid-template-columns: 1fr 58px;
    align-items: center;
    min-height: 46px;
    overflow: hidden;
    border-radius: 999px;
    background: #FFF;
}

.search-overlay-form input {
    min-width: 0;
    height: 46px;
    border: 0;
    outline: 0;
    padding: 0 20px;
    color: #1F2933;
    font: 500 0.95rem var(--font-body);
}

.search-overlay-form input::placeholder {
    color: #A2A8B8;
}

.search-overlay-form button {
    height: 46px;
    border: 0;
    background: transparent;
    color: var(--petronas-teal);
    font-size: 1.05rem;
    cursor: pointer;
}

.search-overlay-close {
    position: absolute;
    top: 34px;
    right: 42px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #FFF;
    font-size: 1.1rem;
    cursor: pointer;
}

.popular-searches {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    color: #FFF;
}

.popular-searches span {
    margin-right: 12px;
    font-size: 0.9rem;
}

.popular-searches button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    border: 0;
    border-radius: 4px;
    background: var(--petronas-teal);
    color: #FFF;
    padding: 0 10px;
    font-size: 0.82rem;
    cursor: pointer;
}

/* ── 4. Hero Section ───────────────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-section .swiper { width: 100%; height: 100vh; }

.hero-slide {
    position: relative;
    width: 100%; height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,22,40,0.88) 0%,
        rgba(10,22,40,0.5) 40%,
        rgba(10,22,40,0.25) 70%,
        rgba(10,22,40,0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 0;
    width: 100%;
}

.hero-copy-container {
    max-width: 680px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.hero-cta:hover {
    background: var(--petronas-teal);
    border-color: var(--petronas-teal);
    color: #FFF;
    transform: translateY(-2px);
}

.hero-cta i { font-size: 0.85rem; transition: transform var(--transition); }
.hero-cta:hover i { transform: translateX(4px); }

/* Hero Swiper Controls */
.hero-section .swiper-pagination { bottom: 40px !important; }
.hero-section .swiper-pagination-bullet {
    width: 40px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all var(--transition);
}
.hero-section .swiper-pagination-bullet-active {
    background: var(--petronas-accent);
    width: 60px;
}
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev { color: rgba(255,255,255,0.6); }
.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover { color: #FFF; }
.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after { font-size: 1.4rem; }

/* ── 5. Section Titles ────────────────────────────────────────────── */
.section-header { margin-bottom: 48px; }

.section-header .section-label {
    display: inline-block;
    color: var(--petronas-teal);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-header.text-center p { margin-left: auto; margin-right: auto; }

.section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--petronas-teal);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all var(--transition);
}
.section-view-all:hover { color: var(--petronas-dark); gap: 12px; }

/* ── 6. News / Latest Updates ─────────────────────────────────────── */
.news-section {
    padding: 86px 0 92px;
    background: #FFF;
    overflow: hidden;
}

.latest-updates-header {
    margin-bottom: 36px;
}

.latest-updates-header h2 {
    margin: 0 0 22px;
    color: #303640;
    font-size: clamp(2.2rem, 3.1vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
}

.latest-updates-header h2::first-letter {
    font-weight: 800;
}

.latest-updates-header p {
    max-width: 920px;
    margin: 0;
    color: #444C58;
    font-size: 1rem;
    line-height: 1.65;
}

.latest-updates-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 2.25fr);
    gap: 24px;
    align-items: stretch;
}

.latest-featured-card,
.latest-card {
    min-width: 0;
}

.latest-featured-image,
.latest-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    background: #DDE5E8;
}

.latest-featured-image {
    height: 100%;
    min-height: 560px;
}

.latest-featured-image img,
.latest-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.latest-featured-image:hover img,
.latest-card-image:hover img {
    transform: scale(1.04);
}

.latest-featured-label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    min-height: 48px;
    padding: 0 26px;
    background: #75409D;
    color: #FFF;
    border-radius: 0 0 8px 0;
    font-size: 0.94rem;
    font-weight: 800;
}

.latest-featured-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.12) 52%, rgba(0,0,0,0) 78%);
}

.latest-featured-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 26px;
    z-index: 2;
    color: #FFF;
}

.latest-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #343B46;
    font-size: 0.98rem;
    line-height: 1.35;
}

.latest-featured-content .latest-card-meta {
    color: #FFF;
    margin-bottom: 14px;
    font-weight: 700;
}

.latest-card-meta time {
    white-space: nowrap;
}

.latest-featured-title {
    display: block;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.latest-slider-wrap {
    min-width: 0;
    overflow: hidden;
}

.latest-updates-swiper {
    overflow: hidden;
    padding-right: 0;
}

.latest-updates-swiper .swiper-wrapper {
    display: flex;
    gap: 24px;
}

.latest-updates-swiper .swiper-slide {
    flex: 0 0 min(48%, 460px);
}

.latest-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.latest-card-image {
    aspect-ratio: 1.16 / 1;
}

.latest-read-more {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 26px;
    color: #FFF;
    background: var(--petronas-teal);
    border: 6px solid #FFF;
    border-top: 0;
    border-right: 0;
    border-radius: 0 8px 0 14px;
    font-size: 0.9rem;
    font-weight: 700;
}

.latest-read-more i,
.latest-nav i,
.latest-view-all i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.latest-read-more i,
.latest-view-all i {
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.75rem;
}

.latest-card-body {
    padding: 0 16px;
}

.latest-card h3 {
    margin: 18px 0 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.42;
}

.latest-card h3 a {
    color: #3F4651;
    text-decoration: none;
}

.latest-card h3 a:hover {
    color: var(--petronas-teal);
}

.latest-slider-controls {
    display: grid;
    grid-template-columns: 56px minmax(130px, 1fr) 56px auto;
    align-items: center;
    gap: 42px;
    max-width: 560px;
    margin-top: 34px;
}

.latest-nav {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--petronas-teal);
    color: #FFF;
    cursor: pointer;
    transition: all var(--transition);
}

.latest-nav:hover,
.latest-view-all:hover {
    background: var(--petronas-dark);
    color: #FFF;
}

.latest-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.latest-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: #6F3FA0;
    opacity: 1;
}

.latest-pagination .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 999px;
    background: var(--petronas-teal);
}

.latest-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    color: #FFF;
    background: var(--petronas-teal);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
}

/* ── 7. Energy Transition ──────────────────────────────────────────── */
.energy-transition-section {
    position: relative;
    padding: 86px 0 72px;
    background: #FFF;
    overflow: hidden;
}

.energy-transition-section::before,
.energy-transition-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(circle, rgba(0,161,156,0.95) 1.8px, transparent 2.4px);
    background-size: 15px 15px;
    opacity: 0.75;
    transform: rotate(-18deg);
}

.energy-transition-section::before {
    left: -130px;
    bottom: -135px;
    background-image: radial-gradient(circle, rgba(46,62,151,0.9) 1.8px, transparent 2.4px);
}

.energy-transition-section::after {
    right: -150px;
    top: 190px;
}

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

.energy-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.energy-section-header h2 {
    max-width: 560px;
    margin: 0 0 38px;
    color: #303640;
    font-size: clamp(2.2rem, 3.1vw, 3.4rem);
    font-weight: 400;
    line-height: 1.16;
}

.energy-section-header p {
    max-width: 840px;
    margin: 0;
    color: #444C58;
    font-size: 1rem;
    line-height: 1.45;
}

.energy-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    margin-bottom: 8px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--petronas-teal);
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.energy-view-all i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.75rem;
}

.energy-view-all:hover {
    background: var(--petronas-dark);
    color: #FFF;
}

.energy-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.energy-card {
    position: relative;
    display: block;
    min-height: 460px;
    overflow: hidden;
    border-radius: 8px;
    color: #FFF;
    text-decoration: none;
    background: #D9DEE4;
}

.energy-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.energy-card:hover img {
    transform: scale(1.04);
}

.energy-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.06) 58%, rgba(0,0,0,0) 100%);
}

.energy-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #FFF;
    padding: 0 24px 36px;
    text-align: center;
    transition: all var(--transition);
}

.energy-card-title {
    display: block;
    font-size: clamp(1.2rem, 1.45vw, 1.6rem);
    font-weight: 400;
    line-height: 1.2;
}

.energy-card-summary {
    display: block;
    max-width: 360px;
    max-height: 0;
    margin: 0 auto;
    overflow: hidden;
    color: rgba(255,255,255,0.94);
    font-size: 0.86rem;
    line-height: 1.35;
    opacity: 0;
    transition: all var(--transition);
}

.energy-card:hover .energy-card-content,
.energy-card:focus-visible .energy-card-content {
    padding: 22px 26px 28px;
    background: linear-gradient(180deg, var(--petronas-teal) 0%, #78419F 100%);
}

.energy-card:hover .energy-card-title,
.energy-card:focus-visible .energy-card-title {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.energy-card:hover .energy-card-summary,
.energy-card:focus-visible .energy-card-summary {
    max-height: 130px;
    opacity: 1;
}

/* ── 8. Financial Results ──────────────────────────────────────────── */
.financial-results-section {
    position: relative;
    padding: 90px 0 78px;
    min-height: 760px;
    overflow: hidden;
    background-image: url('/assets/images/hero-2.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
}

.financial-results-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.14) 100%);
}

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

.financial-results-content {
    max-width: 960px;
    margin-bottom: 40px;
}

.financial-results-content h2 {
    margin: 0 0 48px;
    color: #FFF;
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 600;
}

.financial-results-content h3 {
    margin: 0 0 12px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 800;
}

.financial-results-content p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
}

.financial-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin-bottom: 64px;
}

.financial-stat-card {
    min-height: 172px;
    padding: 26px 24px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #394AAE 0%, #7A3F9D 100%);
    color: #FFF;
}

.financial-stat-card span {
    display: block;
    margin-bottom: 18px;
    font-size: 0.84rem;
    font-weight: 700;
}

.financial-stat-card strong {
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    font-weight: 300;
    line-height: 1;
}

.financial-stat-card small {
    margin-left: 2px;
    font-size: 0.68em;
}

.financial-stat-card p {
    margin: 0;
    color: #FFF;
    font-size: 0.95rem;
    line-height: 1.4;
}

.financial-documents {
    width: min(100%, 1100px);
    padding: 28px 40px 32px;
    border-radius: 14px;
    background: #FFF;
    color: #1F2933;
}

.financial-documents-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #1F2933;
}

.financial-documents-header h3 {
    margin: 0;
    font-size: 1.45rem;
    color: #1F2933;
}

.financial-documents-header a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--petronas-teal);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
}

.financial-documents-header i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.75rem;
}

.financial-document-row {
    display: grid;
    grid-template-columns: 1fr auto 28px;
    align-items: center;
    gap: 24px;
    min-height: 68px;
    border-bottom: 1px solid #1F2933;
    color: #4A5360;
    text-decoration: none;
    font-size: 0.9rem;
}

.financial-document-row:last-child {
    border-bottom: 0;
}

.financial-document-row time {
    white-space: nowrap;
}

.financial-document-row i {
    color: #000;
    font-size: 1.25rem;
}

/* Reports Archive */
.reports-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68)),
        url('/assets/images/news-2.jpg') center/cover no-repeat;
    color: #fff;
    padding: 160px 0 92px;
}

.reports-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 33, 39, 0.6), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.38));
}

.reports-hero-dots {
    position: absolute;
    right: -4vw;
    top: 16vh;
    width: min(58vw, 820px);
    aspect-ratio: 1.8;
    opacity: 0.85;
    background-image: radial-gradient(circle, rgba(0, 161, 156, 0.92) 0 3px, transparent 3.5px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at center, #000 0 54%, transparent 72%);
    transform: rotate(-16deg);
}

.reports-hero .container,
.reports-hero-copy {
    position: relative;
    z-index: 1;
}

.reports-hero-copy {
    max-width: 620px;
}

.reports-hero-copy span {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.reports-hero-copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.reports-hero-copy p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.reports-listing-section {
    background: linear-gradient(180deg, #00A9A3 0%, #35609F 72%, #6255A5 100%);
    padding: 42px 0 96px;
}

.reports-listing-frame {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
}

.reports-filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 150px 150px 120px;
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
}

.reports-search-field {
    min-height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
}

.reports-search-field input,
.reports-filter-bar select {
    width: 100%;
    min-height: 42px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: #fff;
    color: #293241;
    font-weight: 650;
}

.reports-search-field input {
    padding: 0 18px;
}

.reports-search-field button {
    width: 46px;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: #1D2939;
    font-size: 1.05rem;
}

.reports-filter-bar select {
    padding: 0 42px 0 18px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.report-card {
    min-width: 0;
}

.report-card a {
    min-height: 282px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 8px;
    padding: 22px;
    color: #fff;
    text-decoration: none;
    background:
        radial-gradient(circle at 72% 0%, rgba(111, 63, 160, 0.88), transparent 34%),
        radial-gradient(circle at 28% 68%, rgba(0, 161, 156, 0.92), transparent 38%),
        linear-gradient(145deg, #102F62 0%, #00877F 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 42px rgba(16, 24, 40, 0.14);
}

.report-card:not(.has-cover) a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 204, 190, 0.5) 0 2px, transparent 2.5px);
    background-size: 11px 11px;
    opacity: 0.56;
}

.report-card.has-cover a {
    background-size: cover;
}

.report-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48));
}

.report-card time,
.report-card i,
.report-card h2 {
    position: relative;
    z-index: 1;
}

.report-card time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 750;
}

.report-card i {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.report-card h2 {
    max-width: 94%;
    margin: auto 0 0;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.28;
    font-weight: 850;
}

@media (max-width: 991.98px) {
    .reports-filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .reports-search-field {
        grid-column: 1 / -1;
    }

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

@media (max-width: 575.98px) {
    .reports-hero {
        min-height: 82vh;
        padding: 130px 0 62px;
    }

    .reports-filter-bar,
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .report-card a {
        min-height: 240px;
    }
}

/* ── 9. Highlights ────────────────────────────────────────────────── */
.highlights-section {
    position: relative;
    padding: 86px 0 96px;
    background: #FFF;
    overflow: hidden;
}

.highlights-header {
    margin-bottom: 38px;
}

.highlights-header h2,
.inside-energy-header h2 {
    margin: 0 0 22px;
    color: #303640;
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
}

.highlights-header p {
    margin: 0;
    color: #434B56;
    font-size: 1rem;
}

.highlights-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: start;
}

.highlights-image-panel {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.highlights-image-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.highlights-list {
    display: grid;
}

.highlight-item {
    border-bottom: 1px solid #CCD2D7;
}

.highlight-item button {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    background: transparent;
    color: #303640;
    padding: 0 4px 0 6px;
    text-align: left;
    cursor: pointer;
}

.highlight-item button span {
    font-size: clamp(1.2rem, 1.55vw, 1.55rem);
    font-weight: 500;
    line-height: 1.25;
}

.highlight-item button i {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--petronas-teal);
    color: #FFF;
    font-size: 1.05rem;
}

.highlight-item p,
.highlight-item a {
    display: none;
}

.highlight-item.active button {
    min-height: 62px;
    color: #008E89;
}

.highlight-item.active button i {
    background: #254A9D;
}

.highlight-item.active p {
    display: block;
    margin: 0 58px 26px 6px;
    color: #4A5360;
    font-size: 1rem;
    line-height: 1.42;
}

.highlight-item.active a {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 38px 6px;
    color: var(--petronas-teal);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.highlight-item.active a i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.72rem;
}

/* ── 10. Inside Energy Asia ───────────────────────────────────────── */
.inside-energy-section {
    position: relative;
    padding: 64px 0 66px;
    background: linear-gradient(180deg, #079B9D 0%, #324796 42%, #33499B 100%);
    color: #FFF;
    overflow: hidden;
}

.inside-energy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 76px;
}

.inside-energy-header h2 {
    margin: 0;
    color: #FFF;
}

.inside-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--petronas-teal);
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.inside-view-all i,
.inside-read-more i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.72rem;
}

.inside-view-all:hover,
.inside-read-more:hover {
    color: #FFF;
    background: var(--petronas-dark);
}

.inside-energy-carousel {
    width: 100%;
    overflow: hidden;
}

.inside-energy-track {
    display: flex;
    gap: 24px;
    overflow: visible;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.inside-energy-track::-webkit-scrollbar {
    display: none;
}

.inside-energy-carousel.swiper-initialized .inside-energy-track {
    gap: 0;
}

.inside-energy-card {
    min-width: 0;
    flex: 0 0 clamp(390px, 31vw, 560px);
}

.inside-energy-image {
    position: relative;
    display: block;
    min-height: 440px;
    overflow: hidden;
    border-radius: 8px;
    color: #FFF;
    text-decoration: none;
    background: #16213A;
}

.inside-energy-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.inside-energy-image:hover img {
    transform: scale(1.04);
}

.inside-read-more {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 26px;
    background: var(--petronas-teal);
    border-radius: 0 0 0 8px;
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 700;
}

.inside-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 58%, rgba(0,0,0,0) 100%);
}

.inside-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #FFF;
}

.inside-card-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.inside-card-meta strong {
    max-width: 78%;
    font-size: 1rem;
    line-height: 1.25;
}

.inside-card-meta time {
    flex: 0 0 auto;
    font-size: 1rem;
}

.inside-card-content > span:last-child {
    display: block;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.35;
}

/* ── 11. Page Headers ──────────────────────────────────────────────── */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--petronas-navy) 0%, var(--petronas-dark) 100%);
    position: relative; overflow: hidden;
}

.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px; background: linear-gradient(to top, rgba(0,161,156,0.05), transparent);
}

.page-hero h1 { font-size: 2.8rem; font-weight: 800; color: #FFF; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: var(--text-light); max-width: 600px; }
.page-hero.text-center p { margin-left: auto; margin-right: auto; }

.page-image-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    padding: 160px 0 90px;
    background-size: cover;
    background-position: center;
    color: #FFF;
    overflow: hidden;
}

.contact-hero {
    background-position: center 28%;
}

.about-hero {
    min-height: 520px;
    background-position: center;
}

.about-structure-hero {
    background-position: center 28%;
}

.page-image-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 62% 38%, rgba(0, 176, 170, 0.28), transparent 18%),
        linear-gradient(to top, rgba(7, 17, 31, 0.82) 0%, rgba(7, 17, 31, 0.32) 46%, rgba(7, 17, 31, 0.2) 100%);
}

.page-image-hero::after {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    right: 28%;
    top: 24%;
    opacity: 0.72;
    background-image: radial-gradient(circle, rgba(0, 161, 156, 0.95) 2.4px, transparent 3px);
    background-size: 14px 14px;
    transform: rotate(30deg);
    mask-image: radial-gradient(circle, #000 0 58%, transparent 70%);
}

.about-hero::after {
    right: 6%;
    top: 34%;
    background-image: radial-gradient(circle, rgba(117, 64, 157, 0.9) 2.4px, transparent 3px);
}

.page-image-hero .container {
    position: relative;
    z-index: 2;
}

.page-image-hero-copy {
    max-width: 640px;
}

.page-image-hero-copy span {
    display: block;
    margin-bottom: 14px;
    font-size: 0.92rem;
    font-weight: 600;
}

.page-image-hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    font-weight: 500;
    line-height: 1.06;
}

.page-image-hero-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
}

.home-network-section {
    background: linear-gradient(112deg, #77409F 0%, #34479A 62%, #33489B 100%);
    color: #FFF;
}

.home-network-toggle {
    min-height: 212px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    background: transparent;
    color: #FFF;
    padding: 0;
    cursor: pointer;
}

.home-network-toggle span {
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    font-weight: 400;
}

.home-network-toggle i {
    font-size: 1.65rem;
}

/* ── 12. Footer ────────────────────────────────────────────────────── */
.site-footer {
    position: relative;
    background: #FFF;
    color: #000;
}

.footer-legal-area {
    position: relative;
    padding: 46px 0 52px;
    background: #FFF;
    overflow: hidden;
}

.footer-legal-area::after {
    content: '';
    position: absolute;
    right: -86px;
    top: 8px;
    width: 230px;
    height: 230px;
    pointer-events: none;
    opacity: 0.85;
    background-image: radial-gradient(circle, rgba(46,62,151,0.95) 2px, transparent 2.7px);
    background-size: 13px 13px;
}

.footer-legal-area .container {
    position: relative;
    z-index: 1;
}

.footer-legal-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 28px 0 70px;
    border-top: 1px solid #C9CED4;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.footer-policy-links-right {
    justify-content: flex-end;
}

.footer-policy-links a {
    color: #000;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-policy-links a:hover {
    color: var(--petronas-teal);
}

.footer-legal-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-legal-bottom p {
    margin: 0;
    color: #000;
    font-size: 0.9rem;
    line-height: 1.45;
}

.footer-legal-bottom small {
    font-size: 0.58rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-social a {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--transition);
}

.footer-social a:hover {
    color: var(--petronas-teal);
    transform: translateY(-2px);
}

/* ── 13. Contact Page ──────────────────────────────────────────────── */
.contact-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(0,161,156,0.1), rgba(0,201,183,0.1));
    display: flex; align-items: center; justify-content: center;
    color: var(--petronas-teal); font-size: 1.1rem; flex-shrink: 0;
}

.contact-subscribe-section {
    position: relative;
    padding: 0;
    background: #FFF;
    overflow: hidden;
}

.contact-teal-panel {
    display: none;
}

.contact-subscribe-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: stretch;
    min-height: 1300px;
}

.contact-left-panel {
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: clamp(34px, 5vw, 62px);
    background: linear-gradient(180deg, #08A9A1 0%, #1173B6 100%);
    overflow: hidden;
}

.contact-left-panel::before {
    content: '';
    width: 100%;
    aspect-ratio: 1;
    display: block;
    opacity: 0.56;
    background-image: radial-gradient(circle, rgba(255,255,255,0.75) 2px, transparent 2.7px);
    background-size: 18px 18px;
    transform: rotate(-18deg);
    mask-image: radial-gradient(circle, #000 0 56%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, #000 0 56%, transparent 70%);
}

.contact-subscribe-form {
    display: grid;
    gap: 24px;
}

.contact-form-panel {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(100px, 8vw, 130px) 0 0;
}

.contact-form-panel > p {
    margin: 0 0 28px;
    color: #4D5561;
    font-size: 0.98rem;
    line-height: 1.55;
}

.contact-field-stack {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-subscribe-form input[type="text"],
.contact-subscribe-form input[type="email"] {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border: 1.6px solid var(--petronas-teal);
    border-radius: 8px;
    color: #303640;
    font: inherit;
    outline: none;
}

.contact-subscribe-form input:focus {
    box-shadow: 0 0 0 4px rgba(0, 161, 156, 0.13);
}

.contact-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 60px;
    padding: 8px 0 16px;
}

.contact-checkbox-grid label {
    color: #57606C;
    font-size: 0.94rem;
}

.contact-checkbox-grid input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    vertical-align: -2px;
}

.contact-captcha {
    width: 300px;
    min-height: 76px;
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #D5D9DF;
    background: #F9FAFB;
    color: #2E3440;
    cursor: pointer;
}

.contact-captcha input {
    width: 26px;
    height: 26px;
    margin: 0;
    accent-color: var(--petronas-teal);
}

.contact-captcha strong {
    font-size: 0.86rem;
    font-weight: 500;
}

.contact-captcha small {
    color: #8B939F;
    font-size: 0.65rem;
    text-align: center;
}

.contact-captcha small::before {
    content: '';
    width: 22px;
    height: 18px;
    display: block;
    margin: 0 auto 2px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, #4678F5 0 50%, #DDE7FF 50% 100%);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    border: 0;
    background: transparent;
    color: var(--petronas-teal);
    font-weight: 700;
    padding: 8px 0;
    cursor: pointer;
}

.contact-alert {
    margin: 0 0 22px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 650;
}

.contact-alert-success {
    color: #00635E;
    background: rgba(0, 161, 156, 0.12);
    border: 1px solid rgba(0, 161, 156, 0.26);
}

.contact-alert-error {
    color: #9F1239;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.22);
}

.contact-submit i,
.know-more-card a i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.privacy-card {
    position: absolute;
    left: 26%;
    bottom: 108px;
    z-index: 2;
    width: min(760px, 54vw);
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: clamp(30px, 4vw, 48px);
    background: #F5F5F6;
    border-radius: 32px;
    box-shadow: 0 22px 60px rgba(20, 28, 42, 0.12);
}

.privacy-card > i {
    color: var(--petronas-teal);
    font-size: 2rem;
}

.privacy-card h2 {
    margin: 0 0 22px;
    color: #303640;
    font-size: 1.65rem;
}

.privacy-card h3 {
    margin: 20px 0 8px;
    color: #303640;
    font-size: 1.05rem;
}

.privacy-card p {
    margin: 0;
    color: #5D6672;
    font-size: 0.9rem;
    line-height: 1.45;
}

.know-more-section {
    background: #FFF;
    overflow: hidden;
}

.know-more-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 24px;
    background: #7A3FA0;
    color: #FFF;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-weight: 800;
}

.know-more-carousel {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    min-height: 500px;
}

.know-more-card {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: clamp(42px, 7vw, 110px);
    background-size: cover;
    background-position: center;
    color: #FFF;
    overflow: hidden;
}

.know-more-card > span {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.2));
}

.know-more-card > div {
    position: relative;
    z-index: 1;
    max-width: 470px;
}

.know-more-card h2 {
    margin: 0 0 16px;
    font-size: clamp(1.7rem, 3vw, 3.2rem);
    line-height: 1.08;
    font-weight: 500;
}

.know-more-card p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.9);
}

.know-more-card a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
}

/* ── 13b. About Leaders ───────────────────────────────────────────── */
.leaders-section {
    padding: 74px 0 96px;
    background: #F4F5F6;
}

.leaders-group + .leaders-group {
    margin-top: 64px;
}

.leader-grid {
    display: grid;
    gap: 28px;
    justify-content: center;
}

.leader-grid-top,
.leader-grid-bottom {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.leader-card {
    overflow: hidden;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.leader-photo {
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 26px;
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,0.95) 0 18%, transparent 19%),
        linear-gradient(160deg, #E2E8F0, #CBD5E1);
}

.leader-photo span {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF;
    color: var(--petronas-teal);
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.leader-photo-1 { background: linear-gradient(160deg, #E5EEF4, #BFD2DE); }
.leader-photo-2 { background: linear-gradient(160deg, #EEF2FF, #C7D2FE); }
.leader-photo-3 { background: linear-gradient(160deg, #ECFDF5, #A7F3D0); }
.leader-photo-4 { background: linear-gradient(160deg, #F5F3FF, #DDD6FE); }
.leader-photo-5 { background: linear-gradient(160deg, #F8FAFC, #CBD5E1); }
.leader-photo-6 { background: linear-gradient(160deg, #F0FDFA, #99F6E4); }

.leader-info {
    padding: 18px 20px 24px;
}

.leader-info h3 {
    margin: 0 0 8px;
    color: var(--petronas-teal);
    font-size: 0.95rem;
    line-height: 1.28;
}

.leader-info p {
    margin: 0;
    color: #596270;
    font-size: 0.82rem;
    line-height: 1.45;
}

/* ── 13c. News Index ──────────────────────────────────────────────── */
.news-index-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 clamp(64px, 10vh, 112px);
    background-size: cover;
    background-position: center;
    color: #FFF;
    overflow: hidden;
}

.news-index-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(7, 17, 31, 0.78) 0%, rgba(7, 17, 31, 0.34) 54%, rgba(7, 17, 31, 0.16) 100%),
        linear-gradient(90deg, rgba(7, 17, 31, 0.52) 0%, rgba(7, 17, 31, 0.04) 58%);
}

.news-index-hero .container {
    position: relative;
    z-index: 1;
}

.news-index-hero-copy {
    max-width: 720px;
}

.news-index-hero-copy span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    font-weight: 600;
}

.news-index-hero-copy h1 {
    margin: 0 0 30px;
    color: #FFF;
    font-size: clamp(2.4rem, 5.2vw, 5.2rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: 0;
}

.news-index-hero-copy a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.news-index-hero-copy a i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
}

.news-index-listing {
    padding: 34px 0 92px;
    background: #07A79F;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.14), transparent 28%),
        linear-gradient(180deg, #05AAA2 0%, #069D96 100%);
}

.news-listing-frame {
    width: min(910px, calc(100% - 32px));
    margin: 0 auto;
}

.news-filter-bar {
    width: 100%;
    margin: 0 0 42px;
    display: grid;
    grid-template-columns: minmax(220px, 1.6fr) minmax(150px, 0.82fr) minmax(110px, 0.55fr) minmax(135px, 0.72fr);
    gap: 18px;
    align-items: center;
}

.news-search-field {
    position: relative;
}

.news-search-field input,
.news-filter-bar select {
    width: 100%;
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    background: #FFF;
    color: #303640;
    font: inherit;
    font-size: 0.82rem;
    outline: none;
    box-shadow: 0 8px 18px rgba(0, 74, 72, 0.14);
}

.news-search-field input {
    padding: 0 44px 0 18px;
}

.news-filter-bar select {
    appearance: none;
    padding: 0 34px 0 18px;
    background-image:
        linear-gradient(45deg, transparent 50%, #303640 50%),
        linear-gradient(135deg, #303640 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.news-search-field button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #303640;
}

.news-index-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-index-card a {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 18px;
    border-radius: 7px;
    background-size: cover;
    background-position: center;
    color: #FFF;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 67, 65, 0.22);
}

.news-index-card a::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 178, 170, 0.58) 1.7px, transparent 2.4px);
    background-size: 11px 11px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.news-index-card a:hover::after {
    opacity: 0.34;
}

.news-index-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 13, 26, 0.82) 0%, rgba(4, 13, 26, 0.28) 58%, rgba(4, 13, 26, 0.06) 100%),
        linear-gradient(135deg, rgba(0, 161, 156, 0.22), rgba(117, 64, 157, 0.22));
}

.news-index-card time,
.news-index-card h2,
.news-index-card > a > i {
    position: relative;
    z-index: 2;
}

.news-index-card time {
    position: absolute;
    top: 16px;
    left: 18px;
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    font-weight: 700;
}

.news-index-card > a > i {
    position: absolute;
    top: 15px;
    right: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
}

.news-index-card h2 {
    margin: 0;
    color: #FFF;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.26;
}

.news-empty-state {
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 28px;
    border-radius: 12px;
    background: rgba(255,255,255,0.94);
    text-align: center;
}

.news-empty-state h2 {
    margin: 0 0 10px;
    color: #303640;
}

.news-empty-state p {
    margin: 0;
    color: #596270;
}

/* ── 13c-1. Supplier Announcements ───────────────────────────────── */
.supplier-index-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 clamp(64px, 10vh, 112px);
    background-size: cover;
    background-position: center;
    color: #FFF;
    overflow: hidden;
}

.supplier-index-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 18, 31, 0.82) 0%, rgba(8, 18, 31, 0.32) 58%, rgba(8, 18, 31, 0.08) 100%),
        linear-gradient(90deg, rgba(8, 18, 31, 0.58) 0%, rgba(8, 18, 31, 0.08) 62%);
}

.supplier-index-hero-dots {
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: min(480px, 42vw);
    height: min(480px, 42vw);
    pointer-events: none;
    opacity: 0.78;
    background-image: radial-gradient(circle, rgba(0, 178, 170, 0.82) 2.4px, transparent 3.2px);
    background-size: 17px 17px;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1), rgba(0,0,0,0) 68%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1), rgba(0,0,0,0) 68%);
}

.supplier-index-hero .container {
    position: relative;
    z-index: 1;
}

.supplier-index-hero-copy {
    max-width: 720px;
}

.supplier-index-hero-copy span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    font-weight: 600;
}

.supplier-index-hero-copy h1 {
    margin: 0;
    color: #FFF;
    font-size: clamp(2.4rem, 5.2vw, 5.2rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: 0;
}

.supplier-index-listing {
    padding: 34px 0 92px;
    background: #08A8A0;
    background-image: linear-gradient(180deg, #08A8A0 0%, #168B99 34%, #6450A0 100%);
}

.supplier-listing-frame {
    width: min(910px, calc(100% - 32px));
    margin: 0 auto;
}

.supplier-filter-bar {
    width: 100%;
    margin: 0 0 42px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(120px, 170px);
    gap: 18px;
    align-items: center;
}

.supplier-search-field {
    position: relative;
}

.supplier-search-field input,
.supplier-filter-bar select {
    width: 100%;
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    background: #FFF;
    color: #303640;
    font: inherit;
    font-size: 0.82rem;
    outline: none;
    box-shadow: 0 8px 18px rgba(0, 74, 72, 0.14);
}

.supplier-search-field input {
    padding: 0 44px 0 18px;
}

.supplier-filter-bar select {
    appearance: none;
    padding: 0 34px 0 18px;
    background-image:
        linear-gradient(45deg, transparent 50%, #303640 50%),
        linear-gradient(135deg, #303640 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.supplier-search-field button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #303640;
}

.supplier-index-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.supplier-index-card a {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 18px;
    border-radius: 7px;
    background-size: cover;
    background-position: center;
    color: #FFF;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 42, 54, 0.22);
}

.supplier-index-card a::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 178, 170, 0.58) 1.7px, transparent 2.4px);
    background-size: 11px 11px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.supplier-index-card a:hover::after {
    opacity: 0.34;
}

.supplier-index-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 13, 26, 0.84) 0%, rgba(4, 13, 26, 0.36) 58%, rgba(4, 13, 26, 0.08) 100%),
        linear-gradient(135deg, rgba(0, 161, 156, 0.25), rgba(117, 64, 157, 0.25));
}

.supplier-index-card time,
.supplier-index-card h2,
.supplier-index-card > a > i {
    position: relative;
    z-index: 2;
}

.supplier-index-card time {
    position: absolute;
    top: 16px;
    left: 18px;
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    font-weight: 700;
}

.supplier-index-card > a > i {
    position: absolute;
    top: 15px;
    right: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
}

.supplier-index-card h2 {
    margin: 0;
    color: #FFF;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.26;
}

.supplier-detail-title {
    margin: 0 0 18px;
    color: #303640;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.14;
    font-weight: 650;
    letter-spacing: 0;
}

.supplier-detail-figure {
    margin: 34px 0 38px;
}

/* ── 13d. News Detail ─────────────────────────────────────────────── */
.news-detail-hero {
    position: relative;
    min-height: 630px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #068F89 0%, #075A5C 52%, #022E32 100%);
    color: #FFF;
    overflow: hidden;
}

.news-detail-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.86;
    background:
        radial-gradient(circle at 62% 32%, rgba(117, 64, 157, 0.42), transparent 30%),
        radial-gradient(circle, rgba(0, 201, 183, 0.65) 3px, transparent 4px);
    background-size: auto, 18px 18px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.news-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 22, 25, 0.88), rgba(1, 22, 25, 0.22));
}

.news-detail-hero .container {
    position: relative;
    z-index: 2;
}

.news-detail-hero-copy {
    max-width: 620px;
}

.news-detail-hero-copy h1 {
    margin: 0;
    color: #FFF;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1.12;
}

.news-detail-section {
    position: relative;
    margin-top: -64px;
    padding: 0 0 128px;
    background: linear-gradient(180deg, #08A8A0 0%, #244F89 58%, #69499D 100%);
}

.news-detail-card {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    margin: 0 auto;
    padding: clamp(34px, 4vw, 56px);
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0 22px 60px rgba(2, 24, 43, 0.18);
}

.news-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    margin-bottom: 34px;
    border-bottom: 1px solid #C9CED4;
}

.news-detail-meta > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #687180;
    font-size: 0.86rem;
}

.news-detail-meta > div span + span::before {
    content: '-';
    margin-right: 10px;
    color: #9AA3AF;
}

.news-detail-meta i {
    color: #1F2937;
}

.news-copy-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #FFF;
    color: #1F2937;
    transition: all var(--transition);
}

.news-copy-link:hover,
.news-copy-link.copied {
    background: rgba(0, 161, 156, 0.12);
    color: var(--petronas-teal);
}

.news-detail-body {
    color: #586170;
    font-size: 1rem;
    line-height: 1.58;
}

.news-detail-body p {
    margin: 0 0 18px;
}

.news-detail-lead {
    color: #44505E;
    font-weight: 600;
}

.news-detail-figure {
    margin: 28px 0 0;
}

.news-detail-figure img {
    width: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

.news-detail-figure figcaption {
    margin-top: 12px;
    color: #687180;
    font-size: 0.84rem;
    text-align: center;
}

.news-detail-gallery {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 22px;
    margin: 48px 0 44px;
}

.news-detail-gallery button,
.news-detail-back i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: var(--petronas-teal);
}

.news-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.news-detail-thumbs img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
}

.news-detail-back:hover {
    color: var(--petronas-teal);
}

/* ── 13e. Floating Quick Actions ──────────────────────────────────── */
.floating-action-stack {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 980;
    display: flex;
    flex-direction: column;
    width: 62px;
    overflow: hidden;
    border-radius: 14px 0 0 14px;
    background: #7A3EA0;
    box-shadow: 0 16px 34px rgba(52, 20, 84, 0.26);
    transform: translateY(-50%);
}

.floating-action-stack > a,
.floating-action-stack > button {
    width: 62px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.82);
    background: transparent;
    color: #FFF;
    font-size: 1.36rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.floating-action-stack > a:last-child,
.floating-action-stack > button:last-child {
    border-bottom: 0;
}

.floating-action-stack > a:hover,
.floating-action-stack > button:hover {
    background: #214B9B;
    color: #FFF;
}

.floating-social-list {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0 18px;
    background: #FFF;
}

.floating-social-list a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--petronas-teal);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.floating-social-list a:hover {
    color: #214B9B;
    transform: translateY(-2px);
}

.floating-action-stack.social-open {
    background: transparent;
}

.floating-action-stack.social-open > a,
.floating-action-stack.social-open > button.search-toggle {
    background: #7A3EA0;
}

.floating-action-stack.social-open .floating-social-toggle {
    display: none;
}

.floating-action-stack.social-open .floating-social-list {
    display: flex;
}

/* ── 14. Article / News Detail ─────────────────────────────────────── */
.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); }
.article-body p { margin-bottom: 20px; }
.article-body img { border-radius: var(--radius-md); margin: 20px 0; }

/* ── 15. Buttons ───────────────────────────────────────────────────── */
.btn-petronas {
    background: var(--petronas-teal); color: #FFF !important;
    font-family: var(--font-body); font-weight: 600;
    padding: 13px 32px; border-radius: 6px; border: none;
    transition: all var(--transition); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; font-size: 0.92rem;
}
.btn-petronas:hover {
    background: var(--petronas-dark); transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,161,156,0.25); color: #FFF !important;
}

/* ── 16. Utilities ─────────────────────────────────────────────────── */
.text-teal { color: var(--petronas-teal) !important; }
.bg-petronas-light { background-color: var(--bg-light) !important; }
.max-w-700 { max-width: 700px; }

.news-badge {
    background: var(--petronas-teal); color: #FFF;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 4px;
}

/* Brand badge for admin */
.brand-badge {
    background: linear-gradient(135deg, var(--petronas-teal), var(--petronas-accent));
    color: #FFF; font-weight: 800; padding: 6px 14px;
    border-radius: 6px; font-size: 1.1rem; letter-spacing: 1px; display: inline-block;
}

/* ── 17. Responsive ────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .site-header {
        background: rgba(22, 31, 43, 0.86);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 76px;
        padding: 0 18px;
    }

    .header-scrolled .header-inner { height: 68px; }

    .brand-panel {
        padding: 0;
        border-right: 0;
    }

    .global-link {
        display: none;
    }

    .nav-panel {
        display: none;
    }

    .header-actions {
        padding: 0;
        gap: 12px;
        border-left: 0;
    }

    .header-actions > .admin-link,
    .header-actions > .dropdown,
    .header-actions > .header-icon-link:not(.admin-link) {
        display: none;
    }

    .mobile-toggle { display: block; }

    .mobile-nav-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,22,40,0.98);
        padding: 14px 18px 18px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.32);
        border-top: 1px solid rgba(255,255,255,0.14);
    }

    .mobile-nav-panel.show { display: block; }

    .mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 2px;
    }

    .mobile-nav-list .nav-link {
        display: flex;
        width: 100%;
        color: rgba(255,255,255,0.9);
        font-size: 0.93rem;
        font-weight: 700;
        text-decoration: none;
        padding: 12px 10px;
        border-radius: 6px;
    }

    .mobile-nav-list .nav-link:hover,
    .mobile-nav-list .nav-link.active {
        color: #FFF;
        background: rgba(255,255,255,0.1);
    }

    .mobile-submenu {
        display: grid;
        gap: 4px;
        padding: 0 0 8px 18px;
    }

    .mobile-submenu-link {
        display: block;
        padding: 9px 14px;
        border-radius: 8px;
        color: rgba(255,255,255,0.72);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-submenu-link:hover,
    .mobile-submenu-link.active {
        color: #FFF;
        background: rgba(255,255,255,0.1);
    }

    .mobile-nav-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        padding-top: 14px;
        margin-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .mobile-action-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.08);
        color: #FFF;
        border-radius: 6px;
        padding: 9px 12px;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
    }

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

    .news-section {
        padding: 64px 0 72px;
    }

    .latest-updates-layout {
        grid-template-columns: 1fr;
    }

    .latest-featured-image {
        min-height: 430px;
    }

    .latest-updates-swiper {
        overflow: hidden;
        padding-right: 0;
    }

    .latest-slider-controls {
        grid-template-columns: 48px minmax(90px, 1fr) 48px;
        gap: 18px;
        max-width: none;
    }

    .latest-view-all {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .energy-transition-section {
        padding: 64px 0;
    }

    .energy-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .energy-section-header h2 {
        margin-bottom: 20px;
    }

    .energy-card-grid,
    .financial-stat-grid {
        grid-template-columns: 1fr;
    }

    .energy-card {
        min-height: 390px;
    }

    .financial-results-section {
        padding: 72px 0 64px;
    }

    .financial-results-content h2 {
        margin-bottom: 30px;
    }

    .financial-stat-grid {
        max-width: 520px;
        margin-bottom: 40px;
    }

    .financial-documents {
        padding: 24px;
    }

    .financial-document-row {
        grid-template-columns: 1fr 28px;
        gap: 12px;
        padding: 14px 0;
    }

    .financial-document-row time {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .financial-document-row i {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .highlights-section {
        padding: 64px 0 72px;
    }

    .highlights-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .highlights-image-panel img {
        aspect-ratio: 16 / 10;
    }

    .inside-energy-section {
        padding: 54px 0 58px;
    }

    .inside-energy-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 38px;
    }

    .inside-energy-track {
        overflow: visible;
        scrollbar-width: none;
    }

    .inside-energy-card {
        flex-basis: min(82vw, 420px);
    }

    .inside-energy-image {
        min-height: 390px;
    }

    .home-network-toggle {
        min-height: 160px;
    }

    .footer-legal-top,
    .footer-legal-bottom {
        flex-direction: column;
    }

    .footer-legal-top {
        gap: 22px;
        padding-bottom: 46px;
    }

    .footer-policy-links-right {
        justify-content: flex-start;
    }

    .section-header h2 { font-size: 1.8rem; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 2rem; }

    .page-image-hero {
        min-height: 560px;
        padding: 130px 0 64px;
    }

    .about-hero {
        min-height: 430px;
    }

    .contact-subscribe-section {
        padding: 0;
    }

    .contact-subscribe-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .contact-left-panel {
        min-height: 260px;
        padding: 32px;
    }

    .contact-subscribe-form {
        grid-column: 1;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 42px 0 68px;
    }

    .contact-alert {
        margin: 0 0 22px;
    }

    .contact-form-panel {
        grid-column: 1;
        padding: 32px 28px;
        background: #FFF;
        border-radius: 24px;
        box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
    }

    .privacy-card {
        position: relative;
        left: auto;
        bottom: auto;
        grid-column: 1;
        width: 100%;
        margin: 0 0 42px;
        border-radius: 28px;
        padding: 34px 30px;
    }

    .know-more-carousel {
        grid-template-columns: 1fr;
    }

    .leader-grid-bottom {
        grid-template-columns: repeat(3, minmax(170px, 1fr));
    }

    .news-index-hero,
    .supplier-index-hero {
        min-height: 620px;
        padding: 0 0 70px;
    }

    .news-listing-frame {
        width: min(720px, calc(100% - 32px));
    }

    .news-filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .news-search-field {
        grid-column: 1 / -1;
    }

    .news-index-grid,
    .supplier-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .supplier-listing-frame {
        width: min(760px, calc(100% - 32px));
    }

    .news-detail-hero {
        min-height: 520px;
        padding: 130px 0 80px;
    }

    .news-detail-section {
        margin-top: -42px;
        padding-bottom: 90px;
    }

    .news-detail-card {
        padding: 32px 26px;
    }

    .news-detail-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .header-inner {
        height: 70px;
        padding: 0 14px;
    }

    .site-logo .logo-symbol {
        width: 27px;
        height: 37px;
        border-width: 3px;
    }

    .site-logo .logo-mark {
        font-size: 0.86rem;
    }

    .hero-content h1 { font-size: 1.8rem; }
    .hero-copy-container { max-width: 100%; }

    .latest-updates-header h2 {
        font-size: 2rem;
    }

    .latest-featured-image {
        min-height: 390px;
    }

    .latest-featured-content {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .latest-featured-label,
    .latest-read-more {
        min-height: 44px;
        padding: 0 18px;
    }

    .latest-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .latest-card-body {
        padding: 0 4px;
    }

    .latest-slider-controls {
        gap: 12px;
    }

    .energy-section-header h2 {
        font-size: 2rem;
    }

    .energy-card {
        min-height: 330px;
    }

    .energy-card-content {
        padding-bottom: 28px;
    }

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

    .financial-documents-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .financial-stat-card {
        min-height: 150px;
    }

    .highlights-header h2,
    .inside-energy-header h2 {
        font-size: 2rem;
    }

    .highlight-item button span {
        font-size: 1.08rem;
    }

    .highlight-item.active p {
        margin-right: 0;
    }

    .inside-energy-track {
        overflow: visible;
        scrollbar-width: none;
    }

    .inside-energy-card {
        flex-basis: min(86vw, 340px);
    }

    .inside-energy-image {
        min-height: 340px;
    }

    .inside-card-meta {
        flex-direction: column;
        gap: 6px;
    }

    .inside-card-meta strong {
        max-width: 100%;
    }

    .footer-policy-links {
        gap: 18px 24px;
    }

    .footer-social {
        gap: 18px;
    }

    .section-header h2 { font-size: 1.5rem; }
    .page-hero h1 { font-size: 1.6rem; }

    .page-image-hero {
        min-height: 500px;
        padding: 112px 0 54px;
    }

    .page-image-hero::after {
        width: 220px;
        height: 220px;
        right: -40px;
        top: 22%;
    }

    .page-image-hero-copy h1 {
        font-size: 2.35rem;
    }

    .contact-form-panel {
        padding: 28px 20px;
    }

    .contact-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .contact-captcha {
        width: 100%;
    }

    .privacy-card {
        grid-template-columns: 1fr;
        padding: 30px 22px;
    }

    .know-more-card {
        min-height: 360px;
        padding: 34px 24px;
    }

    .home-network-toggle {
        min-height: 150px;
    }

    .leader-grid-top,
    .leader-grid-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .leader-photo {
        min-height: 175px;
        padding: 18px;
    }

    .leader-photo span {
        width: 72px;
        height: 72px;
        font-size: 1.45rem;
    }

    .leader-photo img {
        min-height: 175px;
    }

    .leader-info {
        padding: 14px 14px 18px;
    }

    .leader-info h3 {
        font-size: 0.82rem;
    }

    .leader-info p {
        font-size: 0.74rem;
    }

    .news-index-hero,
    .supplier-index-hero {
        min-height: 560px;
        padding: 120px 0 54px;
    }

    .news-index-hero-copy h1,
    .supplier-index-hero-copy h1 {
        font-size: 2.3rem;
    }

    .news-filter-bar,
    .news-index-grid,
    .supplier-filter-bar,
    .supplier-index-grid {
        grid-template-columns: 1fr;
    }

    .news-filter-bar,
    .supplier-filter-bar {
        gap: 12px;
        margin-bottom: 30px;
    }

    .news-index-card a,
    .supplier-index-card a {
        min-height: 245px;
    }

    .news-detail-hero {
        min-height: 470px;
        padding: 112px 0 68px;
    }

    .news-detail-hero-copy h1 {
        font-size: 2.15rem;
    }

    .news-detail-card {
        width: calc(100% - 28px);
        padding: 26px 20px;
    }

    .news-detail-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 26px;
        padding-bottom: 20px;
    }

    .news-detail-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-detail-gallery button {
        display: none;
    }

    .news-detail-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-action-stack {
        width: 54px;
        border-radius: 12px 0 0 12px;
    }

    .floating-action-stack a,
    .floating-action-stack button {
        width: 54px;
        height: 56px;
        font-size: 1.12rem;
    }

    .floating-social-list {
        gap: 13px;
        padding: 14px 0 16px;
    }

    .floating-social-list a {
        width: 26px;
        height: 26px;
        font-size: 1.08rem;
    }
}

/* ── 16. Careers Page Styling ─────────────────────────────────────── */
.careers-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    color: #FFF;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(60px, 9vh, 110px);
}

.careers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,22,40,0.92) 0%,
        rgba(10,22,40,0.55) 45%,
        rgba(10,22,40,0.2) 75%,
        rgba(10,22,40,0.1) 100%
    );
    z-index: 1;
}

.careers-hero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(0, 201, 183, 0.45) 2px, transparent 2.5px);
    background-size: 20px 20px;
    opacity: 0.6;
    mask-image: radial-gradient(circle at 75% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 65%);
    -webkit-mask-image: radial-gradient(circle at 75% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 65%);
}

.careers-hero-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

.careers-hero-badge {
    display: block;
    color: #FFF;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.careers-hero-content h1 {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 20px;
    color: #FFF;
    letter-spacing: -0.5px;
}

.careers-hero-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    line-height: 1.65;
    max-width: 540px;
}

.btn-careers-apply,
.careers-apply-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: #FFF;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--transition);
}

.careers-apply-link .circle-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition);
}

.careers-apply-link:hover {
    color: var(--petronas-accent);
}

.careers-apply-link:hover .circle-icon {
    background: var(--petronas-accent);
    border-color: var(--petronas-accent);
    color: #0A1628;
    transform: translateX(4px);
}

/* Horizontal 4-Step Recruitment Process */
.recruitment-steps-section {
    background: linear-gradient(180deg, #00A19C 0%, #00827F 35%, #253386 75%, #182260 100%);
    padding: 100px 0 120px;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.recruitment-steps-container {
    position: relative;
}

.steps-horizontal-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.step-card-item {
    flex: 1 1 0;
    text-align: center;
    position: relative;
}

.step-img-wrap {
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto 28px;
    background: #004851;
    border-radius: 50%;
}

.step-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FFF;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.step-number-badge {
    position: absolute;
    top: 4px;
    left: 8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFF;
    color: var(--petronas-dark);
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    z-index: 3;
}

.step-card-item p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.step-disclaimer-note {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 90px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .steps-horizontal-row {
        flex-wrap: wrap;
        gap: 48px 24px;
    }
    .step-card-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .step-card-item {
        flex: 0 0 100%;
    }
    .step-img-wrap {
        width: 190px;
        height: 190px;
    }
}

/* Subsidiaries Section */
.subsidiaries-section {
    padding: 20px 0 120px;
    color: #FFF;
    position: relative;
    z-index: 2;
    width: 100%;
}

.subsidiaries-section .row {
    display: flex;
    align-items: center;
}

.subsidiary-img-wrap {
    position: relative;
    width: clamp(280px, 25vw, 380px);
    height: clamp(280px, 25vw, 380px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subsidiary-dot-ring {
    position: absolute;
    inset: -25px;
    border-radius: 50%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 2px, transparent 2.5px);
    background-size: 15px 15px;
    mask-image: radial-gradient(circle, transparent 54%, black 58%);
    -webkit-mask-image: radial-gradient(circle, transparent 54%, black 58%);
    pointer-events: none;
    z-index: 1;
}

.subsidiary-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FFF;
    box-shadow: 0 16px 36px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.subsidiaries-content h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 24px;
}

.subsidiaries-list-bullet {
    padding-left: 20px;
    margin: 0;
    list-style-type: disc;
}

.subsidiaries-list-bullet li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.subsidiaries-list-bullet a {
    color: #FFF;
    font-weight: 500;
    font-size: 1.02rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all var(--transition);
}

.subsidiaries-list-bullet a:hover {
    color: var(--petronas-accent);
}

/* Know More Banner */
.know-more-bar {
    background: var(--petronas-teal);
    padding: 24px 0;
    text-align: center;
    color: #FFF;
    font-weight: 800;
    font-size: 1.5rem;
}

/* Know More Slider Section */
.know-more-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0A1628;
}

.know-more-swiper {
    width: 100%;
    position: relative;
}

.know-more-slide {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.know-more-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.8) 45%, rgba(10,22,40,0.25) 100%);
    z-index: 1;
}

.know-more-slide-dots {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    pointer-events: none;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(0, 201, 183, 0.45) 2.2px, transparent 2.8px);
    background-size: 18px 18px;
    opacity: 0.75;
    mask-image: radial-gradient(circle at 70% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(circle at 70% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.know-more-slide-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    padding: 60px 48px;
    color: #FFF;
}

.know-more-slide-content h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFF;
    margin-bottom: 18px;
}

.know-more-slide-content p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.know-more-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--transition);
}

.know-more-slide-link .circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.know-more-slide-link:hover {
    color: var(--petronas-accent);
}

.know-more-slide-link:hover .circle-icon {
    background: var(--petronas-accent);
    border-color: var(--petronas-accent);
    color: #0A1628;
    transform: translateX(4px);
}

/* Floating Center Slider Navigation Controls matching petronas.com */
.know-more-nav-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: var(--petronas-dark);
}

.know-more-nav-btn {
    border: 0;
    background: transparent;
    color: var(--petronas-dark);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.know-more-nav-btn:hover {
    color: var(--petronas-teal);
    transform: scale(1.2);
}

.know-more-nav-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--petronas-teal);
}
