@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #3ab6ff;
    --accent-dark: #0091ff;
    --accent-soft: rgba(58, 182, 255, 0.1);
    --accent-mid: rgba(58, 182, 255, 0.18);
    --bg: #f5faff;
    --bg2: #ffffff;
    --card-bg: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: rgba(58, 182, 255, 0.2);
    --shadow: 0 8px 40px rgba(58, 182, 255, 0.12);
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 18px 0;
    background: rgba(245, 245, 251, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 24px rgba(58, 182, 255, 0.1);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    flex-shrink: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    /* Sejajarkan vertikal */
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-active {
    background: var(--text) !important;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-active:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 32px 60px;
    background: linear-gradient(160deg, #ffffff 0%, #eef8ff 50%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

/* decorative blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 182, 255, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 182, 255, 0.1), transparent 70%);
    bottom: -60px;
    left: -60px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- Left text --- */
.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text);
}

.hero-title .accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.hero-bio {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.btn-pill {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(58, 182, 255, 0.3);
}

.btn-pill:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(58, 182, 255, 0.4);
}

.hero-arrow {
    font-size: 18px;
    color: var(--text-muted);
    letter-spacing: -2px;
}

/* --- Right photo --- */
.hero-photo-wrap {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.hero-photo-ring {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-photo {
    width: 260px;
    height: 300px;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: 0 20px 60px rgba(58, 182, 255, 0.2);
    background: #fff;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.hero-photo-label {
    background: var(--text);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 0 0 16px 16px;
    letter-spacing: 0.5px;
    margin-top: -4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-photo-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 80px;
    height: 80px;
    animation: rotateBadge 10s linear infinite;
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    padding: 80px 32px;
    background: var(--bg);
}

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* --- Project Cards (Left) --- */
.gallery-cards {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 20px 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(58, 182, 255, 0.18);
}

.project-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.proj-img {
    height: 130px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef8ff 0%, #d0eaff 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.proj-img::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: rgba(58, 182, 255, 0.25);
}

.proj-img:hover::after {
    color: var(--accent);
    transform: scale(1.1);
    transition: all 0.3s;
}

.project-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
}

/* --- Gallery Description (Right) --- */
.gallery-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

.gallery-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
}

.gallery-title {
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text);
}

.gallery-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 280px;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s, opacity 0.2s;
}

.see-all-link:hover {
    gap: 14px;
    opacity: 0.8;
}

.gallery-brand-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(58, 182, 255, 0.1);
    margin-top: 4px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), #70d6ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.badge-text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===========================
   BOTTOM: EXPERTISE + CONTACT
   =========================== */
.bottom-section {
    padding: 60px 32px 80px;
    background: linear-gradient(160deg, #eef8ff, #e0f2fe);
}

.bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* --- Expertise --- */
.expertise-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.expertise-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
}

.expertise-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.average-badge {
    background: var(--text);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    white-space: nowrap;
    align-self: center;
    letter-spacing: 0.5px;
}

.tools-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.tool-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tool-icon:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tool-icon.ps {
    background: linear-gradient(135deg, #001e36, #31a8ff);
    color: #31a8ff;
    font-style: italic;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
}

.tool-icon.canva {
    background: linear-gradient(135deg, #00c4cc, #7b2ff7);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.tool-icon.lr {
    background: linear-gradient(135deg, #001e36, #4bbaff);
    color: #4bbaff;
    font-size: 18px;
    font-weight: 700;
}

.tool-icon.ae {
    background: linear-gradient(135deg, #001e36, #cf96fd);
    color: #cf96fd;
    font-size: 20px;
    font-weight: 700;
}

/* --- Contact --- */
.contact-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 4px;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-muted);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 2px 10px rgba(124, 106, 247, 0.06);
    transition: all 0.3s;
}

.contact-list li:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(124, 106, 247, 0.12);
}

.contact-list li i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list li strong {
    color: var(--text);
}

/* ===========================
   ORDER BUTTON (nav & hero)
   =========================== */
.nav-order {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #70d6ff) !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 14px rgba(58, 182, 255, 0.35);
}

.nav-order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(124, 106, 247, 0.45) !important;
    opacity: 1 !important;
}

.btn-order {
    background: #fff !important;
    color: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.btn-order:hover {
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(58, 182, 255, 0.35) !important;
}

/* ===========================
   ORDER CTA SECTION
   =========================== */
.order-cta {
    padding: 80px 32px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.order-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.order-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.order-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.order-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(58, 182, 255, 0.2);
    border: 1px solid rgba(58, 182, 255, 0.4);
    color: #3ab6ff;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.order-cta-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.order-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 460px;
}

.order-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.order-perks li i {
    color: #3ab6ff;
    width: 20px;
    height: 20px;
    background: rgba(58, 182, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.order-cta-action {
    flex-shrink: 0;
}

.order-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    min-width: 260px;
}

.order-price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.order-price-tag span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.order-price-tag strong {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.1;
}

.btn-order-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent), #70d6ff);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(58, 182, 255, 0.5);
    width: 100%;
    justify-content: center;
}

.btn-order-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(124, 106, 247, 0.6);
    opacity: 0.95;
}

.order-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 900px) {
    .order-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .order-cta-badge {
        margin: 0 auto;
    }

    .order-cta-text p {
        margin: 0 auto;
    }

    .order-perks {
        align-items: center;
    }

    .order-cta-card {
        width: 100%;
        max-width: 340px;
    }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 12px;
    padding: 20px;
    letter-spacing: 0.5px;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {

    .hero-inner,
    .gallery-inner,
    .bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-bio {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-photo-wrap {
        order: -1;
    }

    .gallery-desc {
        align-items: center;
    }

    .gallery-body {
        max-width: 100%;
    }

    .gallery-brand-badge {
        margin: 0 auto;
    }

    .expertise-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tools-card {
        justify-content: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 20px;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(245, 245, 251, 0.97);
        padding: 24px 32px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 560px) {
    .project-images {
        grid-template-columns: 1fr;
    }

    .proj-img {
        height: 100px;
    }

    .hero-photo {
        width: 200px;
        height: 240px;
    }
}