/* ============================================================
   JASAPRINT PERCETAKAN - PUBLIC LANDING PAGE STYLESHEET
   Matching Visual Reference 1
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-script: 'Caveat', cursive, sans-serif;
    
    --brand-red: #e11d48;
    --brand-red-hover: #be123c;
    --brand-blue: #1d72f2;
    --brand-yellow: #f59e0b;
    --brand-green: #10b981;
    --brand-green-hover: #059669;
    
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --bg-page: #ffffff;
    --bg-alt: #f8fafc;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.09);
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------------- Top Header & Navbar ---------------- */
.header-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-red);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.header-info-item i, .header-info-item svg {
    color: var(--brand-green);
    font-size: 16px;
}

.btn-header-wa {
    background: var(--brand-red);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.btn-header-wa:hover {
    background: var(--brand-red-hover);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ---------------- Hero Section ---------------- */
.hero-section {
    padding: 40px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-pill {
    display: inline-block;
    padding: 6px 14px;
    background: #f1f5f9;
    color: #475569;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    border: 1px solid #e2e8f0;
}

.hero-title-wrap {
    position: relative;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.brush-highlight {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.brush-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 10px;
    background: #fde047;
    border-radius: 6px;
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-script {
    font-family: var(--font-script);
    font-size: 26px;
    color: #2563eb;
    margin-top: 6px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.btn-hero-primary {
    background: var(--brand-red);
    color: white;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
    transition: all 0.2s;
}

.btn-hero-primary:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.45);
}

.btn-hero-outline {
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 13px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-hero-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid #eef2f6;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
}

.hero-feature-item .icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.icon-blue { background: #dbeafe; color: #1d4ed8; }
.icon-red { background: #fee2e2; color: #dc2626; }
.icon-yellow { background: #fef3c7; color: #d97706; }

.hero-media-wrapper {
    position: relative;
}

.hero-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---------------- Section Header ---------------- */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.section-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.section-link:hover {
    text-decoration: underline;
}

/* ---------------- Layanan Kami Grid ---------------- */
.layanan-section {
    padding: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.service-thumb {
    width: 100%;
    height: 76px;
    object-fit: cover;
    display: block;
    background: #f1f5f9;
}

.service-info {
    padding: 10px 8px;
    text-align: center;
}

.service-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.service-info p {
    font-size: 10.5px;
    color: #64748b;
    line-height: 1.3;
}

/* ---------------- Portfolio Section ---------------- */
.portfolio-section {
    padding: 40px 0;
    background: #fbfcfe;
}

.portfolio-filter-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.filter-pill {
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s;
}

.filter-pill:hover {
    background: #f8fafc;
    color: #0f172a;
}

.filter-pill.active {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox-modal.show {
    display: flex;
}

.lightbox-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 680px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.lightbox-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #000000;
    display: block;
}

.lightbox-caption {
    padding: 18px 24px;
}

.lightbox-caption h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lightbox-caption p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ---------------- Mengapa & Cara Order ---------------- */
.features-process-section {
    padding: 44px 0;
    border-top: 1px solid var(--border-light);
}

.fp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.why-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.why-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.why-item p {
    font-size: 11.5px;
    color: var(--text-muted);
}

.order-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.order-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.step-red { background: var(--brand-red); }
.step-blue { background: var(--brand-blue); }
.step-yellow { background: var(--brand-yellow); }

.step-text h4 {
    font-size: 13.5px;
    font-weight: 700;
}

.step-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---------------- Public Footer ---------------- */
.public-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding-top: 36px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item .ci-icon {
    font-size: 20px;
    color: var(--brand-green);
}

.footer-contact-item strong {
    font-size: 13.5px;
    display: block;
    color: #0f172a;
}

.footer-contact-item span {
    font-size: 11.5px;
    color: var(--text-muted);
}

.btn-footer-cta {
    background: var(--brand-red);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    background: #111a2e;
    color: #94a3b8;
    padding: 16px 0;
    font-size: 12px;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header-info-item, .btn-header-wa {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 32px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fp-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
