/* ============================================
   LANDING PAGE — LP3H Halal Center Cendekia Muslim
   Color Palette:
     --green:       #8CC344
     --green-dark:  #269636
     --green-light: #C5E4B6
     --orange:      #F28D35
   ============================================ */

/* ---------- Reset & Base ---------- */
.landing-body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d3748;
    background: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.lp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
    background: transparent;
}
.lp-nav.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(0,0,0,.08);
}
.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    transition: color .3s;
}
.scrolled .lp-nav-brand { color: #1a202c; }
.lp-nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.lp-nav-brand strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
.lp-nav-brand small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    opacity: .75;
}

.lp-nav-links {
    display: flex;
    gap: 6px;
}
.lp-nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.lp-nav-links a:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.scrolled .lp-nav-links a {
    color: #4a5568;
}
.scrolled .lp-nav-links a:hover {
    background: #f0fdf4;
    color: #269636;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hamburger */
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.lp-hamburger span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s, background .3s;
}
.scrolled .lp-hamburger span { background: #1a202c; }
.lp-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.lp-hamburger.active span:nth-child(2) { opacity: 0; }
.lp-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}
.lp-btn-lg {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 12px;
}
.lp-btn-primary {
    background: linear-gradient(135deg, #8CC344, #269636);
    color: #fff;
    box-shadow: 0 4px 14px rgba(38,150,54,.3);
}
.lp-btn-primary:hover {
    background: linear-gradient(135deg, #269636, #1e7e2e);
    box-shadow: 0 6px 20px rgba(38,150,54,.4);
    transform: translateY(-2px);
}
.lp-btn-accent {
    background: #F28D35;
    color: #fff;
}
.lp-btn-accent:hover {
    background: #e07a25;
    transform: translateY(-1px);
}
.lp-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
}
.lp-btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}
.scrolled .lp-btn-outline-white {
    color: #269636;
    border-color: #269636;
}
.scrolled .lp-btn-outline-white:hover {
    background: #f0fdf4;
}
.lp-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
}
.lp-btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
}

/* ---------- HERO ---------- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a6b2a 0%, #269636 30%, #1e7e2e 60%, #145522 100%);
    z-index: 0;
}
.lp-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(140,195,68,.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242,141,53,.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.lp-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
}
.lp-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    color: #C5E4B6;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,.15);
}

.lp-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
}
.lp-hero h1 span {
    background: linear-gradient(135deg, #8CC344, #C5E4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
}

.lp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Hero stats */
.lp-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 24px 44px;
}
.lp-hero-stat {
    text-align: center;
}
.lp-hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #8CC344;
}
.lp-hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}
.lp-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}

/* ---------- SECTIONS ---------- */
.lp-section {
    padding: 90px 0;
}
.lp-section-alt {
    background: #f8faf5;
}

.lp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}
.lp-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(140,195,68,.15), rgba(38,150,54,.15));
    color: #269636;
    padding: 6px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 14px;
}
.lp-section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin: 0 0 14px;
}
.lp-section-header p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ---------- GRID ---------- */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---------- SERVICE CARDS ---------- */
.lp-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 36px 30px;
    border: 1px solid #e8eee0;
    transition: transform .3s, box-shadow .3s;
}
.lp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(38,150,54,.1);
}
.lp-card-featured {
    border-color: #8CC344;
    box-shadow: 0 8px 28px rgba(140,195,68,.15);
}
.lp-card-featured:hover {
    box-shadow: 0 20px 40px rgba(140,195,68,.2);
}
.lp-card-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    background: linear-gradient(135deg, #F28D35, #e07a25);
    color: #fff;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}
.lp-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.lp-card-icon-green {
    background: linear-gradient(135deg, rgba(140,195,68,.15), rgba(38,150,54,.12));
    color: #269636;
}
.lp-card-icon-orange {
    background: linear-gradient(135deg, rgba(242,141,53,.15), rgba(224,122,37,.12));
    color: #F28D35;
}
.lp-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px;
}
.lp-card > p {
    font-size: 14px;
    color: #718096;
    line-height: 1.65;
    margin: 0 0 18px;
}
.lp-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-card-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 13px;
    color: #4a5568;
}
.lp-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8CC344;
}

