:root {
    /* PWA Corporate Identity Colors */
    --pwa-blue-navy: #0B2545;
    --pwa-blue-dark: #003876;
    --pwa-blue-primary: #0066B2;
    --pwa-blue-light: #0093D0;
    --pwa-cyan-bright: #00B5E2;
    --pwa-cyan-glow: #00E5FF;

    /* Sustainability & SDG Vibrant Colors */
    --sdg-green-dark: #2E7D32;
    --sdg-green: #4CAF50;
    --sdg-green-light: #81C784;
    --sdg-orange: #FF6F00;
    --sdg-orange-light: #FF9800;
    --sdg-yellow: #FFC107;
    --sdg-purple: #7B1FA2;
    --sdg-purple-light: #BA68C8;
    
    /* Backgrounds & Neutrals */
    --bg-dark-mesh: #06152B;
    --bg-light: #F4F7FB;
    --bg-alt: #EBF1F8;
    --bg-white: #FFFFFF;
    --card-glass: rgba(255, 255, 255, 0.94);
    --card-glass-border: rgba(255, 255, 255, 0.85);
    
    /* Typography Colors */
    --text-primary: #1A2B4C;
    --text-secondary: #4A5D78;
    --text-muted: #7A8E9E;
    --text-white: #FFFFFF;

    /* Fonts */
    --font-thai: 'Noto Sans Thai', sans-serif;

    /* Shadow & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 56, 118, 0.08);
    --shadow-hover: 0 20px 45px rgba(0, 147, 208, 0.18);
    --shadow-glow: 0 0 30px rgba(0, 181, 226, 0.35);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-thai);
}

html {
    scroll-behavior: smooth;
    font-size: 17.5px;
}

body {
    font-family: var(--font-thai);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    word-break: keep-all;
    line-break: strict;
    overflow-x: hidden;
}

button, input, select, textarea {
    font-family: var(--font-thai);
}

/* English Mode Typography Balance (Using Noto Sans Thai universally) */
body.lang-en-active {
    font-family: var(--font-thai);
    word-break: normal;
    overflow-wrap: break-word;
    font-size: 0.94em;
}

body.lang-en-active h1,
body.lang-en-active h2,
body.lang-en-active h3,
body.lang-en-active h4 {
    letter-spacing: -0.015em;
    line-height: 1.3;
}

body.lang-en-active .section-title {
    font-size: 1.85rem;
}

body.lang-en-active p,
body.lang-en-active span,
body.lang-en-active li {
    line-height: 1.45;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

/* RICH WATERCOLOR BACKGROUND BLEND LAYERS */
.watercolor-bg-blend-section {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.watercolor-splash-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 8s ease-in-out infinite alternate;
}
@keyframes blobPulse {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.12) translateY(-20px); }
}

