/* ============================================
   GINARA BUMI KONSTRUKSI — Premium Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

/* ===== TOKENS ===== */
:root {
    --dark: #0e1410;
    --dark-2: #161e16;
    --dark-3: #1e2a1e;
    --light: #f4f2ec;
    --light-2: #eeeae0;
    --white: #ffffff;
    --text: #1e2820;
    --muted: #7a7e78;
    --line: #dcdcd4;
    --accent: #b8943f;
    --accent-2: #d4ae62;
    --green: #25d366;
    --max: 1200px;
    --radius: 4px;
    --ease: cubic-bezier(.22, .68, 0, 1.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ===== LAYOUT ===== */
.container {
    width: min(100% - 48px, var(--max));
    margin-inline: auto;
}

section {
    padding: 120px 0;
}

/* ===== TYPOGRAPHY ===== */
h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 800;
}

h2 span {
    color: var(--muted);
}

h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--accent);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.section-heading>p {
    max-width: 360px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

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

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: all .25s ease;
}

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

.btn-primary:hover {
    background: var(--accent-2);
    border-color: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 148, 63, .3);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .25);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .7);
    color: white;
}

.btn-dark {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--dark-3);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.btn-outline-light {
    background: transparent;
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .35);
}

.btn-outline-light:hover {
    border-color: white;
    color: white;
}


/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

.header.scrolled {
    background: rgba(14, 20, 16, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.nav {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1.5px solid rgba(184, 148, 63, .5);
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
    border-radius: 2px;
    transition: .2s ease;
}

.logo:hover .logo-mark {
    background: var(--accent);
    color: var(--dark);
}

.logo strong,
.logo small {
    display: block;
    color: white;
}

.logo strong {
    font-size: 12.5px;
    letter-spacing: .13em;
    font-weight: 700;
}

.logo small {
    font-size: 8px;
    letter-spacing: .22em;
    opacity: .45;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: .2s ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, .06);
}

.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--accent);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: .2s ease;
    flex-shrink: 0;
}

.nav-wa:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: .3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark);
    color: white;
}

.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .45;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
}

/* Decorative rings */
.hero::before {
    content: '';
    position: absolute;
    right: -220px;
    top: 50%;
    transform: translateY(-55%);
    width: 700px;
    height: 700px;
    border: 1px solid rgba(184, 148, 63, .15);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border: 1px solid rgba(184, 148, 63, .08);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 8px 14px;
    border-radius: 100px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

.hero h1 {
    max-width: 860px;
    font-size: clamp(46px, 7.5vw, 96px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 800;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
}

.hero-text {
    max-width: 560px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .55);
    font-size: 15.5px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    width: fit-content;
}

.hero-stat {
    padding-right: 40px;
}

.hero-stat strong {
    display: inline;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.05em;
    color: white;
}

.hero-stat>span {
    font-size: 22px;
    color: var(--accent);
    font-weight: 700;
}

.hero-stat p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
    letter-spacing: .02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    margin-right: 40px;
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .3);
    font-size: 9px;
    letter-spacing: .18em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .0), rgba(255, 255, 255, .35));
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: .9;
    }
}


/* ============================================
   MARQUEE
   ============================================ */

.marquee-section {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
}

.marquee-content span {
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 8px !important;
    letter-spacing: 0 !important;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

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


/* ============================================
   INTRO
   ============================================ */

.intro {
    background: var(--light);
    padding: 100px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.intro p {
    max-width: 500px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
}

.feature-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: rgba(184, 148, 63, .12);
    color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ============================================
   SERVICES
   ============================================ */

.services {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.service-card {
    position: relative;
    padding: 44px 40px 40px;
    border-right: 1px solid var(--line);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card:last-child {
    border-right: none;
}

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

.service-card.featured {
    background: var(--dark);
    color: white;
    border-color: var(--dark-3);
}

.service-card.featured:hover {
    background: #151e15;
}

.service-number {
    position: absolute;
    top: 22px;
    right: 28px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    opacity: .5;
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, .25);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(184, 148, 63, .12);
    color: var(--accent);
    margin-bottom: 28px;
}

.service-card.featured .service-icon-wrap {
    background: rgba(184, 148, 63, .15);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-card>p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
}

.service-card.featured>p {
    color: rgba(255, 255, 255, .5);
}

.service-card ul {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-bottom: 28px;
    flex: 1;
}

.service-card.featured ul {
    border-color: rgba(255, 255, 255, .1);
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--text);
}

.service-card.featured li {
    border-color: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .65);
}

.service-card li span {
    color: var(--accent);
    font-weight: 700;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .02em;
    transition: gap .2s ease;
    margin-top: auto;
}

.service-cta:hover {
    gap: 10px;
}


/* ============================================
   PROCESS
   ============================================ */

.process {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 148, 63, .06) 0%, transparent 65%);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.process-item {
    padding: 40px 30px 40px 0;
    border-right: 1px solid var(--line);
    position: relative;
    transition: .25s ease;
}

