:root {
    --black: #050505;
    --black-soft: #111111;
    --white: #ffffff;
    --silver: #c9c9c9;
    --silver-soft: #efefef;
    --gray: #727272;
    --line: rgba(255,255,255,.14);
    --shadow: 0 24px 60px rgba(0,0,0,.34);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;

    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 18px 14px;
}

.logo-img {
    width: min(260px, 70vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(255,255,255,.10));
}

.nav-toggle {
    display: none;
    margin: 0 auto 14px;
    width: 46px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    background: linear-gradient(180deg, #f7f7f7, #b7b7b7);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #111;
    border-radius: 10px;
}

.main-nav {
    border-top: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, #f5f5f5 0%, #c9c9c9 48%, #8d8d8d 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.main-nav > ul {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 22px;
    color: #070707;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .35px;
    border-left: 1px solid rgba(255,255,255,.44);
    border-right: 1px solid rgba(0,0,0,.16);
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: linear-gradient(180deg, #3b3b3b, #0d0d0d);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: rgba(13,13,13,.98);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    color: #f7f7f7;
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
}

.dropdown a:hover {
    background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
}

.hero {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.42), rgba(0,0,0,.82)),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,.18), transparent 35%);
}

.hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    right: -110px;
    bottom: -130px;
    animation: floatCircle 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    width: min(1120px, 92%);
    padding: 80px 0;
    animation: fadeUp .8s ease both;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--silver-soft);
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 22px 0 16px;
    font-size: clamp(36px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -2px;

    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero p {
    max-width: 710px;
    margin: 0;
    color: #e7e7e7;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
}

.section {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 86px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.kicker {
    color: var(--silver);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
}

.section h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 22px;
}

.section p {
    color: #222;
    line-height: 1.85;
    font-size: 16px;
}

.intro-image-wrap {
    position: relative;
}



.intro-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: softFloat 5s ease-in-out infinite;
}

.location-section {
    width: min(1120px, 92%);
    margin: 0 auto 90px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
        rgba(255,255,255,.04);
    
}

.location-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
}

.location-section h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 46px);
}

.location-section p,
.location-section address {
    color: #111;
}

.info-card {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(0,0,0,.28);
}

.info-card h3 {
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: .8px;
}

.hours-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.page-hero {
    width: min(980px, 92%);
    margin: 72px auto;
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;

    border: none;
    border-radius: var(--radius);




    overflow: hidden;
}
.page-hero-inner {
    width: min(680px, 86%);
    animation: fadeUp .7s ease both;
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    color: #111;
}

.page-hero p {
    color: #222;
    line-height: 1.8;
}


.site-footer {
    border-top: 1px solid rgba(255,255,255,.12);
    background: #030303;
}

.footer-inner {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #dcdcdc;
}

.footer-inner span {
    color: #9d9d9d;
}

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

@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-24px, -18px); }
}

@media (max-width: 900px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo-wrap {
        flex: 1;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .logo-img {
        width: min(180px, 56vw);
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin: 0 16px 0 0;
        flex-shrink: 0;
    }

    .nav-toggle span {
        margin: 0;
    }

    .main-nav {
        display: none;
        order: 3;
        width: 100%;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav > ul {
        display: block;
        width: min(92%, 520px);
        padding: 12px 0;
    }

    .main-nav a {
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,.12);
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        box-shadow: none;
        margin: 0 0 8px;
        background: rgba(0,0,0,.78);
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .intro-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .location-section {
        padding: 28px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 470px;
    }

    .hero-content {
        padding: 62px 0;
    }

    .main-nav a {
        font-size: 13px;
        padding: 14px 16px;
    }

    .location-section {
        width: 94%;
        padding: 22px;
    }

    .hours-list div {
        flex-direction: column;
        gap: 4px;
    }
}

.vision-mission-page {
    min-height: auto;
    padding: 24px 0;
}

.vision-mission-content {
    width: min(860px, 90%);
    text-align: left;
}

.vision-mission-content h1 {
    text-align: center;
    margin-bottom: 34px;
}

.vm-block {
    margin-bottom: 30px;
}

.vm-block h2 {
    margin: 0 0 12px;
    color: #111;
    font-size: clamp(26px, 3vw, 38px);
}

.vm-block p {
    margin: 0;
}

.mission-list {
    margin: 0;
    padding-left: 22px;
    color: #222;
    line-height: 1.85;
    font-size: 16px;
}

.mission-list li {
    margin-bottom: 12px;
}


/* Struktur Perusahaan Page */
.structure-company-page {
    padding: 72px 0 84px;
    overflow: hidden;
}

.structure-content {
    width: min(980px, 92%);
    margin: 0 auto;
    text-align: center;
}

.structure-content h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    color: #111;
}

.structure-content p {
    margin: 0;
    color: #222;
    font-size: 17px;
    line-height: 1.85;
}

.structure-banner-full {
    width: 100vw;
    margin: 44px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.structure-banner-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.structure-description {
    width: min(920px, 92%);
}

@media (max-width: 520px) {
    .structure-company-page {
        padding: 52px 0 64px;
    }

    .structure-banner-full {
        margin: 30px 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .structure-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}

.contact-page p {
    color: #222;
    line-height: 1.8;
    font-size: 16px;
}

.contact-content {
    width: min(860px, 90%);
    margin: 0 auto;
    text-align: center;
}

.contact-content a {
    display: block;
    margin: 6px 0;
    color: #111;
    font-weight: 600;
}

.contact-map-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 40px;
}
.social-modern {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.social-modern h3 {
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    width: 240px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.social-btn .icon {
    font-size: 18px;
}

/* Facebook */
.social-btn.fb {
    background: linear-gradient(135deg, #1877f2, #0d5ed7);
}

/* Instagram */
.social-btn.ig {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

/* WhatsApp */
.social-btn.wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

