/* =====================================================
    ENHANCED CSS — PREMIUM CORPORATE MODERN UI
    Tema: Orange #ff7a00 | Clean | Professional
    Hanya enhancement — struktur & layout tidak diubah
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =====================================================
    CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ===================================================== */
:root {
    --primary:        #ff7a00;
    --primary-light:  #ff9533;
    --primary-glow:   rgba(255, 122, 0, 0.18);
    --primary-soft:   rgba(255, 122, 0, 0.08);
    --white:          #ffffff;
    --bg:             #fcfcfc;
    --text-dark:      #1a1a2e;
    --text-mid:       #444455;
    --text-light:     #888899;
    --border:         rgba(0, 0, 0, 0.07);
    --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 30px rgba(0,0,0,0.09);
    --shadow-lg:      0 20px 50px rgba(0,0,0,0.12);
    --shadow-orange:  0 10px 30px rgba(255, 122, 0, 0.22);
    --radius-sm:      10px;
    --radius-md:      18px;
    --radius-lg:      25px;
    --ease:           cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
    1. RESET & GLOBAL SETTINGS
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =====================================================
    SCROLL REVEAL ANIMATION
   ===================================================== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
    2. NAVBAR & LOGO (FIXED)
   ===================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.04);
    transition: background 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px; /* BESARKAN DI SINI */
    width: auto;
    transition: transform 0.3s var(--ease), filter 0.3s ease;
}


.logo img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 10px var(--primary-glow));
}


.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    transition: color 0.25s ease;
}

.hamburger:hover {
    color: var(--primary);
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s ease;
}

.menu a:not(.login)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease-smooth);
}

.menu a:not(.login):hover::after { width: 100%; }
.menu a:hover { color: var(--primary); }

.menu a.login {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(255,122,0,0.30);
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.menu a.login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.menu a.login:active {
    transform: translateY(0);
}

/* =====================================================
   3. HERO SECTION & BUTTONS
===================================================== */
.hero {
    padding: 40px 0 60px 0;
    background: #ffffff;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image-box {
    background-image: url("../images/bg-company.jpg");
    background-size: cover;
    background-position: center;
    width: 70%;
    height: 500px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.5) inset;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
}

.hero-image-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.22), var(--shadow-orange);
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.60) 0%,
        rgba(0,0,0,0.38) 60%,
        rgba(255,122,0,0.18) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
    animation: fadeSlideUp 0.8s var(--ease-smooth) both;
}

.hero-overlay h1 span {
    color: var(--primary-light);
}

.hero-overlay p {
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 25px;
    opacity: 0.92;
    line-height: 1.65;
    animation: fadeSlideUp 0.8s 0.15s var(--ease-smooth) both;
}

.hero-btn {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeSlideUp 0.8s 0.3s var(--ease-smooth) both;
}

.hero-btn .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    box-shadow: 0 6px 20px rgba(255,122,0,0.40);
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
    letter-spacing: 0.02em;
}

.hero-btn .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255,122,0,0.50);
}

.hero-btn .btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.hero-btn .btn-secondary {
    background-color: rgba(255,255,255,0.10) !important;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.70) !important;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.hero-btn .btn-secondary:hover {
    background-color: rgba(255,255,255,0.20) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
}

/* =====================================================
    4. FEATURES (KARTU MELAYANG)
   ===================================================== */
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0 8%;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.feature-card {
    flex: 1;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
    border-radius: 3px 3px 0 0;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,122,0,0.10);
    border-color: rgba(255,122,0,0.15);
}

.feature-icon-box {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px; margin: 0 auto 20px auto;
    box-shadow: 0 8px 20px rgba(255,122,0,0.28);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.10) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(255,122,0,0.38);
}

.feature-icon-box i { color: #ffffff !important; font-size: 26px; }

/* =====================================================
    5. OUR STORY SECTION
   ===================================================== */
.our-story-section { padding: 100px 5% 80px 5%; background: #ffffff; }

.story-header { text-align: center; margin-bottom: 50px; }

.story-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.story-header p {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0 auto;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 15.5px;
}

.story-content { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }

.story-image {
    flex: 1;
    max-width: 650px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.4s ease, transform 0.4s var(--ease-smooth);
}

.story-image:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.01);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.story-image:hover img { transform: scale(1.04); }

.story-text { flex: 1.2; padding-left: 40px; padding-right: 60px; }

.story-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.story-text h3::after {
    content: '';
    display: block;
    width: 500px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(255,122,0,0.2));
    margin-top: 10px;
    border-radius: 2px;
}

