/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* ROOT VARIABLE */
:root {
    --primary-color: greenyellow;
    --text-color: #333;
    --main-color: green;
    --bg-dark: #222;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* BODY */
body {
    font-family: "Nunito", sans-serif;
}

/* NAVBAR */
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    height: 80px;
    margin: auto;
}

/* BRAND */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}

/* HAMBURGER */
.btn-menu {
    display: none;
    font-size: 22px;
    margin-right: 10px;
    color: var(--main-color);
}

/* MENU */
.nav-menu {
    display: flex;
}

.nav-menu li {
    list-style: none;
    margin: 0 15px;
}

.nav-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
}

/* HOVER EFFECT */
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: 0.3s;
}

.nav-menu li a:hover::after {
    transform: scaleX(0.6);
}

/* RIGHT ICON */
.nav-btn a {
    color: var(--main-color);
    font-size: 18px;
}

.nav-btn a:hover {
    color: var(--primary-color);
}

/* ========================= */
/* 📱 RESPONSIVE (MOBILE) */
/* ========================= */
@media (max-width: 768px) {

    .navbar {
        padding: 0 15px;
    }

    .btn-menu {
        display: block;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 60%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        transition: 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu li a {
        color: white;
    }

    .nav-menu li a::after {
        background: var(--primary-color);
        transform-origin: left;
    }
}
.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}
.home {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('atn.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.home-content h1 {
    font-size: 55px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.home-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* BUTTON */
.home-btn a {
    padding: 12px 25px;
    margin: 5px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: gold;
    color: black;
}

.btn-primary:hover {
    background: #e6c200;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

section {
    padding: 80px 20px;
    text-align: center;
}

.services {
    padding: 80px 20px;
    text-align: center;
    background: #f8f8f8;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-item {
    background: white;
    padding: 25px;
    width: 260px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 30px;
    margin-bottom: 10px;
    color: gold;
}

.service-item:hover {
    transform: translateY(-10px);
}
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}
.about {
    padding: 80px 20px;
    background: white;
}

.about-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXT */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

/* POINT LIST */
.about-points .point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.about-points i {
    color: gold;
    margin-right: 10px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
section {
    padding: 100px 20px;
}
.contact {
    padding: 100px 20px;
    background: #0f172a; /* navy gelap */
    color: white;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #ccc;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    margin-right: 10px;
    color: gold;
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: gold;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e6c200;
}
.info-item a {
    color: white;
    text-decoration: none;
}

.info-item a:hover {
    color: gold;
}
.footer {
    background: #0f172a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-container > div {
    flex: 1;
    min-width: 250px;
}

.footer h2,
.footer h3 {
    color: white;
    margin-bottom: 15px;
}

/* TEXT */
.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ICON */
.footer i {
    margin-right: 8px;
    color: gold;
}

/* LINK */
.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: gold;
}

/* SOCIAL */
.footer-social a {
    font-size: 20px;
    margin-right: 15px;
    display: inline-block;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
.trust-badge {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 30px;

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 14px;

    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

/* ICON */
.trust-item i {
    color: gold;
}

/* HOVER EFFECT */
.trust-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
}

.popup-content i {
    font-size: 40px;
    color: green;
}
.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-content {
    max-width: 800px;
}

.trust-item {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.trust-item i {
    font-size: 18px;
}