/* GLOBAL */
body {
    margin:0;
    font-family:'Inter',sans-serif;
    background:#ffffff;

}

/* LOGO */
.logo {
    font-size:22px;
    font-weight:600;
}

/* SEARCH ICON */
.search-icon {
    margin-left:15px;
    cursor:pointer;
}
/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px !important;
    padding-right: 24px !important;
}
/* gutter antar kolom */
.row {
    --bs-gutter-x: 20px;
}

/* ===== GLOBAL SPACING ===== */
.hero {
    margin-top: 0;
    height: 100vh;
}

.hero img,
.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero,
.full {
    padding: 0;
}

.grid3,
.grid2 {
     padding: 30px 0;
}


/* ===== HERO ===== */
.hero img {
    width:100%;
    height:85vh;
    object-fit:cover;
}

/* ===== TEXT CENTER ===== */
.center-text {
    text-align:center;
    padding:70px 20px;
    color: #000;  
}

.center-text h5 {
    font-size: 20px;       /* 🔥 lebih besar */
    letter-spacing: 0.5px; /* biar luxury feel */
    font-weight: 500;

    color: #000;           /* 🔥 hitam */
}

.center-text p {
    max-width:520px;
    margin:auto;
    font-size:13px;
    color: #000;  
}

.read-more {
    display: inline-block;
    margin-top: 12px;

    font-size: 12px;
    letter-spacing: 2px;

    color: #000;               /* 🔥 hitam */
    text-decoration: none;

    border-bottom: 1px solid #000;
    padding-bottom: 3px;

    transition: 0.3s;
}

.read-more:hover {
    opacity: 0.6;
}

/* garis bawah hidden */

.overlay-link {
    position: relative;
    display: inline-block;

    font-size: 12px;
    letter-spacing: 2px;

    color: #fff;
    cursor: pointer;

    padding: 6px 12px;

    text-decoration: none;
}

/* GARIS DEFAULT */
.overlay-link::after {
    content: "";
    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 2px;

    height: 1px;              /* 🔥 lebih tebal biar kelihatan */
    background: #fff;

    opacity: 1;
}

/* HOVER JADI BLOK */
.overlay-link:hover {
    background: #fff;
    color: #000;
}

/* GARIS HILANG SAAT HOVER */
.overlay-link:hover::after {
    opacity: 0;
}
/* ===== GRID 3 ===== */
.card-box {
    position: relative;
    overflow: hidden;
}
.card-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3; /* 🔥 penting biar di atas gambar */
}

.card-box img {
    width:100%;
    height:500px;
    object-fit:cover;
}

.card-text {
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    color:white;
}

/* overlay link */
.overlay-link {
    display:inline-block;
    margin-top:15px;
    font-size:11px;
    letter-spacing:1px;
    color:#fff;
    text-decoration:none;
    position:relative;
}


/* ===== FULL IMAGE ===== */
.full {
    position:relative;
}

.full img {
    width:100%;
    height:80vh;
    object-fit:cover;
}

.full h2 {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:white;
    font-family:'Playfair Display';
}

/* ===== GRID 2 ===== */
.grid2 img {
    width:100%;
    height:420px;
    object-fit:cover;
}

/* =========================
   CATALOG FULL FINAL
========================= */

/* keluar dari container bootstrap */
.catalog {
    width: 100vw;
    margin-left: calc(-50vw + 50%);

    padding-left: 80px; /* 🔥 jarak kiri */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* reset row */
.catalog .row {
    margin: 0;
}

/* hilangin padding kanan biar full */
.catalog .col-md-3 {
    padding-right: 0;
}

/* =========================
   ITEM
========================= */

.catalog-item {
    display: block;
    text-decoration: none;
    color: #000;
}

/* 🔥 GAMBAR (DITINGGIIN) */
.catalog-item img {
    width: 100%;
    height: 420px; /* 🔥 lebih tinggi (sebelumnya 340) */
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

/* hover zoom halus */
.catalog-item:hover img {
    transform: scale(1.05);
}

/* TEXT */
.catalog-item p {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 1.5px;

    position: relative;
    display: inline-block;
}

/* underline hover */
.catalog-item p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;
    background: #000;

    transition: 0.3s ease;
}

.catalog-item:hover p::after {
    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .catalog {
        padding-left: 20px;
        padding-right: 20px;
    }

    .catalog .col-md-3 {
        width: 100%;
        margin-bottom: 20px;
    }

    .catalog-item img {
        height: 320px;
    }
}
/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 60px 0; /* kiri kanan dari wrapper */
}