.process-item:not(:first-child) {
    padding-left: 30px;
}

.process-item:last-child {
    border-right: none;
}

.process-item:hover {
    background: rgba(255, 255, 255, .6);
    border-radius: 4px;
}

.process-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: white;
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    margin-bottom: 28px;
}

.process-num {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.process-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

/* Connector arrows */
.process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -13px;
    top: 42px;
    color: var(--accent);
    font-size: 16px;
    z-index: 1;
    background: var(--light);
    padding: 2px 0;
}


/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio {
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 14px;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-card {
    overflow: hidden;
    border-radius: 6px;
}

.portfolio-card.card-large {
    grid-column: span 2;
}

.portfolio-card:nth-child(5) {
    grid-column: span 2;
}

.portfolio-visual {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pv-1 {
    background: linear-gradient(135deg, #1a3020 0%, #2d4a35 50%, #1e3828 100%);
}

.pv-2 {
    background: linear-gradient(135deg, #2a2010 0%, #3d3018 50%, #2a2010 100%);
}

.pv-3 {
    background: linear-gradient(135deg, #0e1e2a 0%, #1a2e3d 50%, #0e2030 100%);
}

.pv-4 {
    background: linear-gradient(135deg, #1e1a10 0%, #332a18 50%, #1e1a10 100%);
}

.pv-5 {
    background: linear-gradient(135deg, #101a14 0%, #1e3028 50%, #0e1810 100%);
}

/* Pattern overlays */
.pv-1::before,
.pv-2::before,
.pv-3::before,
.pv-4::before,
.pv-5::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    transition: .35s ease;
}

.portfolio-visual:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .1) 100%);
}

.portfolio-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    width: fit-content;
}

.portfolio-overlay h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}


/* ============================================
   ABOUT
   ============================================ */

.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-inner {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--dark);
    border-radius: 8px;
}

.av-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.av-circle-1 {
    position: absolute;
    top: 40px;
    left: -80px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(184, 148, 63, .2);
    border-radius: 50%;
}

.av-circle-2 {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(184, 148, 63, .12);
    border-radius: 50%;
}

.av-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.av-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.av-badge-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(184, 148, 63, .15);
    color: var(--accent);
    border-radius: 6px;
    flex-shrink: 0;
}

.av-badge strong {
    display: block;
    color: white;
    font-size: 13px;
}

.av-badge span {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
}

.av-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.av-stat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}

.av-stat strong {
    display: block;
    color: white;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.av-stat span {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .05em;
}

.av-label {
    position: absolute;
    top: 32px;
    right: 32px;
    color: rgba(255, 255, 255, .06);
    font-size: 90px;
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: 1;
    user-select: none;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 32px;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(184, 148, 63, .1);
    color: var(--accent);
    border-radius: 6px;
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-size: 13.5px;
    margin-bottom: 2px;
}

.about-value p {
    margin: 0;
    font-size: 12.5px;
    color: var(--muted);
}


/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--dark);
    color: white;
}

.testimonials .section-tag {
    color: var(--accent);
}

.testimonials h2 span {
    color: rgba(255, 255, 255, .4);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: .3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(184, 148, 63, .2);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 52px;
    line-height: .8;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 16px;
    opacity: .6;
}

.testimonial-card>p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 13.5px;
    color: white;
}

.testimonial-author span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4);
}

.testimonial-stars {
    margin-left: auto;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .05em;
}


