/* =========================
FILE: style.css (LENGKAP DENGAN PERBAIKAN WARNA JUDUL)
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =========================
HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.37);
    backdrop-filter: blur(12px);
    transition: .3s;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2F5597;
    font-weight: 700;
}

.logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #2F5597;
    font-weight: 500;
    transition: .3s;
}

.menu a:hover {
    color: #2F5597;
}

/* LANGUAGE */
.lang-box {
    position: relative;
}

.lang-btn {
    padding: 10px 18px;
    border-radius: 50px;
    background: transparent;
    border: 1.5px solid #2F5597;
    color: #2F5597;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.lang-btn:hover {
    background: #000000;
    color: #ffffff;
}

.lang-menu {
    position: absolute;
    top: 52px;
    right: 0;
    background: #fff;
    width: 180px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    overflow: hidden;
    display: none;
    border: 1px solid #eee;
}

.lang-menu.show {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 12px 16px;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #f3f3f3;
}

.lang-menu a:hover {
    background: #f8f9fa;
    color: #2F5597;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
HERO SECTION
========================= */
.hero {
    height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.hero h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #2F5597;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #111;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =========================
BUTTONS
========================= */
.btn,
.btn-outline {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.btn {
    background: #FF0000;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, .15);
}

.btn-outline {
    border: 1px solid #2F5597;
    color: #2F5597;
}

.btn-outline:hover {
    background: #2F5597;
    color: #fff;
}

/* =========================
SECTIONS
========================= */
.section {
    padding: 100px 0;
}

.dark {
    background: #f8f9fa;
}

/* Warna Judul Utama = #2F5597 */
h1, h2, h3, h4 {
    color: #2F5597;
}

/* Judul di section dark (background abu-abu) tetap #2F5597 */
.dark h2, 
.dark h3, 
.dark h4 {
    color: #2F5597;
}

/* Judul di footer (background gelap) - PAKAI PUTIH */
.footer h4 {
    color: #ffffff;
}

/* Judul di sq-cta */
.sq-cta-content h4 {
    color: #2F5597;
}

/* Judul di stats section (background biru gelap) - PAKAI PUTIH */
.stat-number {
    color: #ffffff;
}

/* Management card - nama di overlay PAKAI PUTIH */
.leader-info h3 {
    color: #ffffff;
}

/* Principal card judul */
.principal-card h3 {
    color: #2F5597;
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

/* =========================
GRIDS
========================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* =========================
TEAM / MANAGEMENT
========================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.leader-card {
    position: relative;
    height: 460px;
    border-radius: 22px;
    overflow: hidden;
    background: #eef1f4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.leader-card:hover {
    transform: translateY(-8px);
}

.leader-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.leader-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .08));
    color: #fff;
}

.leader-info h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 700;
}

.leader-info p {
    font-size: 15px;
    opacity: .95;
    font-weight: 500;
}

/* =========================
IMAGE BOX & TIMELINE
========================= */
.img-box {
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(45deg, #e8eef9, #ffffff);
    border: 1px solid #eaeaea;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.time-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
}

.time-box h4 {
    font-size: 28px;
    color: #FF0000;
    margin-bottom: 8px;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #eaeaea;
    margin: auto;
    margin-bottom: 15px;
}

/* =========================
CLIENT SLIDER
========================= */
.slider {
    overflow: hidden;
    margin-top: 40px;
}

.slide-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

.logo-client {
    width: 220px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #eaeaea;
    margin-right: 20px;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .03);
}

.logo-client img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .85;
    transition: .3s;
}

.logo-client:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* =========================
VALUES SECTION
========================= */
.value-head {
    max-width: 900px;
    margin-bottom: 45px;
}

.value-head h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #2F5597;
}

.value-head p {
    font-size: 20px;
    line-height: 1.8;
    color: #111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.value-card {
    position: relative;
    background: #ffffff;
    padding: 55px 30px 35px;
    border-radius: 24px;
    border: 1px solid #eaeaea;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
    transition: .35s;
    overflow: hidden;
    min-height: 280px;
}

.value-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #2F5597;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.value-card h3 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2F5597;
}

.value-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.value-badge {
    position: absolute;
    top: -18px;
    left: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.value-badge.blue {
    background: #0077cc;
}

.value-badge.green {
    background: #96b400;
}

/* =========================
COMPANY IMAGE SLIDER
========================= */
.slider-box {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #eaeaea;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    background: #fff;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide-img.active {
    opacity: 1;
}

/* =========================
OUR PRINCIPAL SECTION
========================= */
.principal-head {
    max-width: 850px;
    margin: auto;
    margin-bottom: 45px;
}

.principal-head h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2F5597;
}

.principal-head p {
    font-size: 18px;
    line-height: 1.8;
    color: #111;
}

.principal-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.principal-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: principalMove 38s linear infinite;
}

.principal-slider:hover .principal-track {
    animation-play-state: paused;
}

