/* ===============================
   GLOBAL VARIABLES & RESET
=============================== */
:root {
    --primary: #2563eb;
    --accent: #3b82f6;
    --dark: #0f172a;
    --light: #f8fafc;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===============================
   HERO SECTION CLEAN
=============================== */
.hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, #e0e7ff, transparent);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap; /* responsive, gambar turun di layar kecil */
}

.hero-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1 1 400px;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* RESPONSIVE HERO */
@media (max-width: 992px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 30px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* ===============================
   BUTTONS
=============================== */
.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.25s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 12px 25px rgba(37,99,235,0.35);
}

.btn-outline {
    border: 2px solid #e2e8f0;
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===============================
   SERVICES / KEUNGGULAN / LAYANAN
=============================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===============================
   CTA SECTION
=============================== */
.cta-section {
    background: #e0e7ff;
    padding: 80px 0;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background: var(--accent);
    box-shadow: 0 15px 30px rgba(37,99,235,0.35);
    transform: translateY(-3px);
}

/* ===============================
   MAP / LOKASI
=============================== */
.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow);
}

/* ===============================
   FOOTER
=============================== */
.site-footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

/* ===============================
   FLOATING WA
=============================== */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image {
        margin-top: 30px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

