*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #0f0f0f;
    --ink-muted: #5a5a5a;
    --ink-faint: #b0b0b0;
    --canvas: #fafaf7;
    --paper: #f2f0eb;
    --gold: #c8a96e;
    --gold-light: #e8d5a8;
    --gold-dim: rgba(200, 169, 110, 0.15);
    --accent: #1a3a2a;
    --accent-mid: #2d5c42;
    --line: rgba(15, 15, 15, 0.1);
    --r: 2px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── CURSOR ─────────────────────────────── */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: multiply;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s ease, opacity 0.3s;
    opacity: 0.6;
    mix-blend-mode: multiply;
}

/* ─── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, padding 0.4s;
}

nav.scrolled {
    border-bottom-color: var(--line);
    padding: 16px 60px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: var(--ink);
    color: var(--canvas);
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--accent);
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--canvas);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ─── HERO ─────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding-top: 80px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 90px 60px 90px 60px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.1rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
}

.hero-h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 2.1rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--accent-mid);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--accent-mid);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 400px;
    line-height: 1.75;
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
}

.btn-primary {
    padding: 14px 36px;
    background: var(--ink);
    color: var(--canvas);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-ghost {
    padding: 14px 36px;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--canvas);
}

.hero-right {
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.2s 0.3s forwards;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--paper);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-img-wrap img.loaded {
    transform: scale(1);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 42, 0.25) 0%, transparent 60%);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-stat-badge {
    position: absolute;
    bottom: 60px;
    left: 40px;
    background: var(--canvas);
    border: 1px solid var(--line);
    padding: 20px 28px;
    z-index: 10;
    animation: fadeUp 0.9s 1s forwards;
    opacity: 0;
}

.hero-stat-badge .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-badge .label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 4px;
}

/* scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-faint);
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}

.scroll-hint .line {
    width: 40px;
    height: 1px;
    background: var(--ink-faint);
    position: relative;
    overflow: hidden;
}

.scroll-hint .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: lineSlide 2s 1.8s infinite;
}

/* ─── TICKER ──────────────────────────────── */
.ticker {
    background: var(--accent);
    color: var(--gold-light);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-right: 60px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

.ticker-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
}

/* ─── SECTION BASE ────────────────────────── */
section {
    padding: 120px 60px;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--accent-mid);
}

/* ─── SERVICES ────────────────────────────── */
#services {
    background: var(--canvas);
    position: relative;
}

#services::before {
    content: 'SERVICES';
    position: absolute;
    top: 60px;
    right: 60px;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 300;
    color: var(--paper);
    letter-spacing: -0.05em;
    user-select: none;
    line-height: 1;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.services-desc {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.8;
    font-weight: 300;
    align-self: end;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
}

.service-card {
    background: var(--canvas);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: var(--paper);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 28px;
    transition: color 0.4s;
}

.service-card:hover .service-num {
    color: var(--gold-light);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--ink);
    line-height: 1.2;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-arrow {
    opacity: 1;
}

/* ─── STATS ───────────────────────────────── */
#stats {
    background: var(--accent);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 50%;
}

#stats::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(200, 169, 110, 0.08);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 60px 40px;
    background: var(--accent);
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number-fixed {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── APPROACH ────────────────────────────── */
#approach {
    background: var(--canvas);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.approach-img {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--paper);
}

.approach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    position: absolute;
    inset: 0;
}

.approach-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 70%, var(--canvas));
}

.approach-content {
    padding: 100px 80px 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-steps {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.approach-step {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
    transition: background 0.3s;
    cursor: default;
}

.approach-step:hover {
    padding-left: 12px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: var(--gold);
    padding-top: 2px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* ─── TESTIMONIALS ────────────────────────── */
#testimonials {
    background: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 30rem;
    font-weight: 300;
    color: rgba(200, 169, 110, 0.06);
    line-height: 1;
    user-select: none;
}

.testimonials-header {
    max-width: 600px;
    margin: 0 auto 72px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--canvas);
    padding: 40px 36px;
    border: 1px solid var(--line);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 28px;
}

.testi-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testi-stars span {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ─── CLIENTS ─────────────────────────────── */
#clients {
    background: var(--canvas);
    padding: 80px 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.clients-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: center;
    margin-bottom: 48px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.client-logo:hover {
    color: var(--ink);
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logo {
    /* Memastikan wrapper logo sejajar dan rapi */
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    /* Batasi ukuran logo agar tidak terlalu besar dan seragam */
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Memastikan proporsi logo tidak distorsi */

    /* Efek visual pengganti warna teks (membuat logo abu-abu & sedikit pudar) */
    filter: grayscale(100%) opacity(60%);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.client-logo img:hover {
    /* Mengembalikan warna asli logo dan membuatnya jelas saat di-hover */
    filter: grayscale(0%) opacity(100%);

    /* Opsional: Efek sedikit membesar saat di-hover */
    transform: scale(1.05);
}

/* ─── CTA ─────────────────────────────────── */
#cta {
    background: var(--ink);
    padding: 140px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 169, 110, 0.1);
    border-radius: 50%;
}

#cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border: 1px solid rgba(200, 169, 110, 0.05);
    border-radius: 50%;
}

.cta-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--canvas);
    line-height: 1.1;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 52px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* --- PERUBAHAN DIMULAI DI SINI --- */