.principal-card {
    width: 340px;
    min-height: 240px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .04);
    flex-shrink: 0;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.principal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #FF0000;
}

.principal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, .08);
}

.principal-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.principal-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
}

@keyframes principalMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================
FOOTER BARU - LENGKAP
========================= */
.footer {
    background: #2F5597;
    color: #e0e4e8;
    padding: 60px 0 25px;
    border-top: none;
    border-radius: 50px 50px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FF0000;
    border-radius: 2px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-col .address {
    margin-bottom: 15px;
}

.footer-col .address strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.footer-col .address span {
    display: block;
    font-size: 13px;
    color: #cbd5e1;
}

.divider-address {
    margin: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-footer {
    margin-bottom: 12px;
}

.contact-item-footer strong {
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    min-width: 65px;
    font-size: 14px;
}

.contact-item-footer span,
.contact-item-footer a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-footer a:hover {
    color: #FF0000;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #FF0000;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #cbd5e1;
}

/* =========================
WHATSAPP FLOATING BUTTON
========================= */
.wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    color: #fff;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wa:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* =========================
REVEAL ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
SAFETY & QUALITY SECTION - PROFESSIONAL
========================= */
.safety-quality {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.safety-quality::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(47, 85, 151, 0.03), transparent 70%);
    pointer-events: none;
}

/* Section Header */
.sq-header {
    margin-bottom: 50px;
}

.sq-header h2 {
    font-size: 42px;
    color: #2F5597;
    margin-bottom: 16px;
}

.sq-subtitle {
    font-size: 18px;
    color: #5a6874;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Cards */
.sq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.sq-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    border: 1px solid #eef2f6;
    position: relative;
    z-index: 1;
}

.sq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.2);
}

.sq-card:hover .sq-icon {
    background: #FF0000;
}