/* wrapper biar rapi tengah */
.footer .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TEXT KIRI */
.footer p {
    color: #ccc;
    line-height: 1.7;
    max-width: 260px;
}

/* JUDUL */
.footer b {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* LINK */
.footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer a:hover {
    opacity: 1;
}

/* SOCIAL ICON */
.footer-social {
    margin-top: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;

    margin-right: 10px;
    font-size: 14px;
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 50px;
    color: #888;
    font-size: 12px;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .footer {
        padding: 40px 0;
    }

    .footer .wrapper {
        padding: 0 20px;
    }

    .footer .row > div {
        margin-bottom: 30px;
    }
}

.readmore {
    cursor: pointer; /* 🔥 ini bikin jadi tangan */
}
.readmore {
    display: inline-block;
    position: relative;

    font-size: 12px;
    letter-spacing: 2px;

    color: #000;
}

/* garis bawah hidden dulu */
.readmore::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #000;

    transition: all 0.3s ease;
}

/* saat hover */
.readmore:hover::after {
    width: 100%;
    left: 0;
}
.readmore:hover {
    opacity: 0.7;
}
.readmore {
    transition: transform 0.3s ease;
}

.readmore:hover {
    transform: translateY(-2px);
}
/* gambar line 3 */
.full {
    position: relative;
}

.full img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.full {
    position: relative;
}

.full img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* TEXT */
.full-title {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, 20px); /* posisi awal animasi */

    font-size: 28px;
    letter-spacing: 3px;

    color: #fff;
    text-decoration: none;

    opacity: 0;
}

/* SAAT MUNCUL */
.full-title.show {
    opacity: 1;
    transform: translate(-50%, 0);
    transition: all 0.6s ease;
}

/* HOVER */
.full-title:hover {
    transform: translate(-50%, 0) scale(1.03);
}

/* =========================
   GRID 2 SECTION
========================= */

.grid2-box {
    position: relative;
    overflow: hidden;
}

/* =========================
   IMAGE (DIAM)
========================= */

.grid2-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* =========================
   TEXT TENGAH
========================= */

.grid2-text {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    text-align: center;
}

/* =========================
   JUDUL (PUTIH TERANG + GOYANG)
========================= */

.grid2-text h3 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;

    transition: transform 0.3s ease;
}

/* HOVER → HANYA JUDUL YANG GOYANG */
.grid2-box:hover h3 {
    transform: scale(1.08);
}

/* =========================
   LINK (POSISI BAWAH BANGET)
========================= */

.grid2-text .overlay-link {
    position: absolute;
    bottom: -210px; /* 🔥 makin besar makin ke bawah */
    left: 50%;
    transform: translateX(-50%);

    font-size: 9px;
    letter-spacing: 2px;

    color: #fff;
    text-decoration: none;

    padding: 6px 12px;
    cursor: pointer;

    transition: all 0.3s ease;
}

/* GARIS BAWAH DEFAULT */
.overlay-link::after {
    content: "";
    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 4px;

    height: 1px;
    background: #fff;
}

/* =========================
   HOVER LINK → BLOK PUTIH
========================= */

.overlay-link:hover {
    background: #fff;
    color: #000;
}

/* garis hilang saat hover */
.overlay-link:hover::after {
    opacity: 0;
}
/* =========================
   full image bawah
========================= */
.full {
    position: relative;
}

/* IMAGE */
.full img {
    width: 100%;
    height: 500px; /* 🔥 bisa kamu adjust */
    object-fit: cover;
}

/* TITLE */
.full-title {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    text-align: center;

    font-size: 28px;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* HOVER GOYANG */
.full-title:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* ANIMASI AWAL */
.full-title {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px));
}

/* SAAT MUNCUL */
.full-title.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}
.full-title {
    opacity: 1; /* 🔥 paksa muncul */
    transform: translate(-50%, -50%);
}

/* SOCIAL FOOTER */
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;

    color: #fff;
    font-size: 12px;

    text-decoration: none;

    transition: all 0.35s ease;
    transform: scale(1);
}

/* ✨ HOVER LUXURY */
.footer-social a:hover {
    background: #fff;
    color: #000;

    transform: scale(1.08); /* 🔥 subtle zoom */
    border-color: #fff;
}
.footer-social a {
    opacity: 0.85;
}