.story-text p {
    margin-bottom: 15px;
    line-height: 1.85;
    color: var(--text-mid);
    text-align: justify;
    font-size: 15px;
}

.story-cards { display: flex; gap: 25px; }

.vmv-card {
    flex: 1;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.vmv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-soft), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.20);
}

.vmv-card:hover::after { opacity: 1; }

.vmv-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 16px rgba(255,122,0,0.28);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.vmv-card:hover .vmv-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 22px rgba(255,122,0,0.38);
}

.vmv-icon i { color: #ffffff !important; }

/* =====================================================
    6. SERVICES SECTION (4 COLUMNS)
   ===================================================== */
.services-section { padding: 80px 5%; background-color: var(--bg); text-align: center; }

.services-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.services-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(255,122,0,0.3));
    margin: 15px auto 0;
    border-radius: 3px;
}

.services-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: left;
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,122,0,0.10);
    border-color: rgba(255,122,0,0.18);
}

.service-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(255,122,0,0.25);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.10) rotate(-4deg);
    box-shadow: 0 10px 22px rgba(255,122,0,0.35);
}

.service-icon i { color: #ffffff !important; font-size: 22px; }

.service-features { list-style: none; padding: 0; margin-top: auto; }

.service-features li {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s ease;
}

.service-features li:hover { color: var(--primary); }
.service-features li i { color: var(--primary); font-size: 14px; }

/* =====================================================
    7. RESPONSIVE SETTINGS (MOBILE & TABLET)
   ===================================================== */
@media (max-width: 992px) {
    .hamburger { display: block; }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.10);
        padding: 20px 0;
        align-items: flex-start;
        z-index: 2000;
    }

    .menu.active { display: flex; }
    .menu li { width: 100%; }

    .menu li a {
        display: block;
        padding: 15px 8%;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .menu li a.login {
        width: 84%; margin: 20px auto;
        text-align: center;
    }

    .features {
        flex-direction: column;
        margin-top: 30px;
        padding: 0 6%;
    }

    .feature-card { width: 100%; margin-bottom: 15px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .story-content { flex-direction: column; }
    .story-image { max-width: 100%; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-overlay h1 { font-size: 32px; }
    .hero-image-box { height: 400px; }
    .story-cards { flex-direction: column; }
}

/* =====================================================
   MITRA & TOKO SECTION
   ===================================================== */
.mitra-section {
    padding: 80px 6%;
    background-color: #ffffff;
    text-align: center;
}

.mitra-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.mitra-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(255,122,0,0.3));
    margin: 15px auto 0;
    border-radius: 3px;
}

.mitra-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.mitra-title-grid {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.mitra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.mitra-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.mitra-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.20);
}

.mitra-icon-box {
    width: 50px; height: 50px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
    transition: background 0.3s ease, transform 0.35s var(--ease);
}

.mitra-card:hover .mitra-icon-box {
    background: var(--primary-glow);
    transform: scale(1.10) rotate(-4deg);
}

.mitra-icon-box i { color: var(--primary); font-size: 20px; }
.mitra-card span { font-weight: 600; color: var(--text-mid); font-size: 15px; }

.btn-orange-wide {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 20px rgba(255,122,0,0.30);
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.btn-orange-wide:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(255,122,0,0.42);
}

.btn-orange-wide:active {
    transform: translateY(-1px) scale(1.01);
}

.mitra-img {
    width: 100%; height: 160px; overflow: hidden;
}

.mitra-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s var(--ease-smooth);
}

.mitra-card:hover .mitra-img img { transform: scale(1.08); }

.mitra-info { padding: 30px 20px 20px 20px; text-align: left; }
.mitra-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }

.mitra-address {
    font-size: 13px; color: var(--text-light);
    line-height: 1.4;
    display: flex; gap: 6px;
}

.mitra-address i { color: var(--primary); margin-top: 2px; }

