@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;700&display=swap');

/* General Reset & Font Import */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Header & Navigation */
header {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
    display: block;
    margin-left: -80px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
    font-family: 'Montserrat Alternates', sans-serif;
}

.nav-links a:hover {
    color: #000;
}

/* Language Dropdown Styling */
.language-dropdown {
    position: relative;
    cursor: pointer;
    margin-right: -80px;
}

.language-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

.language-selected .globe-icon {
    font-size: 18px;
    color: #1da6a9 !important;
}

.language-selected span {
    font-weight: 500;
    font-size: 15px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.language-selected .arrow-down {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: #d02b29 !important;
    font-weight: bold;
}

.language-options {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 160px;
    z-index: 10;
}

.language-options.active {
    display: block;
}

.language-options a {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
    transition: background-color 0.2s ease;
    font-family: 'Montserrat Alternates', sans-serif;
}

.language-options a:hover {
    background-color: #f5f5f5;
}

/* Hero Section */
.hero-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.phone-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 54vw;
    max-width: 700px;
    min-width: 600px;
}

.hero-right {
    flex-basis: 50%;
    position: relative;
    z-index: 10;
    padding-left: 30px;
}


.hero-right h1 {
    font-size: 88px;
    font-weight: 400;
    line-height: 0.76;
    margin-bottom: 25px;
    color: #222;
    font-family: 'Montserrat Alternates', sans-serif;
}

.hero-right .highlight-red {
    color: #d02b29;
    font-weight: 700;
}

.hero-right .highlight-teal {
    color: #1da6a9;
    font-weight: 700;
}

.hero-right p {
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    max-width: 480px;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    margin-top: 6px;
}

.app-buttons img {
    height: 50px;
}

.blueprint-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 32px;
    font-weight: 400;
    color: #222;
    font-family: 'Montserrat Alternates', sans-serif;
    margin-top: 0;
    margin-bottom: 0;
}


.blueprint-button {
    background: linear-gradient(90deg, #E63946 0%, #1DACC4 100%);
    color: #fff;
    padding: 0 28px;
    border-radius: 999px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 32px;
    height: 1.3em;
    line-height: 1.3em;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(29, 172, 196, 0.08);
    cursor: pointer;
}

.blueprint-button:hover {
    background: #1da6a9;
    transform: scale(1.04);
}

.blueprint-button strong {
    font-weight: 700;
}

.blueprint-container .blueprint-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #222;
    letter-spacing: 0.01em;
    margin-right: 4px;
}


/* Responsive Design */

/* --- PERUBAHAN UTAMA UNTUK MOBILE --- */
@media (max-width: 992px) {

    /* Sembunyikan menu navigasi dan tombol hamburger */
    .nav-links,
    .mobile-nav-toggle {
        display: none;
    }

    /* Pastikan layout header tetap benar dengan 2 item */
    nav {
        justify-content: space-between;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
    }

    .hero-right {
        order: -1;
        flex-basis: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        padding-left: 0;
        text-align: center;
    }

    .hero-right p {
        text-align: center;
    }

    .app-buttons,
    .blueprint-container {
        justify-content: center;
    }

    .phone-image {
        position: static;
        width: 100%;
        max-width: 420px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .phone-image {
        display: none;
    }

    nav {
        padding: 0 4px;
        min-height: 56px;
    }

    .logo img {
        height: 28px;
        margin-left: 0;
    }

    .language-dropdown {
        margin-right: 0;
        font-size: 14px;
    }

    .hero-right {
        align-items: flex-start;
        text-align: left;
    }

    .hero-right p {
        text-align: left;
    }

    .hero-right h1 {
        text-align: left;
        font-size: 56px;
        line-height: 0.82;
    }

    .app-buttons {
        justify-content: flex-start;
        gap: 8px;
    }

    .app-buttons img {
        height: 36px;
    }

    .blueprint-container {
        font-size: 18px;
        gap: 4px;
        margin-top: 8px;
    }

    .blueprint-button {
        font-size: 18px;
        padding: 0 12px;
        height: 1.5em;
        line-height: 1.5em;
    }

    .blueprint-container .blueprint-label {
        font-size: 18px;
        margin-right: 2px;
    }
}