.footer-social a:hover {
    opacity: 1;
}

.search-icon {
    position: relative;
    cursor: pointer;
}
/* =========================
   ABOUT SPLIT (FINAL AMAN)
========================= */

.about-split {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 60px;
    gap: 50px;
}

/* ===== TEXT ===== */
.about-text {
    width: 50%;
    max-width: 500px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 600;      /* lebih tebal */
    line-height: 1.15;     /* lebih rapat ke bawah */
    margin-bottom: 12px;   /* jarak ke paragraf diperkecil */
    letter-spacing: -0.3px; /* biar lebih compact */
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}


/* ===== IMAGE (2 POTRAIT) ===== */
.about-image {
    width: 50%;
    display: flex;
    gap: 15px; /* jarak dekat */
}

.about-image img {
    width: 50%;
    height: 520px; /* portrait tinggi */
    object-fit: cover;
    display: block;
}

/* OPTIONAL: beda tinggi biar lebih design feel */
.about-image img:first-child {
    height: 540px;
}

.about-image img:last-child {
    height: 500px;
}

/* ===== HIGHLIGHT SECTION ===== */
.about-highlight {
    margin-top: 40px;

    display: flex;
    align-items: center;
    gap: 40px;

    padding: 30px 0;

    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* LEFT (20) */
.highlight-left h1 {
    font-size: 80px;
    font-weight: 400;
    margin: 0;
}

.highlight-left p {
    font-size: 16px;
    margin-top: 10px;
}

/* RIGHT LIST */
.highlight-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM STYLE */
.highlight-item {
    border: 1px solid #000;
    padding: 12px 30px;

    border-radius: 30px;
    font-size: 14px;

    width: fit-content;
}
/* =========================
   MOBILE (WAJIB)
========================= */
@media (max-width: 768px) {

    .about-highlight {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .highlight-right {
        align-items: center;
    }

    .highlight-left h1 {
        font-size: 60px;
    }

}
@media (max-width: 768px) {

    .about-split {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 13px;
    }

    .about-image {
        flex-direction: column;
        gap: 15px;
    }

    .about-image img {
        width: 100%;
        height: 320px;
    }
}
.why-amare {
    padding: 100px 60px;
    text-align: center;
}

.why-amare h2 {
    font-size: 26px;
    margin-bottom: 50px;
    font-weight: 500;
}

.why-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.why-item {
    width: 30%;
}

.why-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
    }

    .why-item {
        width: 100%;
    }
}
/* =========================
   FULL HERO (FINAL)
========================= */

.full-hero {
    position: relative;

    max-width: 1600px;
    margin: 0 auto;      /* center */
    padding: 0 20px;     /* jarak kiri kanan */
}

/* IMAGE */
.full-hero img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;

    border-radius: 2px; /* halus dikit */
}

/* OVERLAY GELAP (BIAR TEXT KEBACA) */
.full-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.2),
        transparent
    );
}

/* TEXT */
.hero-text {
    position: absolute;
    bottom: 70px;
    left: 80px;

    color: #fff;
    max-width: 420px;

    z-index: 2; /* di atas overlay */
}

/* TITLE */
.hero-text h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* DESC */
.hero-text p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .full-hero {
        padding: 0 20px;
    }

    .full-hero img {
        height: 420px;
    }

    .hero-text {
        left: 30px;
        bottom: 30px;
        max-width: 85%;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }
}
/* =========================
   WHY CENTER SECTION
========================= */

.why-center {
    padding: 100px 60px;
    text-align: center;
}

/* TITLE */
.why-center h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

/* GRID */
.why-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* ITEM */
.why-item {
    width: 30%;
}

/* ICON */
.why-item .icon {
    font-size: 26px;
    margin-bottom: 15px;

    filter: grayscale(100%);
}

/* TITLE ITEM */
.why-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* TEXT */
.why-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .why-center {
        padding: 60px 20px;
    }

    .why-grid {
        flex-direction: column;
        gap: 30px;
    }

    .why-item {
        width: 100%;
    }
}

/* 🔥 AMARE EXPERIENCE */
/* =========================
   HERO
========================= */

.exp-hero {
    position: relative;
}

.exp-hero img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.exp-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    max-width: 400px;
}

