/* GLOBAL SECTION STYLING */
.section {
    width: 100%;
    padding: 96px 0;
}

.section-light { background: #F1F5F9; }
.section-white { background: var(--white); }

.section-title {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
    font-size: 18px;
}

/* HERO SECTION */
.hero-bg {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('../images/bg1.jpeg') center/cover no-repeat;
    position: relative;
    padding: 0;
}

.hero-overlay {
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-text {
    max-width: 750px;
    animation: fadeIn 1s ease-out;
}

.hero-text h1 { color: var(--white); }
.hero-text h1 span { color: #C4B5FD; /* Aksen ungu terang */ }
.hero-text p { color: #E2E8F0; margin-top: 20px; font-size: 18px; }

.hero-buttons { margin-top: 36px; }

/* SERVICES GRID */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.services .card h4 { margin-bottom: 8px; }

/* FLEX LAYOUTS (SECTION 3 & 4) */
.section-flex, .why-modern {
    display: flex;
    align-items: center;
    gap: 64px;
}

.flex-content { flex: 1; }
.flex-content p { margin-bottom: 16px; }

.flex-image {
    flex: 1;
    max-width: 500px;
}

.flex-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: var(--transition);
}

.flex-image img:hover {
    transform: scale(1.02);
}

/* WHY LIST MODERN */
.why-list-modern {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-box:hover {
    transform: translateX(6px);
    border-color: var(--primary);
}

.icon-circle {
    background: var(--primary-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.why-box p { margin: 0; color: var(--text); }

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.process-card {
    background: var(--white);
    padding: 40px 24px 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-icon { font-size: 36px; margin-bottom: 12px; }
.process-card h4 { margin-bottom: 8px; }

/* FAQ GRID */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-item h4 { color: var(--primary-dark); margin-bottom: 8px; font-size: 16px; }

/* CTA BANNER (SECTION 7 REDESIGN) */
.section-cta-wrapper {
    padding: 40px 0 96px 0;
    background: #F1F5F9;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: var(--primary-light); font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-cta {
    background: var(--white);
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* KEYFRAMES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 30px; }
    .services, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .section-flex, .why-modern { flex-direction: column; gap: 40px; text-align: center; }
    .why-list-modern { text-align: left; }
    .flex-image { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    h1 { font-size: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .services, .process-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-col .footer-desc { margin: 12px auto 0 auto; }
}