/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (max-width: 960px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }
}

p {
    font-size: 1.125rem;
    line-height: 1.5;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 4%;
    /* Netflix style padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    /* Adjustable based on preference */
    width: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #c11119;
}

.btn-sm {
    padding: 7px 17px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.arrow {
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero-container {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 8px solid #222;
    overflow: hidden;
}
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Opsional: untuk sudut melengkung agar terlihat modern */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #1a0b0b 0%, #000000 100%);
}

.hero-img {
    display: none;
    /* Hide missing image */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    padding: 75px 0;
    width: 100%;
    max-width: 950px;
    padding: 0 4%;
    z-index: 1;
}

.hero-subhead {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.input-container {
    flex-grow: 1;
}

.input-container input {
    width: 100%;
    padding: 16px 12px;
    font-size: 1rem;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent */
    color: #fff;
}

.input-container input:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .email-form {
        flex-direction: column;
        width: 100%;
    }

    .input-container {
        width: 100%;
    }

    .btn-lg {
        width: 100%;
        /* Full width button on mobile */
        justify-content: center;
    }

    .header {
        padding: 24px 5%;
    }
}

/* Dividers */
.divider {
    height: 8px;
    background-color: #222;
}

/* Feature Sections */
.feature-section {
    padding: 70px 45px;
    background: #000;
}

.feature-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.feature-section.reverse .feature-content {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    text-align: left;
}

.feature-media {
    flex: 1;
    position: relative;
}

.media-placeholder {
    width: 100%;
    height: 300px;
    /* Approximate height */
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #777;
    border: 2px dashed #555;
    border-radius: 8px;
}

@media (max-width: 960px) {

    .feature-content,
    .feature-section.reverse .feature-content {
        flex-direction: column;
        text-align: center;
    }

    .feature-text {
        text-align: center;
        padding-bottom: 20px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 70px 45px;
    background: #000;
    text-align: center;
}

.accordion {
    list-style: none;
    max-width: 815px;
    margin: 2rem auto;
    text-align: left;
}

.accordion li {
    margin-bottom: 8px;
}

.accordion-trigger {
    background-color: #2d2d2d;
    color: white;
    cursor: pointer;
    padding: 24px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-trigger:hover {
    background-color: #414141;
}

.accordion-trigger::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transform: rotate(0deg);
    transition: transform 0.2s;
}

.accordion-trigger.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    background-color: #2d2d2d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.5, 0, 0.1, 1), padding 0.25s;
    border-top: 1px solid #000;
}

.accordion-content p {
    font-size: 1.5rem;
    margin: 0;
}

.small-margin {
    margin-top: 40px;
}

/* Footer */
.footer {
    padding: 70px 45px;
    color: #737373;
    background: #000;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #737373;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.lang-select select {
    background: #000;
    color: #737373;
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 2px;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #181818;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: #fff;
    border: 1px solid #333;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #fff;
}

#modal-title {
    margin-top: 0;
    color: #fff;
}

#modal-body p {
    color: #ccc;
    font-size: 1rem;
    margin-top: 10px;
}