.exp-overlay h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.exp-overlay p {
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   INTRO
========================= */

.exp-intro {
    padding: 80px 0;
    text-align: center;
}

.exp-intro h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.exp-intro p {
    max-width: 600px;
    margin: auto;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   SPLIT
========================= */

.exp-split {
    display: flex;
    padding: 80px 60px;
    gap: 50px;
    align-items: center;
}

.exp-text {
    width: 50%;
}

.exp-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.exp-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.exp-image {
    width: 50%;
}

.exp-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/* =========================
   POINTS
========================= */

.exp-points {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 80px 0;
    text-align: center;
}

.point h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.point p {
    font-size: 13px;
    color: #666;
}


/* =========================
   FULL IMAGE
========================= */

.exp-full {
    position: relative;
}

.exp-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.exp-full-text {
    position: absolute;
    bottom: 40px;
    left: 60px;
    color: #fff;
}

.exp-full-text h2 {
    font-size: 28px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .exp-overlay {
        left: 20px;
        bottom: 30px;
    }

    .exp-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .exp-text,
    .exp-image {
        width: 100%;
    }

    .exp-image img {
        height: 320px;
    }

    .exp-points {
        flex-direction: column;
        gap: 30px;
    }

    .exp-full img {
        height: 300px;
    }

}
/* 🔥 DESIGN PHILOSOFY */
/* =========================
   HERO
========================= */

.dp-hero {
    position: relative;
}

.dp-hero img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.dp-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
}

.dp-overlay h1 {
    font-size: 32px;
    font-weight: 500;
}


/* =========================
   INTRO
========================= */

.dp-intro {
    padding: 100px 0;
    text-align: center;
}

.dp-intro h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.dp-intro p {
    max-width: 600px;
    margin: auto;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}


/* =========================
   SPLIT
========================= */

.dp-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.dp-image {
    width: 50%;
}

.dp-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.dp-text {
    width: 50%;
}

.dp-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.dp-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}


/* =========================
   PRINCIPLES
========================= */

.dp-principles {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 100px 0;
    text-align: center;
}

.dp-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.dp-item p {
    font-size: 13px;
    color: #666;
}


/* =========================
   FULL IMAGE
========================= */

.dp-full {
    position: relative;
}

.dp-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.dp-full-text {
    position: absolute;
    bottom: 40px;
    left: 60px;
    color: #fff;
}

.dp-full-text h2 {
    font-size: 28px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .dp-overlay {
        left: 20px;
        bottom: 30px;
    }

    .dp-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .dp-image,
    .dp-text {
        width: 100%;
    }

    .dp-image img {
        height: 320px;
    }

    .dp-principles {
        flex-direction: column;
        gap: 30px;
    }

    .dp-full img {
        height: 300px;
    }

}
/* =========================
   PRIVACY HERO
========================= */

.privacy-hero {
    height: 320px;
    background: #111;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.privacy-hero-text h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-hero-text p {
    color: #ccc;
    font-size: 14px;
    max-width: 400px;
}

/* =========================
   CONTENT
========================= */

.privacy-content {
    padding: 80px 0;
}

/* container biar enak dibaca */
.privacy-container {
    max-width: 800px;
}

/* tiap section */
.privacy-item {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* judul */
.privacy-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* isi */
.privacy-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .privacy-hero {
        padding: 0 20px;
        height: 260px;
    }

    .privacy-hero-text h1 {
        font-size: 28px;
    }

    .privacy-content {
        padding: 50px 20px;
    }

}
.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #555;
}

/* checkbox posisi enak */
.checkbox-wrap input {
    margin-top: 3px;
}

/* link privacy */
.privacy-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: 0.2s;
}

/* hover biar elegan */
.privacy-link:hover {
    opacity: 0.7;
}
/* =========================
   HERO (lebih elegan)
========================= */

.privacy-hero {
    background: #111;
    padding: 120px 0 80px;
}

.privacy-hero-inner h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-hero-inner p {
    color: #aaa;
    font-size: 14px;
}

/* =========================
   CONTENT
========================= */

.privacy-content {
    padding: 100px 0;
}

/* container */
.privacy-container {
    max-width: 900px;
}

/* block layout */
.privacy-block {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

/* nomor besar */
.privacy-number {
    font-size: 48px;
    font-weight: 500;
    color: #ddd;
    min-width: 60px;
}

/* text */
.privacy-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 600px;
}

/* garis halus bawah */
.privacy-block {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 30px;
}

/* =========================
   HOVER EFFECT (halus)
========================= */