/* Text Gradients & Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--pwa-cyan-bright) 0%, var(--pwa-blue-light) 50%, var(--sdg-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-green-gradient {
    background: linear-gradient(135deg, var(--sdg-green) 0%, #00E676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-orange-gradient {
    background: linear-gradient(135deg, var(--sdg-orange) 0%, #FFAB00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-purple-gradient {
    background: linear-gradient(135deg, var(--sdg-purple) 0%, #E040FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.section-header.text-left {
    text-align: left;
}
.header-tags-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.header-tags-wrapper.text-left-tags {
    justify-content: flex-start;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    line-height: 1.25;
    margin-top: 12px;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
}
.section-header.text-left .section-subtitle {
    margin: 0;
}

.section-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 147, 208, 0.12);
    color: var(--pwa-blue-light);
    border: 1px solid rgba(0, 147, 208, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.green-pill { background: rgba(76, 175, 80, 0.12); color: var(--sdg-green-dark); border-color: rgba(76, 175, 80, 0.25); }
.orange-pill { background: rgba(255, 111, 0, 0.12); color: var(--sdg-orange); border-color: rgba(255, 111, 0, 0.25); }
.purple-pill { background: rgba(123, 31, 162, 0.12); color: var(--sdg-purple); border-color: rgba(123, 31, 162, 0.25); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}
.btn-sm {
    padding: 8px 20px;
    font-size: 0.88rem;
    border-radius: 50px;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1.08rem;
}
.btn-block {
    width: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, var(--pwa-blue-light) 0%, var(--pwa-blue-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(0, 147, 208, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 56, 118, 0.45);
    background: linear-gradient(135deg, var(--pwa-cyan-bright) 0%, var(--pwa-blue-primary) 100%);
}
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-glow:hover::after { opacity: 1; }

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: var(--bg-white);
    color: var(--pwa-blue-dark);
    border-color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-purple-solid {
    background: linear-gradient(135deg, #7B1FA2 0%, #AB47BC 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 16px rgba(123, 31, 162, 0.35);
    font-weight: 700;
}
.btn-purple-solid:hover {
    background: linear-gradient(135deg, #8E24AA 0%, #BA68C8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(123, 31, 162, 0.45);
    color: #FFFFFF;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, var(--pwa-blue-navy) 0%, var(--pwa-blue-dark) 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-contact {
    font-weight: 700;
    color: var(--text-white);
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 56, 118, 0.08);
    transition: all 0.3s ease;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.nav-logo-box {
    display: flex;
    align-items: center;
}
.pwa-nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-badge {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
}
.logo-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pwa-blue-light);
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    padding: 6px 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--pwa-cyan-bright);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--pwa-blue-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--pwa-blue-dark);
    cursor: pointer;
}

/* Glass Panels & Cards */
.glass-panel {
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
}
.glass-panel:hover {
    box-shadow: var(--shadow-hover);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 85vh;
    padding: 90px 0 80px;
    display: flex;
    align-items: center;
    background: var(--bg-dark-mesh);
    color: var(--text-white);
    overflow: hidden;
}
.watercolor-bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: luminosity;
    z-index: 1;
}
.hero-bg-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 181, 226, 0.38) 0%, transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(76, 175, 80, 0.32) 0%, transparent 50%),
        linear-gradient(180deg, rgba(6, 21, 43, 0.65) 0%, rgba(6, 21, 43, 0.95) 100%);
    z-index: 2;
}
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 2;
}
.shape-1 { top: -10%; left: -5%; width: 450px; height: 450px; background: #00B5E2; }
.shape-2 { bottom: -10%; right: -5%; width: 500px; height: 500px; background: #4CAF50; }
.shape-3 { top: 40%; right: 25%; width: 300px; height: 300px; background: #003876; }

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-main-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 50px;
    color: var(--pwa-cyan-glow);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cover-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}
.cover-frame-3d {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 181, 226, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.25);
    transform: rotateY(-12deg) rotateX(6deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    animation: floatCover 5s ease-in-out infinite alternate;
}
.cover-frame-3d:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.04);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 229, 255, 0.5);
}
@keyframes floatCover {
    0% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); }
    100% { transform: rotateY(-8deg) rotateX(4deg) translateY(-16px); }
}

.report-cover-img {
    width: 320px;
    height: auto;
    display: block;
    border-radius: 16px;
}
.cover-floating-tag {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    background: rgba(11, 37, 69, 0.9);
    backdrop-filter: blur(10px);
    color: var(--pwa-cyan-glow);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
}
.stat-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.icon-cyan { background: rgba(0, 181, 226, 0.15); color: var(--pwa-cyan-bright); }
.icon-blue { background: rgba(0, 102, 178, 0.15); color: var(--pwa-blue-light); }
.icon-orange { background: rgba(255, 111, 0, 0.15); color: var(--sdg-orange); }
.icon-green { background: rgba(76, 175, 80, 0.15); color: var(--sdg-green); }

.stat-info {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
}
.stat-info .unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pwa-blue-primary);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 4px;
}