/* ---------- FEATURE CARDS ---------- */
.lp-feature {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid #e8eee0;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.lp-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(38,150,54,.08);
    border-color: #C5E4B6;
}
.lp-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(140,195,68,.15), rgba(38,150,54,.12));
    color: #269636;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.lp-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px;
}
.lp-feature p {
    font-size: 13.5px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ---------- PROCESS STEPS ---------- */
.lp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.lp-step {
    text-align: center;
    max-width: 210px;
    padding: 0 12px;
}
.lp-step-num {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8CC344, #269636);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(38,150,54,.25);
}
.lp-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px;
}
.lp-step p {
    font-size: 13.5px;
    color: #718096;
    line-height: 1.55;
    margin: 0;
}
.lp-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 14px;
    color: #C5E4B6;
}

/* ---------- CTA ---------- */
.lp-section-cta {
    background: linear-gradient(135deg, #f8faf5 0%, #e8f5d6 100%);
    padding: 90px 0;
}
.lp-cta-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 20px 60px rgba(38,150,54,.08);
    border: 1px solid #e8eee0;
}
.lp-cta-content {
    flex: 1;
}
.lp-cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}
.lp-cta-content p {
    font-size: 15px;
    color: #718096;
    line-height: 1.65;
    margin: 0 0 28px;
}
.lp-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lp-cta-actions .lp-btn-ghost {
    color: #269636;
    border-color: #269636;
}
.lp-cta-actions .lp-btn-ghost:hover {
    background: #f0fdf4;
}

/* CTA mockup */
.lp-cta-visual {
    flex-shrink: 0;
}
.lp-cta-mockup {
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    border: 1px solid #e2e8f0;
}
.lp-mockup-header {
    background: #f7fafc;
    padding: 12px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #e2e8f0;
}
.lp-mockup-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}
.lp-mockup-header span:first-child { background: #fc8181; }
.lp-mockup-header span:nth-child(2) { background: #f6e05e; }
.lp-mockup-header span:last-child { background: #68d391; }
.lp-mockup-body {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
}
.lp-mockup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(140,195,68,.15), rgba(38,150,54,.15));
    color: #269636;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.lp-mockup-text {
    font-size: 18px;
    font-weight: 700;
    color: #269636;
    margin-bottom: 4px;
}
.lp-mockup-sub {
    font-size: 13px;
    color: #8CC344;
    font-weight: 600;
}

/* ---------- FOOTER ---------- */
.lp-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 72px 0 0;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.lp-footer-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}
.lp-footer-brand strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.lp-footer-brand small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8CC344;
}
.lp-footer-about p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #a0aec0;
    margin: 0;
}

.lp-footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}
.lp-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer-links li {
    margin-bottom: 10px;
}
.lp-footer-links a {
    font-size: 13.5px;
    color: #a0aec0;
    text-decoration: none;
    transition: color .2s;
}
.lp-footer-links a:hover {
    color: #8CC344;
}
.lp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.5;
}
.lp-footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #8CC344;
}

.lp-footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-footer-bottom p {
    font-size: 12.5px;
    color: #718096;
    margin: 0;
}

/* ---------- WhatsApp Float ---------- */
.lp-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: transform .25s, box-shadow .25s;
}
.lp-wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .lp-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-cta-card { flex-direction: column; padding: 40px 32px; gap: 36px; }
}

@media (max-width: 768px) {
    .lp-nav-links,
    .lp-nav-actions { display: none; }
    .lp-hamburger { display: flex; }

    .lp-nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        z-index: 999;
        gap: 4px;
    }
    .lp-nav-links.open a {
        color: #4a5568;
        padding: 12px 16px;
        border-radius: 10px;
    }
    .lp-nav-links.open a:hover {
        background: #f0fdf4;
        color: #269636;
    }

    .lp-grid-3 { grid-template-columns: 1fr; }
    .lp-hero { padding: 100px 0 60px; min-height: auto; }
    .lp-hero h1 { font-size: 28px; }
    .lp-hero-sub { font-size: 15px; }
    .lp-hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px 32px;
    }
    .lp-hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .lp-section { padding: 60px 0; }

    /* Steps stack vertically */
    .lp-steps { flex-direction: column; align-items: center; gap: 12px; }
    .lp-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    .lp-step { max-width: 300px; }

    .lp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .lp-footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .lp-cta-visual { display: none; }
}

@media (max-width: 480px) {
    .lp-container { padding: 0 16px; }
    .lp-hero-actions { flex-direction: column; align-items: stretch; }
    .lp-cta-card { padding: 28px 20px; }
    .lp-cta-content h2 { font-size: 24px; }
    .lp-cta-actions { flex-direction: column; }
}