.privacy-block:hover .privacy-number {
    color: #000;
    transition: 0.3s;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .privacy-hero {
        padding: 80px 20px 50px;
    }

    .privacy-hero-inner h1 {
        font-size: 28px;
    }

    .privacy-content {
        padding: 60px 20px;
    }

    .privacy-block {
        flex-direction: column;
        gap: 10px;
    }

    .privacy-number {
        font-size: 28px;
    }

}
/* ===== RESET NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

     padding: 23px 32px;
    background: #fff;
    z-index: 10000;
   
}

/* LOGO */
.logo img {
    height: 30px;
    display: block;
}

/* MENU */
.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}
.nav-links a {
    font-size: 12px;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: #111;
    white-space: nowrap;
     line-height: normal;
    padding: 10px 0;
    display: inline-block;
    align-items: center;
}
.nav-links a:hover {
    color: #888;
}



/* ===== SEARCH ICON ===== */
.search-icon {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: 0.2s;
}

.search-icon:hover {
    opacity: 1;
}
/* FIX biar ga ketabrak */
body {
    padding-top: 85px;
}
.lang-full {
    display: none;
}
/* ===== MATIKAN SISA LAMA ===== */

/* dropdown lama (yang kebuka terus) */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;

    background: #fff;
    padding: 28px 40px;

    display: none;
    pointer-events: none;

    border-top: 1px solid #515050;
    z-index: 10000;
}
.mega-menu.active {
    display: block;
    pointer-events: auto;
}
.mega-inner {
    display: flex;
    gap: 50px;
    justify-content: flex-end; 
}

.mega-inner a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

.mega-inner a:hover {
    color: #888;
}
/* search lama */
.search-box {
    display: none;
}

/* mobile menu lama */
.mobile-menu,
.menu-overlay {
    display: none;
}


.lang-wrapper {
    position: relative;
}


/* ===== LANG DROPDOWN FIX CLEAN ===== */
.lang-wrapper {
    position: relative;
}