.mitra-icon-center {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin: -22px auto 0 auto;
    position: relative; z-index: 10;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 14px rgba(255,122,0,0.30);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.mitra-card:hover .mitra-icon-center {
    transform: scale(1.12);
    box-shadow: 0 8px 20px rgba(255,122,0,0.40);
}

@media (max-width: 992px) {
    .mitra-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .mitra-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   OUR OPERATIONS STYLING
   ===================================================== */
.operations-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.operations-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.operations-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.75;
}

.op-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative; z-index: 1;
}

.op-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    position: relative; z-index: 1;
}

@media (max-width: 992px) {
    .operations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .operations-grid { grid-template-columns: 1fr; }
    .op-card { padding: 30px 15px; }
}

/* =====================================================
   VISUAL HIGHLIGHTS
   ===================================================== */
.highlights-header { text-align: center; margin-bottom: 60px; }

.header-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 15px auto;
    border-radius: 10px;
}

.highlight-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 5px solid #fff;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
    .highlights-section { padding: 60px 20px; }
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-header { text-align: center; margin-bottom: 50px; }

.info-card {
    display: flex; gap: 20px; padding: 25px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255,122,0,0.15);
}

.info-icon {
    width: 50px; height: 50px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s var(--ease);
}

.info-card:hover .info-icon {
    background: var(--primary-glow);
    transform: scale(1.08);
}

.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* =====================================================
   MOBILE FIX — STORY TEXT
   ===================================================== */
@media (max-width: 768px) {
    .story-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .story-text {
        flex: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left;
    }
    .story-text h3 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .story-text p {
        font-size: 14px !important;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 12px;
    }
    .mitra-icon-center {
        width: 38px; height: 38px;
        font-size: 15px;
        margin-top: -19px;
    }
}
/* =====================================================
   FOOTER MASTER STYLING (MATCH UI/UX)
   ===================================================== */
.main-footer {
    background-color: #0b1120; /* Warna biru gelap identik */
    color: #94a3b8; /* Warna teks abu-abu lembut */
    padding: 80px 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Branding Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 65px;
}

.brand-name {
    display: block;
    color: #ff7a00; /* Oranye Terang */
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
}

.brand-sub {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ff7a00;
    transform: translateY(-3px);
}

/* Headers & Links */
.footer-column h4 {
    color: #ff7a00; /* Oranye sesuai UI */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #ff7a00;
    font-size: 18px;
    margin-top: 3px;
}

.contact-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsif untuk HP */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* =====================================================
    ADDITIONAL ANIMATIONS (REVEAL & PRELOADER)
   ===================================================== */

/* 1. Preloader Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    animation: pulseLogo 1.5s infinite ease-in-out;
    margin-bottom: 20px;
}

.loader-line {
    width: 160px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ff7a00; /* Oranye Jet Express */
    animation: loadingBar 1.5s infinite;
}

/* =====================================================
   CORE REVEAL SETTINGS
   ===================================================== */
.reveal, .reveal-left, .reveal-right {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0) scale(1);
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes loadingBar {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

:target {
    scroll-margin-top: 100px;
}

/* =====================================================
   ANIMASI MELAYANG (HOVER & CONTINUOUS)
   ===================================================== */
.service-card.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.service-card.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: floatingCard 4s infinite ease-in-out;
    animation-delay: 1s;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff7a00;
    animation-play-state: paused;
}

@keyframes floatingCard {
    0% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.08);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
}

/* =====================================================
   HERO SECTION ANIMATIONS
   ===================================================== */
.hero-overlay h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards 0.5s;
}

.hero-overlay p {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 0.8s;
}

.hero-btn {
    opacity: 0;
    animation: heroFadeIn 1.5s ease forwards 1.2s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    to { opacity: 1; }
}

.hero-image-box {
    overflow: hidden;
}

.hero-image-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("../images/bg-company.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.4) !important;
}

/* =====================================================
   OUR STORY SPECIAL ANIMATIONS
   ===================================================== */
.header-line {
    width: 0;
    height: 4px;
    background: #ff7a00;
    margin: 10px auto;
    transition: width 1.2s ease-out;
    border-radius: 2px;
}