/* 2. GOVERNOR SECTION */
.governor-section {
    background-color: var(--bg-white);
}
.governor-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #FFFFFF 0%, #F0F6FF 100%);
    border: 1px solid rgba(0, 147, 208, 0.15);
}
.governor-grid {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 50px;
    align-items: center;
}
.governor-image-wrapper {
    position: relative;
}
.governor-image-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--bg-white);
    background: #FFFFFF;
    max-height: 480px;
}

.governor-img-fixed {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}
.governor-image-frame:hover .governor-img-fixed {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(11, 37, 69, 0.88);
    backdrop-filter: blur(10px);
    color: var(--pwa-cyan-glow);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.35);
}

.governor-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-top: 12px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.highlight-text {
    color: var(--pwa-blue-primary);
}
.governor-quote-box {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 16px;
    border-left: 5px solid var(--pwa-cyan-bright);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}
.quote-text {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.governor-signature-block {
    margin-bottom: 28px;
}
.signature-details .name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
}
.signature-details .position {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pwa-blue-light);
}
.signature-details .sub-position {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.first-pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.pillar-item {
    padding: 20px 10px 16px 10px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.pillar-f {
    background: linear-gradient(145deg, #FFFFFF 0%, #E3F2FD 100%);
    border: 2px solid rgba(25, 118, 210, 0.35);
}
.pillar-i {
    background: linear-gradient(145deg, #FFFFFF 0%, #E0F7FA 100%);
    border: 2px solid rgba(0, 181, 226, 0.35);
}
.pillar-r {
    background: linear-gradient(145deg, #FFFFFF 0%, #E8F5E9 100%);
    border: 2px solid rgba(56, 142, 60, 0.35);
}
.pillar-s {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF3E0 100%);
    border: 2px solid rgba(245, 124, 0, 0.35);
}
.pillar-t {
    background: linear-gradient(145deg, #FFFFFF 0%, #F3E5F5 100%);
    border: 2px solid rgba(123, 31, 162, 0.35);
}

.pillar-letter {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.text-f { color: #1565C0; }
.text-i { color: #00838F; }
.text-r { color: #2E7D32; }
.text-s { color: #E65100; }
.text-t { color: #6A1B9A; }

.pillar-term {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    line-height: 1.25;
    margin-bottom: 4px;
}
.pillar-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* 3. TAB SWITCHER & KPI SECTION */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.tab-btn {
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid rgba(0, 102, 178, 0.2);
    background: var(--bg-white);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(135deg, var(--pwa-blue-primary), var(--pwa-blue-dark));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 56, 118, 0.25);
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.kpi-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.kpi-panel-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 147, 208, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.kpi-panel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.highlight-card {
    border: 2px solid var(--pwa-cyan-bright);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.card-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}
.icon-water { background: rgba(0, 181, 226, 0.12); color: var(--pwa-cyan-bright); }
.icon-purple { background: rgba(123, 31, 162, 0.12); color: var(--sdg-purple); }

.card-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}
.status-success { background: rgba(76, 175, 80, 0.15); color: var(--sdg-green-dark); }
.status-warning { background: rgba(255, 152, 0, 0.15); color: #E65100; }

.kpi-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 16px;
}
.kpi-main-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--pwa-blue-navy);
    line-height: 1;
    margin-bottom: 20px;
}
.kpi-main-number .unit {
    font-size: 1.5rem;
    color: var(--pwa-blue-light);
    margin-left: 6px;
}

.progress-bar-container {
    margin-top: 15px;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.progress-track {
    height: 12px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}
.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease-out;
}
.bg-water { background: linear-gradient(90deg, var(--pwa-cyan-bright), var(--pwa-blue-light)); }
.bg-green { background: linear-gradient(90deg, var(--sdg-green), #00E676); }
.bg-purple { background: linear-gradient(90deg, var(--sdg-purple), #E040FB); }
.bg-orange { background: linear-gradient(90deg, var(--sdg-orange), #FFAB00); }

.kpi-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.financial-card {
    text-align: center;
    padding: 30px 20px;
}
.fin-icon {
    font-size: 36px;
    color: var(--pwa-blue-light);
    margin-bottom: 14px;
}
.financial-card h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.fin-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pwa-blue-dark);
    margin-bottom: 12px;
}
.fin-unit {
    font-size: 0.9rem;
    color: var(--pwa-blue-primary);
}
.financial-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.regions-grid-wrapper {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
    align-items: center;
}
.regions-table-wrapper {
    padding: 24px;
    overflow-x: auto;
}
.regions-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.regions-table th, .regions-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 56, 118, 0.08);
}
.regions-table th {
    background: rgba(0, 102, 178, 0.06);
    color: var(--pwa-blue-dark);
    font-weight: 800;
    font-size: 1rem;
}
.regions-table tfoot th {
    background: rgba(0, 181, 226, 0.12);
    color: var(--pwa-blue-navy);
    font-size: 1.05rem;
}

.map-asset-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.map-img-asset {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: block;
}

/* 4. STAKEHOLDER ENGAGEMENT & MATERIALITY SECTION WITH SOFT WATERCOLOR GRADIENT BLEND */
.materiality-section {
    background: linear-gradient(180deg, #F4F7FB 0%, #EBF1F8 100%);
    position: relative;
}

.materiality-grid-updated {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 40px;
}
.materiality-card h3, .stakeholder-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
}
.mat-desc-text, .sh-desc-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.mat-topics-list-full {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mat-topic-row {
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 5px solid var(--pwa-blue-light);
}
.env-border { border-left-color: var(--sdg-green); }
.social-border { border-left-color: var(--sdg-orange); }
.gov-border { border-left-color: var(--sdg-purple); }

.mat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.badge-e { background: rgba(76, 175, 80, 0.12); color: var(--sdg-green-dark); }
.badge-s { background: rgba(255, 111, 0, 0.12); color: var(--sdg-orange); }
.badge-g { background: rgba(123, 31, 162, 0.12); color: var(--sdg-purple); }

.mat-topic-info strong {
    font-size: 1.02rem;
    color: var(--pwa-blue-dark);
    display: block;
    margin-bottom: 4px;
}
.mat-topic-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* HIGH-IMPACT ENGAGEMENT LIST STYLING */
.impact-engagement-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.engagement-item {
    display: flex;
    gap: 16px;
    background: var(--bg-white);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 147, 208, 0.12);
    transition: transform 0.3s ease;
}
.engagement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 147, 208, 0.15);
}
.eng-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.eng-details h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 4px;
}
.eng-details p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* 5. ENVIRONMENT SECTION */
.env-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 40px;
}
.card-title-icon {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.step-item {
    display: flex;
    gap: 16px;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--sdg-green);
}
.step-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--sdg-green);
    background: rgba(76, 175, 80, 0.12);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
}
.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.impact-stat-box {
    background: linear-gradient(135deg, var(--sdg-green-dark), var(--sdg-green));
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}
.impact-num {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}
.impact-unit {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 8px;
}
.impact-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.green-list-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}
.green-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.gfx-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(76, 175, 80, 0.12);
    color: var(--sdg-green);
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.green-feature-item h4 {
    font-size: 1.05rem;
    color: var(--pwa-blue-dark);
}
.green-feature-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.rich-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.gallery-card:hover {
    transform: translateY(-5px);
}
.gallery-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}
.gallery-card span {
    display: block;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pwa-blue-dark);
    text-align: center;
}

/* 6. SOCIAL SECTION */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.social-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.soc-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    font-size: 32px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.social-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 12px;
}
.social-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.check-list {
    list-style: none;
    margin-bottom: 20px;
}
.check-list li {
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.check-list i {
    color: var(--sdg-orange);
    font-size: 18px;
    margin-top: 2px;
}

.card-asset-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* 7. GOVERNANCE SECTION */
.gov-dashboard-grid {
    display: grid;
    grid-template-columns: 6.5fr 5.5fr;
    gap: 40px;
}
.gov-info-panel h3, .gov-qr-panel h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.gov-lead-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.grc-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.grc-box {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--sdg-purple);
}
.grc-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(123, 31, 162, 0.1);
    color: var(--sdg-purple);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    margin-bottom: 8px;
}
.grc-box h4 {
    font-size: 1.1rem;
    color: var(--pwa-blue-dark);
    margin-bottom: 6px;
}
.grc-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.qr-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.qr-policy-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.qr-policy-card:hover {
    transform: translateY(-5px);
}
.qr-policy-card img {
    width: 130px; height: 130px;
    object-fit: contain;
    margin-bottom: 12px;
}
.qr-policy-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pwa-blue-dark);
    line-height: 1.3;
    display: block;
}