.lang-trigger {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #111;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;

    background: #fff;
    display: none;
    flex-direction: column;

    padding: 8px 0;
    min-width: 50px;

    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.lang-dropdown.active {
    display: flex;
}

.lang-dropdown a {
    padding: 6px 12px;
    font-size: 12px;
    color: #111;
    text-decoration: none;
    text-align: right;
}

.lang-dropdown a:hover {
    color: #888;
    background: transparent;
}
.lang-mega {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;

    background: #fff;
    padding: 19px 40px;

    display: none;
    z-index: 10000;
    border-top: 1px solid #515050; 
}

.lang-mega.active {
    display: block;
}
.lang-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center; /* 🔥 ini penting */
    gap: 30px;
    height: 40px; /* 🔥 samakan tinggi */
}
.lang-inner {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.lang-inner a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

.lang-inner a:hover {
    color: #888;
}
.search-panel {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;

    background: #fff;
    padding: 20px 40px;

    display: none;
    z-index: 10000;

    border-top: 1px solid #d0d0d0;
}

.search-panel.active {
    display: block;
}

.search-inner {
    display: flex;
   justify-content: flex-start;
}

.search-inner input {
    width: 100%;
max-width: 600px; 
    border: none;
    border-bottom: 1px solid #111;
    outline: none;
    font-size: 14px;
    padding: 5px 0;
}
.search-inner input {
    font-size: 18px;
    border-bottom: 1px solid #aaa;
    padding: 10px 0;
}
/* =========================
MOBILE FINAL 
========================= */
@media (max-width: 768px){

    .nav-links{
        display: none !important;
    }

    .search-icon{
        display: none !important;
    }

}
/* ===== NAVBAR ===== */
.navbar-custom{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    z-index: 10000;
}

.logo{ flex: 1; }


/* ===== HAMBURGER ===== */
.hamburger{
     display: none;
    width: 24px;
    height: 2px;
    background: #111;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hamburger::before,
.hamburger::after{
    content:"";
    position:absolute;
    width:24px;
    height:2px;
    background:#111;
    left:0;
    transition: all 0.25s ease;
}

.hamburger::before{ top:-7px; }
.hamburger::after{ top:7px; }

/* ACTIVE → X */
.hamburger.active{
    background: transparent;
}

.hamburger.active::before{
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active::after{
    transform: rotate(-45deg);
    top: 0;
}


/* ===== MOBILE MENU ===== */
.mobile-menu{
       position: fixed;
    top: 60px;
    left: 0;
    width: 100%;

    background: #fff;
    padding: 34px 24px;

    display: flex;
    flex-direction: column;
    gap: 22px;

    border-top: 1px solid #e9e9e9;

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;

    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 9999;
}

.mobile-menu.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== STAGGER ===== */
.mobile-menu > *{
    opacity: 0;
    transform: translateY(-6px);
    transition: 0.25s ease;
}

.mobile-menu.active > *{
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active > *:nth-child(1){ transition-delay: .03s }
.mobile-menu.active > *:nth-child(2){ transition-delay: .06s }
.mobile-menu.active > *:nth-child(3){ transition-delay: .09s }
.mobile-menu.active > *:nth-child(4){ transition-delay: .12s }
.mobile-menu.active > *:nth-child(5){ transition-delay: .15s }
.mobile-menu.active > *:nth-child(6){ transition-delay: .18s }
.mobile-menu.active > *:nth-child(7){ transition-delay: .21s }
.mobile-menu.active > *:nth-child(8){ transition-delay: .24s }

/* ===== SEARCH ===== */
.mobile-search input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #222;
    padding: 10px 0 8px;
    font-size: 16px;
    letter-spacing: 0.3px;
    outline: none;
}

.mobile-search input::placeholder{
    color: #888;
    font-weight: 300;
}

/* ===== TEXT ===== */
.mobile-menu a,
.mobile-parent{
    font-size: 16px;
    letter-spacing: 0.6px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
}

/* ===== GROUP ===== */
.mobile-group{
    display: flex;
    flex-direction: column;
}

/* ===== DROPDOWN ===== */
.mobile-parent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ===== CHILD ===== */
.mobile-child{
    display: none;
    flex-direction: column;
    margin-top: 12px;
    gap: 12px;
}

.mobile-child.active{
    display: flex;
}

.mobile-child a{
    font-size: 14px;
    color: #777;
    padding-left: 10px;
    transition: 0.2s;
}

.mobile-child a:hover{
    color: #111;
}

/* ===== ARROW ===== */
.arrow{
    width: 6px;
    height: 6px;
    border-right: 1px solid #111;
    border-bottom: 1px solid #111;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.mobile-parent.active .arrow{
    transform: rotate(-135deg);
}

/* ===== LANGUAGE ===== */
.lang-parent{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== BODY OFFSET ===== */
body{
    padding-top: 60px;
}

.nav-links{
    display: flex;
}

.search-icon{
    display: flex;
}

@media (max-width: 768px){
    .hamburger{
        display: block;
    }
}
@media (max-width: 768px){

    .navbar-custom{
        padding: 0 12px !important; /* 🔥 dipersempit */
    }

}
@media (max-width: 768px){

    .navbar-custom{
        height: 60px;
        display: flex;
        align-items: center !important; /* 🔥 ini kunci */
    }

    .logo img{
        display: block;
    }

    .hamburger{
        margin-top: 0;
    }

}
html {
    overflow-y: scroll;
}
@media (max-width: 768px){

/* 🔥 semua section utama */
section,
div {
    box-sizing: border-box;
}

/* 🔥 paksa semua wrapper punya jarak */
.wrapper,
.container,
.grid3,
.grid2,
.center-text,
.about-split,
.exp-split,
.dp-split,
.why-amare,
.why-center,
.exp-intro,
.dp-intro,
.privacy-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* 🔥 semua gambar ikut dalam */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

}

/* kasih jarak antara EN dan icon */
.search-toggle{
    margin-left: 20px;
}

.search-panel{
    display: none;
    background: #fff;
    padding: 20px 40px;
    border-top: 1px solid #eee;
}

.search-panel.active{
    display: block;
}

.search-panel input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
}
/* GRID */
.search-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */
.search-card{
    display: block;
    text-decoration: none;
    color: #111;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

/* HOVER */
.search-card:hover{
    transform: translateX(5px);
}

/* TYPE */
.search-type{
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

/* TITLE */
.search-card h3{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

/* MOBILE */
@media(max-width:768px){
    .search-grid{
        grid-template-columns: 1fr;
    }
}

/* =========================
   COMING SOON
========================= */

.coming-soon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    text-align: center;
}

.coming-container{
    max-width: 500px;
    padding: 0 20px;
}

.coming-container h1{
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.coming-container p{
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.coming-container a{
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.coming-container a:hover{
    background: #000;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px){
    .coming-container h1{
        font-size: 28px;
    }

    .coming-container p{
        font-size: 14px;
    }
}