@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

@font-face {
    font-family: "Agency FB";
    src: url("/fonts/agencyfb.woff2") format("woff2"),
        url("/fonts/agencyfb.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --black: #0b0b0b;
    --ink: #111111;
    --gold: #e1c547;
    --gold-bright: #e1c547;
    --white: #ffffff;
    --muted: #c9c9c9;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    --border-gold: rgba(146, 111, 52, 0.25);
    --bg-gold-light: rgba(146, 111, 52, 0.04);
    --bg-gold-medium: rgba(146, 111, 52, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, system-ui, -apple-system, Segoe UI, Roboto,
        sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: saturate(120%) blur(10px);
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-bright);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 20px;
}

.brand img {
    height: 56px;
}

.menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.menu a {
    color: var(--gold-bright);
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    padding: 8px 0;
}

.menu a:hover {
    opacity: 1;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-bright);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.cta {
    background: var(--gold-bright);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 800;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 197, 71, 0.3);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 197, 71, 0.4);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    padding-top: 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 100px 0;
}

.divider {
    width: 2px;
    height: 300px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold-bright),
        transparent
    );
    margin: 0 10px;
}

.hero h1 {
    font-family: "Agency FB", sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.1;
    margin: 0 0 20px;
    color: var(--gold-bright);
    font-weight: bold;
    font-style: italic;
}

.hero p {
    color: var(--black);
    font-size: 18px;
    margin: 0 0 32px;
    line-height: 1.6;
}

.hero .actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 800;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    text-align: center;
}

.btn.primary {
    background: var(--gold-bright);
    color: #000;
    box-shadow: 0 4px 12px rgba(225, 197, 71, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 197, 71, 0.4);
}

.btn.ghost {
    background: transparent;
    color: var(--gold-bright);
    border: 2px solid var(--gold-bright);
}

.btn.ghost:hover {
    background: var(--gold-bright);
    color: #000;
}

.hero .hero-logo {
    display: flex;
    justify-content: center;
}

.hero .hero-logo img {
    max-width: 450px;
    width: 100%;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(146, 111, 52, 0.2); */
    transition: transform 0.3s ease;
}

.hero .hero-logo img:hover {
    transform: scale(1.02);
}

.wa-form {
    background: var(--bg-gold-light);
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
}

.wa-form input,
.wa-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
}

.wa-form button {
    width: 100%;
    margin-top: 10px;
}

/* Section shells */
section {
    padding: 80px 0;
    border-top: 1px solid rgba(146, 111, 52, 0.15);
}

h2.section-title {
    font-family: "Agency FB", sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    margin: 0 0 20px;
    color: var(--gold-bright);
    text-align: center;
    font-weight: bold;
}

.section-sub {
    font-family: "Agency FB", sans-serif;
    font-size: 24px;
    color: var(--black);
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
    line-height: 1.4;
}

/* Cards */
.grid {
    display: grid;
    gap: 24px;
}

.col-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.col-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    font-family: "Agency FB", sans-serif;
    background: var(--white);
    border: 1px solid rgba(146, 111, 52, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--gold-bright);
}

.card h3 {
    margin: 12px 0 16px;
    font-size: 22px;
    color: var(--gold-bright);
    font-weight: bold;
}

.card p {
    font-size: 18px;
    margin: 0;
    color: var(--black);
    line-height: 1.5;
}

.badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #000;
    background: var(--gold-bright);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 800;
}

/* Timeline (Alur Klien) */
.timeline {
    font-size: 18px;
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-bright), transparent);
    border-radius: 2px;
}

.step {
    position: relative;
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--bg-gold-light);
    border-radius: 12px;
    border-left: 4px solid var(--gold-bright);
    transition: all 0.3s ease;
    font-size: 20px;
    /* font-weight: bold; */
}

.step:hover {
    background: var(--bg-gold-medium);
    transform: translateX(4px);
}

.step::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold-bright);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold-bright);
}

/* Article list */
.article {
    padding: 24px;
    border: 1px solid rgba(146, 111, 52, 0.3);
    border-radius: 16px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--gold-bright);
}

.article h3 {
    color: var(--gold-bright);
    font-size: 24px;
    margin-bottom: 12px;
    font-family: "Agency FB", sans-serif;
    font-weight: bold;
}

.article p {
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.6;
}

.article small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

/* CTA band */
.cta-band {
    background: linear-gradient(
        135deg,
        var(--bg-gold-light),
        var(--bg-gold-medium)
    );
    border: 1px solid rgba(146, 111, 52, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.cta-band h3 {
    margin: 0;
    color: var(--gold-bright);
    font-family: "Agency FB", serif;
    font-size: 28px;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-gold);
    color: var(--white);
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.footer-cols {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 40px;
    margin-bottom: 20px;
    /* transition: color 0.3s ease, fill 0.3s ease; */
}

.footer-cols h4 {
    color: var(--gold-bright);
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
}
.footer-cols a,
.footer-cols p,
.footer-cols nav {
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
}

.footer-cols a {
    transition: color 0.3s ease;
}

.footer-cols a:hover {
    color: var(--gold-bright);
}

.footer a.instagram-link {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a.instagram-link:hover {
    color: var(--gold-bright); /* opsionxal efek hover */
}

.footer-cols nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-cols nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-cols nav a:hover {
    color: var(--gold-bright);
}

.copy {
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(146, 111, 52, 0.2);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .divider {
        height: 2px;
        width: 100px;
        margin: 20px auto;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .col-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .col-3 {
        grid-template-columns: 1fr;
    }

    .menu {
        display: none;
    }

    .cta-band {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero .actions,
    .cta-band > div:last-child {
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }

    .hero-inner {
        padding: 60px 0;
    }

    .card {
        padding: 24px 20px;
    }

    .timeline {
        padding-left: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Span styling */
span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(255, 252, 252, 0.25);
    font-family: Arial, Helvetica, sans-serif;
}

/* Enhanced hover effects */
.card,
.article,
.btn {
    cursor: pointer;
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