.download-cta-box {
    background: linear-gradient(135deg, var(--pwa-blue-navy), var(--pwa-blue-dark));
    color: white;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.4);
}
.download-cta-box h4 {
    font-size: 1.25rem;
    color: var(--pwa-cyan-glow);
    margin-bottom: 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.download-cta-box p {
    font-size: 0.9rem;
    opacity: 0.88;
    margin-bottom: 20px;
}

/* FOOTER LOGO CONTAINER & GRID */
.footer {
    background: var(--pwa-blue-navy);
    color: var(--text-white);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 4.2fr 2.5fr 5.3fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pwa-cyan-bright);
    margin-bottom: 12px;
}
.footer-address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-col h4 {
    font-size: 1.15rem;
    color: var(--pwa-cyan-glow);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-col ul a:hover {
    color: var(--pwa-cyan-bright);
}
.contact-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    white-space: nowrap;
}
.contact-links i {
    color: var(--pwa-cyan-bright);
    font-size: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}
.gri-compliance {
    color: var(--sdg-green-light);
    font-weight: 700;
}

/* BACK TO TOP FLOATING BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pwa-cyan-bright), var(--pwa-blue-primary));
    color: #FFFFFF;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 181, 226, 0.4);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 229, 255, 0.6);
    background: linear-gradient(135deg, var(--pwa-cyan-glow), var(--pwa-blue-light));
}

/* GRI CONTENT INDEX MODAL STYLING */
.gri-modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(6, 21, 43, 0.75);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.gri-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.gri-modal-content {
    max-width: 900px;
    width: 100%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: modalPop 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalPop {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.gri-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--bg-alt);
    padding-bottom: 14px;
}
.gri-modal-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    display: flex; align-items: center; gap: 10px;
}
.gri-modal-close {
    background: var(--bg-alt);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
}
.gri-modal-close:hover {
    background: #FFE0E0;
    color: #D32F2F;
}