.cta-form {
    display: flex;
    flex-direction: column; /* Mengubah layout menjadi bertumpuk */
    gap: 16px; /* Memberikan jarak yang konsisten antar input */
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--canvas);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box; /* Mencegah padding merusak lebar 100% */
}

/* Style khusus untuk Textarea agar bisa di-resize vertikal */
textarea.cta-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-input:focus {
    border-color: var(--gold);
}

.cta-btn {
    width: 100%; /* Tombol memenuhi lebar form */
    padding: 16px 32px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.cta-btn:hover {
    background: #e0c283; /* Pastikan ada nilai hex fallback jika var(--gold-light) tidak ada */
}

/* ─── FOOTER ──────────────────────────────── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 60px 40px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--canvas);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col-title {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from {
    opacity: 0;
    transform: translateY(24px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
    opacity: 0;
    }

    to {
    opacity: 1;
    }
}

@keyframes ticker {
    from {
    transform: translateX(0);
    }

    to {
    transform: translateX(-50%);
    }
}

@keyframes lineSlide {
    0% {
    left: -100%;
    }

    50% {
    left: 100%;
    }

    100% {
    left: 100%;
    }
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    nav {
    padding: 20px 32px;
    }

    nav.scrolled {
    padding: 14px 32px;
    }

    .nav-links {
    display: none;
    }

    .nav-cta {
    display: none;
    }

    .hamburger {
    display: flex;
    }

    #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    }

    .hero-left {
    padding: 90px 32px 60px;
    }

    .hero-right {
    min-height: 50vw;
    }

    .hero-right::before,
    .hero-img-wrap {
    clip-path: none;
    }

    .scroll-hint {
    left: 32px;
    }

    #services::before {
    display: none;
    }

    .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    section {
    padding: 80px 32px;
    }

    .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    #approach {
    grid-template-columns: 1fr;
    }

    .approach-img {
    min-height: 400px;
    }

    .approach-content {
    padding: 60px 32px;
    }

    .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    }

    .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    }

    #cta {
    padding: 100px 32px;
    }

    #stats {
    padding: 80px 32px;
    }

    footer {
    padding: 60px 32px 32px;
    }

    .clients-logos {
    gap: 32px;
    }

    #clients {
    padding: 60px 32px;
    }
}

@media (max-width: 640px) {
    .services-grid {
    grid-template-columns: 1fr;
    }

    .stats-grid {
    grid-template-columns: 1fr 1fr;
    }

    .stat-item {
    padding: 40px 24px;
    }

    .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    }

    .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    }

    .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    }

    .cta-form {
    flex-direction: column;
    }

    .cta-input {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    }
}

/* Pastikan container logo merespon dengan baik di dalam flexbox navbar Anda */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    /* Buat tinggi logo lebih besar dari tinggi navbar (70px) */
    height: 190px;
    width: auto;
    object-fit: contain;

    /* Buat gambar melayang agar tidak mendorong ukuran navbar */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Menjaga logo tetap berada di tengah secara vertikal */
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    /* Memberi jarak antara logo dan tagline */
}

.footer-logo img {
    max-width: 150px;
    /* Atur lebar maksimal yang pas untuk footer */
    height: auto;
    object-fit: contain;
}

/* ─── LANGUAGE SWITCHER ──────────────────── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--ink-faint);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn.active {
    color: var(--ink);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--ink);
}

.lang-divider {
    color: var(--line);
    font-size: 0.8rem;
}

.mobile-lang-switcher {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-lang-switcher .lang-btn {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {

    /* Tambahkan class ini ke dalam media query Anda yang sudah ada */
    .nav-right {
    display: none;
    }

    /* sisa css mobile Anda... */
}