/* ============================================
   AREA
   ============================================ */

.area {
    background: white;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.area-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 18px 0 24px;
    max-width: 420px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag-badge {
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    background: var(--light);
}

.location-card {
    background: var(--light);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.location-map {
    height: 180px;
    background: var(--dark-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.location-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.map-pin-anim {
    position: relative;
    z-index: 2;
}

.map-pin {
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 4px 20px rgba(184, 148, 63, .4);
}

.map-pin svg {
    transform: rotate(45deg);
}

.map-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1.5px solid rgba(184, 148, 63, .3);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.location-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.loc-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--muted);
}

.location-detail p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
}

.location-detail a {
    color: var(--accent);
    font-weight: 600;
}

.location-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: white;
    font-size: 12.5px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: var(--radius);
    align-self: flex-start;
    transition: .2s ease;
}

.location-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, .3);
}


/* ============================================
   FAQ
   ============================================ */

.faq {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: .45fr 1fr;
    gap: 80px;
    align-items: start;
}

.faq h2 {
    max-width: 300px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background .2s ease;
}

.faq-q:hover {
    background: var(--light);
}

.faq-q[aria-expanded="true"] {
    color: var(--accent);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .3s ease;
    line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
}

.faq-a.open {
    max-height: 200px;
    padding: 0 24px 20px;
}


/* ============================================
   CTA
   ============================================ */

.cta {
    background: var(--dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

/* Gold orb */
.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(184, 148, 63, .12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(44px, 7vw, 86px);
    margin-bottom: 18px;
}

.cta h2 em {
    color: var(--accent);
    font-style: normal;
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
}

.cta p {
    color: rgba(255, 255, 255, .45);
    font-size: 15px;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: .3s ease;
    background: var(--light);
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(184, 148, 63, .1);
    color: var(--accent);
    border-radius: 8px;
    margin-bottom: 8px;
}

.contact-card-wa .contact-card-icon {
    background: rgba(37, 211, 102, .1);
    color: var(--green);
}

.contact-card>span {
    display: block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--muted);
}

.contact-card>strong {
    display: block;
    font-size: 20px;
    letter-spacing: -.02em;
}

.contact-card>small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

a.contact-card:hover {
    background: #f0fef4;
    border-color: var(--green);
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 40px 0;
    background: var(--dark-2);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1.5px solid rgba(184, 148, 63, .4);
    color: var(--accent);
    font-weight: 800;
    font-size: 16px;
    border-radius: 2px;
}

.footer-logo strong {
    display: block;
    color: white;
    font-size: 11.5px;
    letter-spacing: .13em;
}

.footer-logo span {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .08em;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 4px;
}

.footer-links a {
    color: rgba(255, 255, 255, .45);
    font-size: 12.5px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: .2s ease;
}

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

.footer-copy {
    color: rgba(255, 255, 255, .3);
    font-size: 11.5px;
}


/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
    transition: .3s var(--ease);
    position: fixed;
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.07);
    box-shadow: 0 16px 36px rgba(37, 211, 102, .4);
}

.floating-wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: .25s ease;
    pointer-events: none;
}

.floating-wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--dark);
}

.floating-wa:hover .floating-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {

    .nav-menu,
    .nav-wa {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu.active {
        position: fixed;
        top: 90px;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 20px 24px 28px;
        background: rgba(14, 20, 16, .97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        z-index: 99;
    }

    .nav-menu.active .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 6px;
    }

    .intro-grid,
    .about-grid,
    .area-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .service-card.featured {
        border-color: var(--dark-3);
    }

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

    .process-item:nth-child(2) {
        border-right: none;
    }

    .process-item::after {
        display: none;
    }

    .process-item {
        border-bottom: 1px solid var(--line);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .portfolio-card.card-large,
    .portfolio-card:nth-child(5) {
        grid-column: span 2;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .faq h2 {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 32px, var(--max));
    }

    section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(40px, 13vw, 68px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-stat {
        padding-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-card.card-large,
    .portfolio-card:nth-child(5) {
        grid-column: span 1;
    }

    .portfolio-visual {
        height: 220px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .about-visual-inner {
        min-height: 380px;
    }

    .nav {
        height: 72px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}