.reveal.active .header-line {
    width: 100px;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #ff7a00;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
    z-index: 5;
    animation: floatingBadge 3s infinite ease-in-out;
}

@keyframes floatingBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =====================================================
   ANIMASI KHUSUS MITRA & TOKO (MENONJOL)
   ===================================================== */
.mitra-card.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mitra-card.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mitra-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.mitra-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.2);
    border-color: #ff7a00;
    z-index: 10;
}

.mitra-img img {
    transition: all 0.5s ease;
}

.mitra-card:hover .mitra-img img {
    transform: scale(1.1);
}

.mitra-icon-center {
    transition: all 0.4s ease;
}

.mitra-card:hover .mitra-icon-center {
    background: #ff7a00;
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.mitra-footer-btn.reveal {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.mitra-footer-btn.reveal.active {
    opacity: 1;
    transform: scale(1);
}

/* =====================================================
   OUR OPERATIONS ANIMATIONS
   ===================================================== */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.op-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.op-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: #ff7a00;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
    transition: 0.4s;
}

.op-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: 0.4s;
}

.op-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #ff7a00;
}

.op-card:hover .op-icon-box {
    background: #ff7a00;
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.op-card:hover .op-number {
    background: #333;
    transform: scale(1.2) rotate(-10deg);
}

.op-card:hover .op-icon-box i {
    animation: bounceIcon 0.6s infinite alternate;
}

@keyframes bounceIcon {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

@media (min-width: 992px) {
    .op-connector {
        position: absolute;
        top: 50%;
        right: -20px;
        width: 40px;
        height: 2px;
        background: dashed #ff7a00;
        opacity: 0.3;
        z-index: -1;
    }
}

/* =====================================================
   VISUAL HIGHLIGHTS GALLERY STYLE
   ===================================================== */
.highlights-section {
    padding: 80px 0;
    background: #ffffff;
}

.highlights-header h2 span {
    color: #ff7a00;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
    cursor: pointer;
}

.image-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 122, 0, 0.9), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.overlay i {
    font-size: 30px;
    margin-bottom: 10px;
}

.overlay span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 0 20px;
    text-align: center;
}

.highlight-card:hover .image-box img {
    transform: scale(1.15) rotate(2deg);
}

.highlight-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.3);
}

/* =====================================================
   CONTACT & LOCATION STYLE
   ===================================================== */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-grid h3,
.contact-map h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.contact-info-grid h3::before,
.contact-map h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 25px;
    width: 4px;
    background: #ff7a00;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
    border-color: #ff7a00;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    transition: 0.3s;
}

.info-card:hover .info-icon {
    background: #ff7a00;
    color: white;
}

.info-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.info-text p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 5px solid white;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}
/* ================= LOGIN PAGE VERTICAL ================= */

body.login-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 30% 30%, #ffb347 0%, #ff7a00 50%, #ff5e00 100%);
}

.login-card {
    background: #ffffff;
    width: 420px;
    max-width: 95%;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    animation: fadeUp 0.8s ease;
}

.side-logo {
    width: 250px;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.login-card h1 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 5px;
    color: #1a202c;
}

.subtitle {
    text-align: left;
    font-size: 14px;
    color: #718096;
    margin-bottom: 30px;
}

.input-wrapper {
    margin-bottom: 20px;
}

.input-wrapper label {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e0;
}

.input-group input {
    width: 100%;
    padding: 13px 15px 13px 45px;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

.input-group input:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 4px rgba(255,122,0,0.15);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-footer input[type="checkbox"] {
    accent-color: #ff7a00;
}

.forgot-password {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff7a00, #ff5e00);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(255,122,0,0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,122,0,0.5);
}

.error-msg {
    background: #ffe5e5;
    color: #d8000c;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 15px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
/*  SPLASH SCREEN - FINAL VERSION */

#splash-screen {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: linear-gradient(135deg, #ff6a00, #ff9e2c, #ffc371);
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;

    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 50px 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    animation: fadeZoom 1s ease;
}

.splash-card img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
}

.splash-card h1 {
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.splash-card p {
    color: #ffffffcc;
    font-size: 14px;
    margin-bottom: 25px;
}

.loading-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #ffffff;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
/* ===============================
   VERIFY OTP PAGE (SAFE VERSION)
=============================== */

.verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f4f7f6;
    padding: 40px 0;
}