.gri-modal-body {
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 20px;
}
.gri-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.gri-index-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.gri-index-table th, .gri-index-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 56, 118, 0.08);
}
.gri-index-table th {
    background: rgba(0, 102, 178, 0.08);
    color: var(--pwa-blue-dark);
    font-weight: 800;
    text-align: left;
}
.gri-cat-hdr td {
    background: rgba(123, 31, 162, 0.08);
    color: var(--sdg-purple);
    font-weight: 800;
    font-size: 0.95rem;
}

.gri-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--bg-alt);
    padding-top: 16px;
}

/* ANIMATION REVEALS */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* NEW FEATURES & ELEVATION DESIGN CSS */

/* 1. Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #0093D0 0%, #00B5E2 50%, #00E5FF 100%);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 12px rgba(0, 181, 226, 0.7);
}

/* 2. Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 14px;
    font-size: 0.85rem;
    font-weight: 700;
}
.lang-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.lang-btn.active, .lang-btn:hover {
    color: #00E5FF;
    background: rgba(0, 56, 118, 0.4);
}
.lang-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* 3. Executive 1-Minute Highlights Section */
.exec-section {
    padding: 40px 0 60px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #F0F6FF 100%);
}
.exec-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #E6F3FF 100%);
    border: 2px solid rgba(0, 147, 208, 0.2);
    padding: 36px;
    box-shadow: 0 10px 35px rgba(0, 56, 118, 0.08);
}
.exec-header {
    text-align: center;
    margin-bottom: 30px;
}
.exec-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    margin-top: 10px;
}
.exec-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.exec-item {
    background: var(--bg-white);
    padding: 20px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 147, 208, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.exec-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 147, 208, 0.18);
}
.exec-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.exec-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pwa-blue-dark);
    line-height: 1.3;
}
.exec-lbl {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* 4. GRI Real-Time Search Box */
.gri-search-box {
    position: relative;
    margin-bottom: 20px;
}
.gri-search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pwa-blue-light);
    font-size: 20px;
}
.gri-search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border-radius: 12px;
    border: 2px solid rgba(0, 147, 208, 0.25);
    font-family: var(--font-thai);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-white);
    outline: none;
    transition: border-color 0.3s ease;
}
.gri-search-box input:focus {
    border-color: var(--pwa-cyan-bright);
    box-shadow: 0 0 12px rgba(0, 181, 226, 0.25);
}

