/* ===== CSS Variables ===== */
:root {
    --blue-dark: #0a1628;
    --blue: #0f2a52;
    --blue-light: #1a4480;
    --cyan: #00a8cc;
    --yellow: #f5a623;
    --yellow-bright: #ffdd00;
    --white: #ffffff;
    --gray: #f0f4f8;
    --text: #1a1a1a;
    --text-light: #5a6a7a;
    --red: #cc0000;
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Top Bar ===== */
.topbar {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 7px 0;
    text-align: center;
}

.topbar strong {
    color: var(--yellow);
}

/* ===== Header ===== */
header {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: var(--white);
    padding: 2px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--cyan);
}

/* ===== CTA Buttons ===== */
.cta-btn {
    background: var(--cyan);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.35);
    background: #0095b3;
}

.cta-btn.yellow {
    background: var(--yellow);
    color: var(--blue-dark);
}

.cta-btn.yellow:hover {
    background: #e0951c;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
}

.cta-btn.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Truck Background with 15% Transparency */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/hero-truck.jpg') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 4px 4px 0px #000;
    font-family: 'Arial Black', Arial, sans-serif;
}

.title-yellow {
    color: var(--yellow-bright);
    text-shadow: 3px 3px 0px #000;
}

.tagline-bar {
    background: var(--yellow-bright);
    color: var(--blue-dark);
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 900;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 25px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--yellow-bright);
}

/* ===== Feature Icons (Circular Style) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    text-align: center;
    padding: 15px 10px;
    background: var(--white);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: scale(1.08);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.feature-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.2;
    text-transform: uppercase;
}

/* ===== Benefits List ===== */
.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.checkmark {
    background: var(--yellow-bright);
    color: var(--blue-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== Hero Actions ===== */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    text-decoration: none;
}

.hero-phone a {
    color: var(--cyan);
    text-decoration: none;
}

.hero-phone a:hover {
    text-decoration: underline;
}

/* ===== Hero Right: Survey Badge + Image ===== */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Survey Gratis Badge - Rotated Yellow Style */
.survey-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--yellow-bright);
    color: var(--red);
    padding: 18px 28px;
    border-radius: 12px;
    transform: rotate(12deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(12deg) scale(1);
    }
    50% {
        transform: rotate(12deg) scale(1.06);
    }
}

.badge-text {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    line-height: 1.1;
    text-align: center;
    font-family: 'Arial Black', Arial, sans-serif;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    padding: 25px 20px 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

/* ===== Sections ===== */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--blue-dark);
    font-weight: 900;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
}
   /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 35px 28px;
            box-shadow: 0 10px 40px rgba(11, 30, 58, 0.08);
            border: 1px solid rgba(11, 30, 58, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(11, 30, 58, 0.14);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 22px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--blue-dark);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.97rem;
        }


/* ===== Why Us ===== */
.why-us {
    background: var(--gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.why-item {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(11, 30, 58, 0.06);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyan);
    display: block;
    margin-bottom: 8px;
}

.why-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Process ===== */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--blue-light));
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 4px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blue-dark);
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step h4 {
    margin-bottom: 8px;
    color: var(--blue-dark);
}

.step p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ===== Video ===== */
.video-section {
    background: var(--white);
}

.video-wrap {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(11, 30, 58, 0.18);
    background: var(--blue-dark);
}

.video-wrap img {
    width: 100%;
    display: block;
    opacity: 0.85;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.video-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* ===== Work Examples ===== */
.work-examples {
    padding: 80px 0;
    background: var(--gray);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.work-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transition: transform 0.2s, box-shadow 0.2s;
}

.work-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-cta {
    text-align: center;
}

/* ===== Testimonials ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testi-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(11, 30, 58, 0.08);
    border: 1px solid rgba(11, 30, 58, 0.06);
}

.testi-stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testi-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.testi-name {
    font-weight: 700;
    color: var(--blue-dark);
}

.testi-loc {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Contact ===== */
.contact {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.contact p.lead {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
}

.contact-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-item a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--blue-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dde4ec;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cyan);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-success {
    display: none;
    margin-top: 14px;
    background: #e6f7ee;
    color: #1a7a4c;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
}

.form-success.show {
    display: block;
}

/* ===== Map ===== */
.map-section iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ===== Footer ===== */
footer {
    background: #071629;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-brand .logo {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: #25d366;
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulseFloat 2s infinite;
}

.floating-cta:hover {
    background: #1ebe59;
}

@keyframes pulseFloat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: column;
    }

    .process-steps::before {
        display: none;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--blue-dark);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

   .survey-badge {
    margin-left: auto; /* Dorong badge ke kanan */
    align-self: flex-start; /* Sejajar dengan atas heading */
    transform: rotate(5deg);
    animation: pulseBadge 2s infinite;
}

    @keyframes pulse {
        0%, 100% {
            transform: rotate(5deg) scale(1);
        }
        50% {
            transform: rotate(5deg) scale(1.06);
        }
    }
}

