/*
Theme Name: Astra Child Professional
Theme URI: https://wpastra.com/
Template: astra
Author: Gemini
Author URI: https://google.com
Description: Child theme untuk Astra dengan sentuhan modern, profesional, dan optimasi tipografi untuk SEO.
Version: 1.1.0
Text Domain: astra-child
*/

/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
body, button, input, select, textarea {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #334155; /* Slate color yang modern */
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    color: #0f172a; /* Warna judul lebih gelap/tegas */
    font-weight: 800;
    margin-bottom: 0.5em;
}

a {
    color: #0284c7;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #0369a1;
}

/* =========================================
   2. LANDING PAGE KHUSUS (FULL WIDTH FIX)
   ========================================= */

/* HACK: Memaksa elemen melebar 100% layar walau di dalam container */
.lp-full-width-strip {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* HERO SECTION */
.lp-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 50px;
    /* Background Image Pattern Halus (Optional) */
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: #0f172a;
}

.lp-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lp-hero h1 {
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.lp-hero .lp-sub {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 300;
}

/* CTA BUTTON UTAMA */
.lp-btn-cta {
    background-color: #25D366;
    color: white !important;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(0);
}

.lp-btn-cta:hover {
    background-color: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* SECTION GLOBAL */
.lp-section {
    padding: 60px 0;
}

.lp-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 50px;
    position: relative;
}

.lp-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0284c7;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* GRID CARDS */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* CARD DESIGN */
.lp-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #bae6fd;
}

/* HARGA */
.lp-price {
    font-size: 2.5rem;
    color: #0284c7;
    font-weight: 800;
    margin: 15px 0;
}

.lp-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

/* BADGE BEST SELLER */
.badge-best {
    background: #ef4444;
    color: white;
    padding: 5px 30px;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* FAQ STYLING */
details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

details summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    background: #f8fafc;
    list-style: none; /* Hilangkan panah default */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #0284c7;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 20px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
}

/* AREA LIST */
.area-tags span {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 3px;
    font-weight: 500;
}

/* STICKY WA */
.sticky-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.sticky-wa:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 2rem; }
    .lp-hero { padding: 60px 15px; }
    .lp-price { font-size: 2rem; }
}