/* 5. Parallax 3D Card Elevation */
.gallery-card, .social-card, .gov-info-panel, .kpi-panel-card, .governor-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.gallery-card:hover, .social-card:hover {
    transform: perspective(1000px) rotateX(1deg) rotateY(1deg) translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 56, 118, 0.16);
}

/* 6. Accessibility Focus Rings */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--pwa-cyan-bright) !important;
    outline-offset: 3px !important;
    border-radius: 4px;
}

/* 7. Print & PDF Export Styling (@media print) */
@media print {
    #readingProgress, .top-bar, .navbar, .back-to-top, .download-cta-box, #openGriModal, .hero-buttons, .lang-switcher {
        display: none !important;
    }
    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 12pt !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .section {
        padding: 15px 0 !important;
        page-break-inside: avoid;
    }
    .glass-panel, .kpi-panel-card, .financial-card, .social-card, .env-card {
        box-shadow: none !important;
        border: 1px solid #cccccc !important;
        background: #ffffff !important;
    }
    .watercolor-bg-blend-section, .watercolor-splash-blob {
        display: none !important;
    }
}

/* RESPONSIVE DESIGN - TABLET & SMARTPHONE POLISH */
@media (max-width: 1024px) {
    .hero-main-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.8rem; line-height: 1.25; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .governor-grid, .env-grid, .gov-dashboard-grid, .materiality-grid-updated, .regions-grid-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .kpi-grid-large, .financial-grid, .social-cards-grid, .exec-highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .first-pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .contact-links li { white-space: normal; }
    .regions-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .regions-table { min-width: 580px; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: 0.85rem; }
    .top-bar-brand { font-size: 0.9rem; font-weight: 700; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 2.1rem; }
    .hero-badge-pill { font-size: 0.82rem; padding: 6px 14px; }
    .hero-stats-grid, .exec-highlights-grid { grid-template-columns: 1fr; }
    .first-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
    .tab-buttons { flex-direction: column; gap: 10px; width: 100%; }
    .tab-btn { width: 100%; justify-content: center; text-align: center; }
    .gri-modal-backdrop { padding: 12px; }
    .gri-modal-content { width: 96%; max-height: 90vh; padding: 18px 14px; }
    .gri-modal-header h3 { font-size: 1.15rem; }
    .gri-modal-body { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .gri-index-table { min-width: 560px; font-size: 0.88rem; }
    .gri-modal-footer { flex-direction: column; gap: 10px; text-align: center; }
    .gri-modal-footer .btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 40px 0; }
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.6rem; }
    .kpi-grid-large, .financial-grid, .social-cards-grid, .first-pillars-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
    .kpi-main-number { font-size: 2.2rem; }
    .exec-item { padding: 16px; }
    .exec-val { font-size: 1.25rem; }
    .governor-card { padding: 24px 18px; }
    .governor-heading { font-size: 1.25rem; }
}