.verify-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: #ffffff;
}

.brand-text {
    color: #ff7a00;
    font-weight: 700;
}

.otp-input {
    letter-spacing: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 12px;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}

.btn-orange {
    background-color: #ff7a00;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e66e00;
    transform: translateY(-2px);
}

.resend-link {
    color: #ff7a00;
    font-weight: 600;
    text-decoration: none;
}

.resend-link:hover {
    text-decoration: underline;
}
/* ===============================
   AUTH WRAPPER
=============================== */

.auth-page {
    font-family: 'Poppins', sans-serif;
    background-color: #fff7f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-card,
.reset-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.15);
    border-top: 5px solid #ff7a00;
    animation: fadeIn 0.4s ease-in-out;
}

.brand-text {
    color: #ff7a00;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 1px;
}

.auth-page .form-control,
.auth-page .otp-input {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.auth-page .otp-input {
    text-align: center;
    font-size: 22px;
    letter-spacing: 8px;
    font-weight: 600;
}

.auth-page .form-control:focus,
.auth-page .otp-input:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.btn-orange {
    background-color: #ff7a00;
    border: none;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    transition: 0.3s ease;
}

.btn-orange:hover {
    background-color: #e66e00;
    transform: translateY(-2px);
}

.auth-page a {
    color: #ff7a00;
    font-weight: 500;
    text-decoration: none;
}

.auth-page a:hover {
    text-decoration: underline;
}

.auth-page .alert {
    border-radius: 8px;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================================
   ===  PERBAIKAN RESPONSIVE TAMBAHAN (MOBILE & TABLET) — FINAL FIX  ===
   =====================================================================
   Catatan: blok ini sengaja diletakkan paling akhir agar override
   berjalan otomatis (cascade), tanpa mengubah / merusak kode di atas.
   Fokus: hero terlalu sempit di HP, feature card menabrak hero image,
   teks kepotong, grid tidak rapi, padding kebesaran di layar kecil.
======================================================================= */

/* ---- TABLET (≤992px) ---- */
@media (max-width: 992px) {
    .hero-image-box { width: 88%; height: 440px; }
    .vmv-card { padding: 30px 20px; }
}

/* ---- MOBILE BESAR (≤768px) ---- */
@media (max-width: 768px) {
    /* HERO: full width, tinggi menyesuaikan konten, padding aman */
    .hero { padding: 24px 0 50px 0; }
    .hero-container { padding: 0 16px; }
    .hero-image-box {
        width: 100%;
        height: auto;
        min-height: 380px;
        border-radius: 22px;
    }
    .hero-overlay {
        padding: 28px 22px;
    }
    .hero-overlay h1 { font-size: 26px; line-height: 1.25; }
    .hero-overlay p { font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }

    .hero-btn { flex-direction: column; width: 100%; gap: 12px; }
    .hero-btn .btn-primary,
    .hero-btn .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }

    /* FEATURES: jangan menabrak hero image, jadi 1 kolom rapi */
    .features {
        margin-top: 18px;
        padding: 0 16px;
        gap: 14px;
    }
    .feature-card { padding: 26px 18px; }

    /* SECTIONS: kurangi padding besar di mobile */
    .our-story-section,
    .services-section,
    .mitra-section,
    .operations-section,
    .highlights-section,
    .contact-section {
        padding: 50px 5% !important;
    }

    .story-header h2,
    .services-section h2,
    .mitra-section h2,
    .operations-header h2 {
        font-size: 26px;
    }

    .services-grid,
    .operations-grid { gap: 16px; }

    .story-cards { gap: 14px; }
    .vmv-card { padding: 26px 18px; }

    .highlight-card { height: 220px; }

    .contact-content { grid-template-columns: 1fr; gap: 20px; }
    .map-wrapper { height: 260px; }

    .footer-grid { gap: 30px; }
}

/* ---- MOBILE KECIL (≤480px) ---- */
@media (max-width: 480px) {
    .logo img { height: 70px; }

    .hero-image-box { min-height: 340px; border-radius: 18px; }
    .hero-overlay h1 { font-size: 22px; }
    .hero-overlay p { font-size: 13.5px; }

    .feature-icon-box { width: 55px; height: 55px; }

    .mitra-grid { gap: 16px; }
    .mitra-section h2 { font-size: 28px; }

    .login-card { padding: 35px 22px; }
    .otp-input { letter-spacing: 8px; font-size: 1.6rem; }
}

/* ---- Pastikan tidak ada elemen yang memicu scroll horizontal ---- */
img, video, iframe { max-width: 100%; }
.services-grid,
.operations-grid,
.mitra-grid,
.highlights-grid { width: 100%; }

/* =====================================================================
   ===  FIX TAMBAHAN: TEKS TERPOTONG / OVERFLOW HORIZONTAL DI HP  ===
   =====================================================================
   Penyebab teks "Tepat wak..." / "...y" kepotong: ada elemen yang lebih
   lebar dari layar (overflow-x), sehingga teks ikut terpotong oleh
   batas layar alih-alih membungkus ke baris baru. Blok ini memaksa
   SEMUA kontainer & teks supaya tidak pernah melebihi lebar layar,
   dan teks selalu wrap dengan benar.
======================================================================= */

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Paksa semua elemen utama tidak pernah lebih lebar dari parent-nya */
section, div, header, footer, nav, main, article,
.hero, .hero-container, .hero-image-box, .hero-overlay,
.our-story-section, .story-content, .story-text, .story-image,
.services-section, .services-grid, .service-card,
.mitra-section, .mitra-grid, .mitra-card,
.operations-section, .operations-grid, .op-card,
.highlights-section, .highlights-grid, .highlight-card,
.contact-section, .contact-content, .info-card,
.features, .feature-card, .vmv-card, .story-cards {
    max-width: 100%;
    box-sizing: border-box;
}

/* Pastikan semua teks wrap dengan baik, tidak pernah dipaksa 1 baris */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Hapus lebar tetap (px) pada elemen dekoratif yang sering jadi biang
   overflow di layar sempit, ganti jadi max-width agar menyusut otomatis */
.story-text h3::after {
    width: 100%;
    max-width: 220px;
}

@media (max-width: 768px) {
    .hero-overlay h1,
    .hero-overlay p {
        width: 100%;
        max-width: 100%;
        word-break: break-word;
    }

    /* Section "Tentang/Our Story" versi card (seperti di halaman about) */
    .our-story-section,
    .story-content,
    .story-text {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    .story-text h3,
    .story-header h2 {
        font-size: 22px !important;
        word-break: break-word;
    }

    .story-text p {
        font-size: 14px !important;
        text-align: left !important;
        padding-right: 0 !important;
    }

    /* Badge/label kecil (mis. "5+ Tahun Melayani") jangan sampai
       keluar dari kotak gambar */
    .experience-badge {
        right: 10px;
        left: auto;
        max-width: 80%;
        font-size: 12px;
        padding: 8px 14px;
        white-space: normal;
        text-align: center;
    }
}

/* Cegah elemen apa pun dengan width fixed besar (mis. 500px, 600px)
   tetap dipaksa menyusut mengikuti layar di mobile */
@media (max-width: 600px) {
    * {
        max-width: 100vw;
    }
}

/* =====================================================================
   ===  FIX: PETA GOOGLE MAPS MENDORONG LAYOUT MELEBAR KE KANAN  ===
   =====================================================================
   Penyebab: tag <iframe> Google Maps biasanya membawa atribut HTML
   width="600" bawaan, yang MENGALAHKAN CSS biasa. Akibatnya kolom grid
   ikut melebar mengikuti lebar asli iframe dan mendorong seluruh
   halaman jadi punya scroll horizontal (ini yang bikin "Persyaratan"
   ikut kepotong di kanan layar).
======================================================================= */

.contact-content {
    /* cegah kolom grid melebar mengikuti konten anak (iframe) */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
}

.contact-content > * ,
.contact-info-grid,
.contact-map {
    min-width: 0; /* kunci utama: izinkan grid item menyusut di bawah ukuran konten */
}

.map-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden; /* potong rapi jika iframe tetap mencoba melebar */
}

.map-wrapper iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 350px !important;
    border: none;
    display: block;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 260px !important;
    }
}