/* ==========================================================================
   BaliQurbanPro - Profile Company Page CSS
   Minified, critical-path optimized
   ========================================================================== */

/* ── CSS Variables ── */
:root {
    --green: #2d6a4f;
    --green-mid: #40916c;
    --green-light: #74c69d;
    --green-pale: #d8f3dc;
    --cream: #faf8f3;
    --ink: #1a1a1a;
    --ink-muted: #5a5a5a;
    --ink-faint: #999;
    --border: rgba(0,0,0,.08);
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: rgba(250,248,243,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}
.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo-icon svg { color: white; width: 18px; height: 18px; fill: currentColor; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-muted);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
    background: var(--green) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: .3s;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 24px 5vw;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 400;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu .m-cta {
    background: var(--green);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-weight: 500;
    border: none;
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 5vw 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 70% 50%, #d8f3dc55 0%, transparent 70%);
    pointer-events: none;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    color: var(--green);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: .04em;
}
.hero-tag span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
    font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 440px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--green);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s;
    font-family: var(--sans);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s;
    font-family: var(--sans);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-ghost svg { width: 11px; height: 11px; fill: currentColor; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.hero-stat-num {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--green);
    font-weight: 700;
    line-height: 1;
}
.hero-stat-label {
    font-size: 12px;
    color: var(--ink-faint);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.hero-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-badge-icon svg { width: 18px; height: 18px; fill: var(--green); }
.hero-badge-text { font-size: 13px; font-weight: 500; color: var(--ink); }
.hero-badge-sub { font-size: 11px; color: var(--ink-faint); }
.hero-tag2 {
    position: absolute;
    top: 28px;
    right: -16px;
    background: var(--green);
    color: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(45,106,79,.35);
}
.hero-tag2 strong {
    font-family: var(--serif);
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--green);
    padding: 20px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: white; }
.trust-item svg { width: 18px; height: 18px; fill: currentColor; opacity: .8; }
.trust-item span { font-size: 13px; font-weight: 400; opacity: .9; letter-spacing: .02em; }

/* ── SECTION WRAPPER ── */
.section { padding: 100px 5vw; }
.section-alt { background: white; }
.section-center { text-align: center; }
.eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 560px;
    margin: 0 auto 56px;
    font-weight: 300;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.about-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 6px solid var(--cream);
}
.about-content blockquote {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--ink-muted);
    line-height: 1.65;
    border-left: 3px solid var(--green-light);
    padding-left: 20px;
    margin: 24px 0 32px;
}
.founder-sig { display: flex; align-items: center; gap: 14px; }
.founder-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.founder-name { font-weight: 500; font-size: 15px; }
.founder-role { font-size: 13px; color: var(--ink-faint); }

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--green-light); transform: translateY(-4px); }
.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 20px; height: 20px; fill: var(--green); }
.feature-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--ink-muted); font-weight: 300; line-height: 1.7; }

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.25), transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── FAQ ── */
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    gap: 16px;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .3s;
}
.faq-icon svg { width: 11px; height: 11px; fill: var(--green); transition: transform .3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-a p { padding-bottom: 24px; font-size: 15px; color: var(--ink-muted); font-weight: 300; line-height: 1.75; }
.faq-item.open .faq-icon { background: var(--green); transform: rotate(180deg); }
.faq-item.open .faq-icon svg { fill: white; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── LOCATION ── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-icon svg { width: 16px; height: 16px; fill: var(--green); }
.contact-text { font-size: 14px; color: var(--ink-muted); font-weight: 300; }
.contact-text strong { display: block; font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--green);
    margin: 0 5vw 80px;
    border-radius: 24px;
    padding: 64px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.cta-banner::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.cta-text h2 { font-family: var(--serif); font-size: clamp(24px,3vw,38px); color: white; margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,.75); font-weight: 300; }
.btn-white {
    background: white;
    color: var(--green);
    border: none;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .15s;
    white-space: nowrap;
    font-family: var(--sans);
    position: relative;
    z-index: 2;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
    background: var(--ink);
    color: white;
    padding: 60px 5vw 32px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 20px;
    color: white;
    margin-bottom: 14px;
}
.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon svg { width: 14px; height: 14px; fill: white; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: 14px;
    transition: border-color .2s, color .2s;
}
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.footer-social:hover { border-color: var(--green-light); color: var(--green-light); }
.footer-links h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 24px; height: 24px; fill: white; }
.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--ink);
    color: white;
    font-size: 12px;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .35s; }
.delay-4 { animation-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; padding: 100px 5vw 60px; text-align: center; }
    .hero-visual { order: -1; }
    .hero-sub { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 32px; }
    .hero-badge { left: 0; bottom: -20px; }
    .hero-tag2 { right: 0; }
    .hero-img-wrap { max-width: 360px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-accent { right: 0; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-banner { text-align: center; justify-content: center; }
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar { gap: 24px; }
}

@media (max-width: 560px) {
    .section { padding: 72px 5vw; }
    .hero { padding: 88px 5vw 56px; }
    .hero h1 { font-size: clamp(32px, 8vw, 48px); }
    .hero-stats { flex-direction: column; gap: 20px; text-align: left; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 180px); }
    .gallery-item:first-child { grid-column: span 1; }
    .cta-banner { margin: 0 4vw 60px; padding: 48px 6vw; }
    .trust-bar { flex-direction: column; gap: 16px; padding: 24px 5vw; }
}