/* Card Icon */
.sq-icon {
    width: 60px;
    height: 60px;
    background: rgba(47, 85, 151, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.sq-icon svg {
    width: 32px;
    height: 32px;
    stroke: #2F5597;
    transition: all 0.3s ease;
}

.sq-card:hover .sq-icon svg {
    stroke: #ffffff;
}

.sq-card h3 {
    font-size: 22px;
    color: #2F5597;
    margin-bottom: 14px;
    font-weight: 600;
}

.sq-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6874;
    margin-bottom: 18px;
}

.sq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sq-list li {
    font-size: 13px;
    color: #4a5a6a;
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.sq-list li::before {
    content: '▹';
    color: #FF0000;
    margin-right: 10px;
    font-size: 12px;
}

/* Stats Section */
.sq-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #3561ac  0%, #2F5597  100%);
    border-radius: 28px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 14px;
    color: #a0b3c9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Bottom CTA */
.sq-cta {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.sq-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    background: linear-gradient(105deg, #ffffff 0%, #fafcfd 100%);
}

.sq-cta-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.sq-cta-content p {
    font-size: 15px;
    color: #5a6874;
}

.sq-btn {
    background: #2F5597;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sq-btn:hover {
    background: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

/* =========================
SERVICE PAGE SPECIFIC STYLES
========================= */

/* Hero Video untuk Service Page (tinggi berbeda) */
.service-hero-video {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
}

.service-hero-video .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-hero-video .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 2;
}

.service-hero-video .hero-content {
    position: relative;
    z-index: 3;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(47, 85, 151, 0.1);
    color: #2F5597;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;
    color: #2F5597;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #5a6874;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dark Background */
.dark-bg {
    background: #f8fafc;
}

/* Service Grid 3 */
.service-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(47, 85, 151, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #2F5597;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #5a6874;
    line-height: 1.7;
}

/* Service Grid 2 */
.service-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-card-horizontal:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(47, 85, 151, 0.2);
}

.service-icon-small {
    font-size: 32px;
    min-width: 50px;
}

.service-card-horizontal h3 {
    font-size: 18px;
    color: #2F5597;
    margin-bottom: 6px;
}

.service-card-horizontal p {
    font-size: 13px;
    color: #5a6874;
    line-height: 1.6;
}

/* Machine Facilities Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: #f0f4f9;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img {
    transform: scale(1.05);
}

.facility-info {
    padding: 20px;
}

.facility-info h3 {
    font-size: 18px;
    color: #2F5597;
    margin-bottom: 8px;
}

.facility-info p {
    font-size: 13px;
    color: #5a6874;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: #f0f4f9;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    color: #2F5597;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 13px;
    color: #5a6874;
    margin-bottom: 10px;
}

.product-tag {
    display: inline-block;
    background: rgba(47, 85, 151, 0.1);
    color: #2F5597;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* CTA Wrapper */
.cta-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 28px;
    padding: 50px;
    text-align: center;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.cta-content h3 {
    font-size: 32px;
    color: #2F5597;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: #5a6874;
    margin-bottom: 25px;
}

.cta-btn {
    background: #2F5597;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Responsive Service Page */
@media (max-width: 1024px) {
    .service-grid-3,
    .service-grid-2,
    .facility-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero-video {
        height: 60vh;
        border-bottom-left-radius: 15%;
        border-bottom-right-radius: 15%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .service-grid-3,
    .service-grid-2,
    .facility-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-horizontal {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cta-wrapper {
        padding: 35px 25px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}

/* =========================
OTHERS PAGE SPECIFIC STYLES
========================= */

/* Hero Video untuk Others Page */
.others-hero-video {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
}

.others-hero-video .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.others-hero-video .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 2;
}

.others-hero-video .hero-content {
    position: relative;
    z-index: 3;
}

/* Values Grid for Others Page */
.values-grid-others {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.value-card-others {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.value-card-others:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(47, 85, 151, 0.2);
}

.value-icon-others {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card-others h3 {
    font-size: 24px;
    color: #2F5597;
    margin-bottom: 15px;
}

.value-card-others p {
    font-size: 14px;
    color: #5a6874;
    line-height: 1.7;
    margin-bottom: 18px;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    font-size: 13px;
    color: #4a5a6a;
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.value-list li::before {
    content: '✓';
    color: #2F5597;
    margin-right: 10px;
    font-weight: bold;
}

/* Career Wrapper */
.career-wrapper {
    background: #ffffff;
    border-radius: 28px;
    padding: 50px;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.career-header {
    text-align: center;
    margin-bottom: 40px;
}

.career-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.career-header h2 {
    font-size: 36px;
    color: #2F5597;
    margin-bottom: 15px;
}

.career-header p {
    font-size: 16px;
    color: #5a6874;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.career-btn {
    background: #2F5597;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.career-btn:hover {
    background: #FF0000;
    transform: translateY(-2px);
}

/* Job Grid */
.job-grid-others {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.job-card-others {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid #eef2f6;
}

.job-card-others:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.job-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.job-card-others h4 {
    font-size: 20px;
    color: #2F5597;
    margin-bottom: 10px;
}

.job-card-others p {
    font-size: 13px;
    color: #5a6874;
    margin-bottom: 12px;
    line-height: 1.6;
}

.job-badge {
    display: inline-block;
    background: rgba(47, 85, 151, 0.1);
    color: #2F5597;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Benefits Section */
.benefits-wrapper {
    margin-top: 20px;
}

.benefits-wrapper h2 {
    font-size: 36px;
    color: #2F5597;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 18px;
    color: #2F5597;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 13px;
    color: #5a6874;
    line-height: 1.6;
}

/* Responsive Others Page */
@media (max-width: 1024px) {
    .values-grid-others {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .job-grid-others {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .others-hero-video {
        height: 60vh;
        border-bottom-left-radius: 15%;
        border-bottom-right-radius: 15%;
    }
    
    .values-grid-others {
        grid-template-columns: 1fr;
    }
    
    .job-grid-others {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .career-wrapper {
        padding: 30px 20px;
    }
    
    .career-header h2 {
        font-size: 28px;
    }
    
    .benefits-wrapper h2 {
        font-size: 28px;
    }
    
    .value-card-others h3 {
        font-size: 20px;
    }
}

/* Untuk 3 kolom footer - atur grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Ubah dari 4 menjadi 3 */
    gap: 40px;
    margin-bottom: 40px;
}

/* Responsive untuk tablet */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
        gap: 35px;
    }
}

/* Responsive untuk mobile */
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 kolom di mobile */
        gap: 30px;
    }
}

/*RESPONSIVE STYLES */
@media (max-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .sq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sq-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sq-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .sq-btn {
        white-space: normal;
    }
}

@media (max-width: 991px) {
    .grid-2, .grid-3, .grid-4, .timeline {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero {
        border-bottom-left-radius: 15%;
        border-bottom-right-radius: 15%;
    }
    
    .menu {
        position: absolute;
        top: 85px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        transition: .4s;
        box-shadow: 0 15px 25px rgba(0, 0, 0, .05);
    }
    
    .menu.show {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .principal-head h2 {
        font-size: 34px;
    }
    
    .principal-card {
        width: 280px;
        min-height: 230px;
        padding: 24px;
    }
    
    .principal-card h3 {
        font-size: 22px;
    }
    
    .value-head h2 {
        font-size: 18px;
    }
    
    .value-head p {
        font-size: 12px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card h3 {
        font-size: 16px;
    }
    
    .value-card {
        min-height: auto;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .sq-header h2 {
        font-size: 32px;
    }
    
    .sq-subtitle {
        font-size: 15px;
    }
    
    .sq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sq-stats {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .sq-cta-content {
        padding: 28px 24px;
    }
    
    .sq-cta-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h4::after {
        width: 50px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-card {
        height: 420px;
    }
    
    .timeline {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .sq-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}