/* ═══════════════════════════════════════════════════
   NOVAKASA — Global Stylesheet
   Font: DM Sans (body) + Playfair Display (display)
   ═══════════════════════════════════════════════════ */

:root {
    --bg-dark: #0a1628;
    --bg-darker: #060f1e;
    --bg-card: #111d33;
    --bg-light: #f7f8fa;
    --bg-white: #ffffff;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-glow: rgba(59,130,246,0.15);
    --gold: #f59e0b;
    --red: #ef4444;
    --green: #10b981;
    --text-white: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --text-body: #475569;
    --border: rgba(255,255,255,0.08);
    --border-light: #e2e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --max-w: 1200px;
    --nav-h: 72px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body { font-family:var(--font-body); color:var(--text-dark); background:var(--bg-white); line-height:1.65; overflow-x:hidden; }
img { max-width:100%; height:auto; display:block; }
a { transition: color 0.2s; }

/* ─── LAYOUT ─── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }
.section { padding:100px 0; }
.section-dark { background:var(--bg-dark); color:var(--text-white); }
.section-darker { background:var(--bg-darker); color:var(--text-white); }
.section-light { background:var(--bg-light); }
.text-center { text-align:center; }
.grid { display:grid; gap:24px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }

@media(max-width:1024px) { .grid-4{grid-template-columns:repeat(2,1fr);} .grid-3{grid-template-columns:repeat(2,1fr);} }
@media(max-width:768px) { .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;} .section{padding:64px 0;} }

/* ─── SECTION HEADERS ─── */
.sh { text-align:center; max-width:640px; margin:0 auto 56px; }
.sh h2 { font-family:var(--font-display); font-size:2.4rem; font-weight:700; margin-bottom:16px; line-height:1.2; }
.sh h2 span { color:var(--accent); }
.sh p { font-size:16px; color:var(--text-body); line-height:1.7; }
.section-dark .sh h2, .section-darker .sh h2 { color:#fff; }
.section-dark .sh p, .section-darker .sh p { color:var(--text-muted); }

/* ─── CAMPAIGN BANNER ─── */
.campaign-bar { background:linear-gradient(90deg,var(--accent) 0%,#6366f1 100%); color:#fff; text-align:center; padding:12px 20px; font-size:14px; font-weight:500; letter-spacing:.3px; position:relative; z-index:100; }
.campaign-bar del { opacity:.7; margin-right:4px; }
.campaign-bar strong { color:var(--gold); font-size:16px; }
.campaign-bar a { color:var(--gold); margin-left:12px; text-decoration:underline; font-weight:600; }

/* ─── NAV ─── */
.nav { position:fixed; top:0; left:0; right:0; z-index:99; padding:16px 0; transition:all .3s; }
.nav.scrolled { background:rgba(10,22,40,.97); backdrop-filter:blur(16px); padding:10px 0; box-shadow:0 4px 30px rgba(0,0,0,.3); }
.nav .container { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { font-family:var(--font-display); font-size:24px; font-weight:700; color:#fff; text-decoration:none; letter-spacing:-.5px; }
.nav-logo span { color:var(--accent); }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:14px; font-weight:500; transition:color .2s; letter-spacing:.2px; }
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-right { display:flex; align-items:center; gap:20px; }
.nav-phone { color:var(--gold); font-weight:600; font-size:14px; text-decoration:none; }
.nav-phone:hover { color:#e8910a; }
.nav-toggle { display:none; background:none; border:none; color:#fff; font-size:24px; cursor:pointer; }
@media(max-width:768px) { .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:var(--bg-dark);flex-direction:column;padding:20px 24px;gap:16px;border-top:1px solid var(--border);} .nav-links.open{display:flex;} .nav-toggle{display:block;} }

/* ─── BUTTONS ─── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:50px; font-family:var(--font-body); font-size:15px; font-weight:600; text-decoration:none; transition:all .25s; cursor:pointer; border:none; }
.btn-primary { background:var(--accent); color:#fff; }
.btn-primary:hover { background:var(--accent-hover); transform:translateY(-2px); box-shadow:0 8px 30px rgba(59,130,246,.35); }
.btn-outline { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.05); }
.btn-dark { background:var(--text-dark); color:#fff; }
.btn-dark:hover { background:#0f172a; transform:translateY(-2px); }
.btn-white { background:#fff; color:var(--text-dark); }
.btn-white:hover { background:#f1f5f9; transform:translateY(-2px); }
.btn-sm { padding:10px 22px; font-size:13px; }

/* ─── HERO ─── */
.hero { background:var(--bg-dark); padding:180px 0 120px; position:relative; overflow:hidden; text-align:center; }
.hero::before { content:''; position:absolute; top:-50%; right:-20%; width:800px; height:800px; background:radial-gradient(circle,var(--accent-glow) 0%,transparent 70%); pointer-events:none; }
.hero::after { content:''; position:absolute; bottom:-30%; left:-10%; width:600px; height:600px; background:radial-gradient(circle,rgba(99,102,241,.08) 0%,transparent 70%); pointer-events:none; }
.hero .container { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(59,130,246,.1); border:1px solid rgba(59,130,246,.2); color:var(--accent); padding:10px 22px; border-radius:50px; font-size:14px; font-weight:500; margin-bottom:28px; line-height:1.5; max-width:640px; text-align:center; }
.hero h1 { font-family:var(--font-display); font-size:3.6rem; font-weight:700; color:#fff; line-height:1.15; margin-bottom:24px; max-width:800px; }
.hero h1 em { font-style:normal; background:linear-gradient(135deg,var(--accent),#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero p { font-size:18px; color:var(--text-muted); max-width:600px; margin-bottom:40px; line-height:1.7; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.hero-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-top:40px; }
.hero-tag { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.85); padding:8px 18px; border-radius:50px; font-size:13px; font-weight:500; backdrop-filter:blur(4px); transition:all .3s; }
.hero-tag i { color:var(--green); font-size:14px; }
.hero-tag:hover { background:rgba(59,130,246,.15); border-color:rgba(59,130,246,.3); color:#fff; }
@media(max-width:768px) { .hero{padding:140px 0 80px;} .hero h1{font-size:2.2rem !important;} }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero { background:var(--bg-dark); padding:140px 0 60px; text-align:center; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; top:-40%; right:-15%; width:600px; height:600px; background:radial-gradient(circle,var(--accent-glow) 0%,transparent 70%); pointer-events:none; }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { font-family:var(--font-display); font-size:2.8rem; font-weight:700; color:#fff; margin-bottom:16px; }
.page-hero h1 span { color:var(--accent); }
.page-hero p { font-size:17px; color:var(--text-muted); max-width:560px; margin:0 auto; }
.page-hero .kampanya-banner { display:inline-block; margin-top:24px; padding:12px 24px; background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.3); color:#34d399; border-radius:50px; font-size:14px; font-weight:500; }
.page-hero .kampanya-banner strong { color:#fff; font-weight:700; }
@media(max-width:768px) { .page-hero{padding:120px 0 40px;} .page-hero h1{font-size:2rem;} .page-hero .kampanya-banner{font-size:13px;padding:10px 18px;} }

/* ─── VALUE CARDS ─── */
.value-card { text-align:center; padding:36px 24px; border-radius:var(--radius); background:var(--bg-card); border:1px solid var(--border); transition:transform .3s,border-color .3s; }
.value-card:hover { transform:translateY(-6px); border-color:rgba(59,130,246,.3); }
.value-icon { width:56px; height:56px; border-radius:14px; background:var(--accent-glow); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:24px; color:var(--accent); }
.value-card h3 { font-size:17px; font-weight:600; color:#fff; margin-bottom:10px; }
.value-card p { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* ─── FEATURE ROWS ─── */
.feature-row { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-bottom:80px; }
.feature-row:last-child { margin-bottom:0; }
.feature-row.reverse .feature-visual { order:-1; }
.feature-label { display:inline-block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--accent); margin-bottom:12px; }
.feature-row h2 { font-family:var(--font-display); font-size:2.2rem; font-weight:700; margin-bottom:16px; line-height:1.2; }
.feature-row p { font-size:16px; color:var(--text-body); line-height:1.7; }
.feature-visual { border-radius:var(--radius); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.08); }
@media(max-width:768px) { .feature-row{grid-template-columns:1fr;gap:32px;} .feature-row.reverse .feature-visual{order:0;} .feature-row h2{font-size:1.6rem;} }

/* ─── MINI FEATURE CARDS (homepage) ─── */
.mini-feature { padding:32px 28px; border-radius:var(--radius); border:1px solid var(--border-light); background:#fff; transition:transform .3s, box-shadow .3s; }
.mini-feature:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.06); }
.mini-feature i { font-size:28px; color:var(--accent); margin-bottom:16px; display:block; }
.mini-feature h3 { font-size:17px; font-weight:600; margin-bottom:8px; }
.mini-feature p { font-size:14px; color:var(--text-body); line-height:1.6; }

/* ─── STEPS ─── */
.step-card { text-align:center; padding:40px 28px; }
.step-number { width:48px; height:48px; border-radius:50%; background:var(--accent); color:#fff; font-family:var(--font-display); font-size:20px; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.step-card h3 { font-size:18px; font-weight:600; margin-bottom:10px; }
.step-card p { font-size:14px; color:var(--text-body); }

/* ─── PRICING ─── */
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media(max-width:1024px) { .pricing-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px) { .pricing-grid{grid-template-columns:1fr;} }
.price-card { background:#fff; border:1.5px solid var(--border-light); border-radius:var(--radius); padding:36px 28px; position:relative; transition:transform .3s,box-shadow .3s; }
.price-card:hover { transform:translateY(-4px); box-shadow:0 16px 50px rgba(0,0,0,.08); }
.price-card.featured { border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-glow),0 16px 50px rgba(59,130,246,.1); }
.price-card .popular-tag { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--accent); color:#fff; font-size:11px; font-weight:700; padding:5px 18px; border-radius:50px; letter-spacing:.8px; text-transform:uppercase; white-space:nowrap; }
.price-card .campaign-tag { display:inline-block; background:#fef2f2; color:var(--red); font-size:11px; font-weight:700; padding:4px 10px; border-radius:6px; margin-bottom:12px; }
.price-card h3 { font-family:var(--font-display); font-size:22px; font-weight:700; margin-bottom:4px; }
.price-card .subtitle { font-size:13px; color:var(--text-body); margin-bottom:20px; }
.price-line { display:flex; align-items:baseline; flex-wrap:wrap; gap:6px 8px; margin-bottom:6px; }
.price-line del { font-size:15px; color:#cbd5e1; }
.price-line .amount { font-size:34px; font-weight:700; color:var(--text-dark); line-height:1; }
.price-line .period { font-size:14px; color:var(--text-body); }
.price-monthly { font-size:12px; color:var(--text-muted); margin-bottom:2px; }
.price-branch { font-size:12px; color:var(--text-muted); margin-bottom:10px; }
.price-setup { font-size:12px; color:var(--text-muted); margin-bottom:20px; padding-top:10px; border-top:1px dashed #e2e8f0; }
.price-setup del { margin-right:4px; }
.price-setup span { color:#cbd5e1; font-size:11px; }
.price-features { list-style:none; margin-bottom:28px; }
.price-features li { font-size:14px; padding:7px 0; border-bottom:1px solid #f1f5f9; display:flex; align-items:center; gap:10px; }
.price-features li::before { content:'✓'; color:var(--green); font-weight:700; font-size:13px; flex-shrink:0; }
.price-features li.off { color:#cbd5e1; text-decoration:line-through; }
.price-features li.off::before { content:'—'; color:#cbd5e1; }
.price-features li.highlight { font-weight:600; color:var(--text-dark); }
.price-card .btn { width:100%; justify-content:center; }
.pricing-footnotes { margin-top:40px; text-align:center; font-size:13px; color:var(--text-muted); line-height:2; }
.pricing-footnotes strong { color:var(--text-body); }

/* ─── FAQ ─── */
.faq-item { border-bottom:1px solid var(--border-light); padding:20px 0; }
.faq-q { font-size:16px; font-weight:600; color:var(--text-dark); cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.faq-q::after { content:'+'; font-size:22px; color:var(--accent); transition:transform .2s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { font-size:15px; color:var(--text-body); line-height:1.7; max-height:0; overflow:hidden; transition:max-height .3s,padding .3s; }
.faq-item.open .faq-a { max-height:300px; padding-top:12px; }

/* ─── GALLERY ─── */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery-grid a { border-radius:var(--radius-sm); overflow:hidden; display:block; transition:transform .3s; }
.gallery-grid a:hover { transform:scale(1.03); }
.gallery-grid img { width:100%; display:block; }
@media(max-width:768px) { .gallery-grid{grid-template-columns:repeat(2,1fr);} }

/* ─── TESTIMONIALS ─── */
.testimonial-card { background:#fff; border-radius:var(--radius); padding:32px; border:1px solid var(--border-light); }
.testimonial-card p { font-size:15px; color:var(--text-body); font-style:italic; margin-bottom:20px; line-height:1.7; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-author img { width:44px; height:44px; border-radius:50%; object-fit:cover; }
.testimonial-author strong { display:block; font-size:14px; color:var(--text-dark); }
.testimonial-author span { font-size:12px; color:var(--text-muted); }

/* ─── STATS ─── */
.stat-item { text-align:center; padding:20px; }
.stat-item h3 { font-family:var(--font-display); font-size:2.4rem; font-weight:700; color:#fff; margin-bottom:6px; }
.stat-item p { font-size:13px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; font-weight:500; line-height:1.5; }
.stat-item p small { display:block; text-transform:none; letter-spacing:0; font-size:12px; margin-top:2px; }

/* ─── VIDEO ─── */
.video-section { background:linear-gradient(135deg,var(--bg-dark) 0%,#0f2545 100%); padding:80px 0; text-align:center; }
.video-section h2 { font-family:var(--font-display); color:#fff; font-size:2rem; margin-bottom:12px; }
.video-section p { color:var(--text-muted); margin-bottom:32px; }
.play-btn { display:inline-flex; align-items:center; justify-content:center; width:80px; height:80px; border-radius:50%; background:var(--accent); color:#fff; font-size:28px; text-decoration:none; transition:transform .3s,box-shadow .3s; box-shadow:0 0 0 16px rgba(59,130,246,.15); }
.play-btn:hover { transform:scale(1.1); box-shadow:0 0 0 24px rgba(59,130,246,.1); }

/* ─── CONTACT FORM ─── */
.contact-form { max-width:640px; margin:0 auto; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media(max-width:600px) { .form-row{grid-template-columns:1fr;} }
.form-input { width:100%; padding:14px 18px; border:1.5px solid var(--border-light); border-radius:var(--radius-sm); font-family:var(--font-body); font-size:15px; background:#fff; transition:border-color .2s; outline:none; }
.form-input:focus { border-color:var(--accent); }
textarea.form-input { min-height:140px; resize:vertical; margin-bottom:16px; }

/* ─── ABOUT SECTION ─── */
.about-section { background:var(--bg-dark); color:var(--text-white); padding:100px 0; position:relative; overflow:hidden; }
.about-section::before { content:''; position:absolute; top:-200px; left:-200px; width:600px; height:600px; background:radial-gradient(circle,rgba(59,130,246,.06) 0%,transparent 70%); pointer-events:none; }
.about-inner { max-width:900px; margin:0 auto; }
.about-inner h2 { font-family:var(--font-display); font-size:2.4rem; font-weight:700; margin-bottom:32px; text-align:center; line-height:1.25; }
.about-inner h2 span { color:var(--accent); }
.about-inner p { font-size:16px; color:var(--text-muted); line-height:1.85; margin-bottom:20px; }
.about-inner p strong { color:var(--text-white); }
.about-highlights { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.about-hl { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:28px 24px; text-align:center; }
.about-hl i { font-size:28px; color:var(--accent); margin-bottom:14px; display:block; }
.about-hl h4 { font-size:16px; font-weight:600; color:#fff; margin-bottom:8px; }
.about-hl p { font-size:13px; color:var(--text-muted); margin:0; line-height:1.6; }
@media(max-width:768px) { .about-highlights{grid-template-columns:1fr;} }

/* ─── CTA BANNER ─── */
.cta-banner { background:linear-gradient(135deg,var(--accent) 0%,#6366f1 100%); padding:80px 0; text-align:center; }
.cta-banner h2 { font-family:var(--font-display); font-size:2.2rem; color:#fff; margin-bottom:16px; }
.cta-banner p { color:rgba(255,255,255,.8); font-size:16px; max-width:500px; margin:0 auto 32px; }

/* ─── FOOTER ─── */
.footer { background:var(--bg-darker); padding:48px 24px; text-align:center; border-top:1px solid var(--border); }
.footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:12px 24px; margin-bottom:20px; list-style:none; padding:0; }
.footer-links a { color:var(--text-muted); text-decoration:none; font-size:20px; transition:color .2s; }
.footer-links a:hover { color:var(--accent); }
.footer p { color:var(--text-muted); font-size:13px; word-break:break-word; }
.footer a { color:var(--text-muted); }
@media(max-width:768px) {
    .footer { padding:36px 16px; }
    .footer-links { gap:10px 18px; margin-bottom:14px; }
    .footer-links a { font-size:14px; }
}

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