@media (max-width: 500px) {
    .hero-left h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-phone {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-actions .cta-btn {
        width: 100%;
        text-align: center;
    }

    .floating-cta {
        padding: 12px 18px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }

    .work-examples {
        padding: 50px 0;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-item {
        width: 90px;
        height: 90px;
    }

    .feature-icon {
        font-size: 26px;
    }

    .feature-label {
        font-size: 8px;
    }
}
/* ===== Title Row: Badge sejajar dengan SEDOT WC ===== */
.title-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.title-row h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin: 0;
    text-shadow: 4px 4px 0px #000;
    font-family: 'Arial Black', Arial, sans-serif;
    flex-shrink: 0;
}

.title-row h1 .title-yellow {
    color: var(--yellow-bright);
    text-shadow: 3px 3px 0px #000;
}

/* Survey Badge - sejajar dengan heading */
.survey-badge {
    float: right; /* Rata kanan */
    transform: rotate(5deg);
    margin-bottom: 20px;
    margin-left: 20px;
    animation: pulseBadge 2s infinite;
}
.title-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Heading kiri, badge kanan */
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.survey-badge {
    transform: rotate(5deg);
    flex-shrink: 0;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(-3deg) scale(1.06); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.badge-text {
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
    line-height: 1.1;
    text-align: center;
    font-family: 'Arial Black', Arial, sans-serif;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    justify-items: center;
}

.feature-item {
    text-align: center;
    padding: 18px 12px;
    background: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 30px rgba(0, 168, 204, 0.3);
}

.feature-icon {
    font-size: 34px;
    margin-bottom: 4px;
    line-height: 1;
}

.feature-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 900px) {
    .title-row {
        gap: 16px;
    }

    .title-row h1 {
        font-size: 3.5rem;
    }

    .badge-text {
        font-size: 1.3rem;
    }

    .survey-badge {
        padding: 12px 18px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .feature-item {
        width: 110px;
        height: 110px;
    }

    .feature-icon {
        font-size: 30px;
    }

    .feature-label {
        font-size: 9px;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 500px) {
    .title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .title-row h1 {
        font-size: 2.8rem;
    }

    .survey-badge {
        transform: rotate(0deg);
        padding: 10px 16px;
        align-self: flex-start;
    }

    @keyframes pulseBadge {
        0%, 100% { transform: rotate(0deg) scale(1); }
        50% { transform: rotate(0deg) scale(1.06); }
    }

    .badge-text {
        font-size: 1.1rem;
    }

    /* Grid tetap 3 kolom di mobile agar sama dengan tablet */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature-item {
        width: 95px;
        height: 95px;
        padding: 12px 8px;
    }

    .feature-icon {
        font-size: 26px;
    }

    .feature-label {
        font-size: 8px;
    }
}

/* ===== Responsive: Sangat kecil ===== */
@media (max-width: 360px) {
    .title-row h1 {
        font-size: 2.3rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .feature-item {
        width: 85px;
        height: 85px;
    }

    .feature-icon {
        font-size: 22px;
    }

    .feature-label {
        font-size: 7px;
    }
}

/* ===== Why Us Section ===== */
.why-us {
    background: var(--gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(11, 30, 58, 0.06);
    border: 1px solid rgba(11, 30, 58, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(11, 30, 58, 0.12);
    border-color: var(--cyan);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 204, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.why-item h3 {
    font-size: 1.15rem;
    color: var(--blue-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== Responsive Why Us ===== */
/* Tablet: 2 Kolom */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: Tetap 2 Kolom agar kompak dan konsisten dengan grid fitur */
@media (max-width: 500px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .why-item {
        padding: 20px 12px;
    }
    
    .why-icon {
        font-size: 1.8rem;
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .why-item h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .why-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}


/* ===== Pop-up Overlay ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Pop-up Box ===== */
.popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 35px 30px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease;
  border-top: 6px solid var(--yellow);
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== Tombol Close ===== */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  color: var(--blue-dark);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.popup-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

/* ===== Icon & Title ===== */
.popup-icon {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.popup-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.popup-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 22px;
}

.popup-subtitle strong {
  color: var(--cyan);
}

/* ===== Features List ===== */
.popup-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  background: var(--gray);
  padding: 18px 20px;
  border-radius: 14px;
}

.popup-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.popup-check {
  background: var(--cyan);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.popup-feature strong {
  color: var(--red);
}

/* ===== Action Buttons ===== */
.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.popup-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.popup-btn.primary {
  background: #25d366;
  color: var(--white);
}

.popup-btn.primary:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.popup-btn.secondary {
  background: var(--blue-dark);
  color: var(--white);
}

.popup-btn.secondary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.35);
}

/* ===== Note ===== */
.popup-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== Responsive Pop-up ===== */
@media (max-width: 500px) {
  .popup-box {
    padding: 35px 22px 25px;
    border-radius: 20px;
  }
  
  .popup-title {
    font-size: 1.3rem;
  }
  
  .popup-subtitle {
    font-size: 0.9rem;
  }
  
  .popup-icon {
    font-size: 3rem;
  }
  
  .popup-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* Video Section dengan Autoplay */
.video-wrap {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(11, 30, 58, 0.18);
    background: var(--blue-dark);
}

.video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tombol Control Play/Pause */
.video-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 204, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.video-control:hover {
    background: var(--cyan);
    transform: scale(1.1);
}

.video-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* Responsive Video */
@media (max-width: 500px) {
    .video-control {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 15px;
        right: 15px;
    }
}