/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    margin-left: 2rem;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #2563eb;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.page-header {
    background: linear-gradient(135deg, #1e40af, #0e7490);
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    margin: 10px;
    padding: 14px 32px;
    background: #22c55e;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    border: none;
}

.btn i {
    margin-right: 8px;
}

.btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.btn2 {
    background: #0ea5e9;
}

.btn2:hover {
    background: #0284c7;
}

/* ===== SECTIONS ===== */
.section {
    padding: 70px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.section h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #2563eb;
    margin: 12px auto 0;
    border-radius: 2px;
}

.bg-light {
    background: #f1f5f9;
}

/* ===== CARDS ===== */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: white;
    width: 260px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(37,99,235,0.12);
}

.card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
    background: #e6f0ff;
    padding: 18px;
    border-radius: 60% 40% 50% 50%;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 1.3rem;
    color: #0f172a;
}

.card p {
    color: #475569;
    font-size: 0.95rem;
}

/* ===== FEATURES (Mengapa Memilih Kami) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2563eb;
    font-size: 2rem;
    transition: all 0.3s;
}

.feature:hover .feature-icon {
    background: #2563eb;
    color: white;
}

.feature h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0f172a;
}

.feature p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== STEPS (cara order) ===== */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    width: 220px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}

/* ===== CONTACT ===== */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    text-align: left;
}

.contact-info, .contact-form {
    flex: 1 1 300px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-info h3 {
    margin: 20px 0 10px;
    color: #2563eb;
}

.contact-info h3:first-of-type {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info i {
    width: 25px;
    color: #2563eb;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.contact-info a:hover {
    text-decoration: none;
    color: #2563eb;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    margin: 0;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #1e40af, #0e7490);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn {
    background: white;
    color: #1e293b;
}

.cta .btn:hover {
    background: #f1f5f9;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

/* Link kontak di footer */
.footer-section p a {
    color: #ffffff; /* putih */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p a:hover {
    color: #2563eb; /* biru saat hover */
}

.footer-section p i {
    width: 20px;
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #1e293b;
}

/* ===== WHATSAPP FIXED ===== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    z-index: 99;
}

.whatsapp i {
    font-size: 1.5rem;
}

.whatsapp:hover {
    transform: scale(1.05);
    background: #20b859;
}

/* ===== GOOGLE MAPS ===== */
.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICE HIGHLIGHTS (FITUR UTAMA) ===== */
.service-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px 20px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: -30px auto 30px;
    position: relative;
    z-index: 10;
}

.highlight-item {
    text-align: center;
    flex: 0 1 auto;
}

.highlight-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 8px;
    background: #e6f0ff;
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item span {
    display: block;
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
}

/* ===== HEADER (versi sederhana) ===== */
.logo-header {
    height: 60px;
    margin-bottom: 15px;
}

.btn-header {
    margin: 5px;
    padding: 12px 28px;
}

.delivery-info {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
    letter-spacing: 0.3px;
}

.delivery-info i {
    margin: 0 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li a {
        margin: 0;
        padding: 10px 0;
        display: block;
    }
    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    header h1 {
        font-size: 2rem;
    }
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
        max-width: 320px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        width: 90%;
        max-width: 300px;
    }
    .contact-container {
        flex-direction: column;
    }
    .service-highlights {
        flex-direction: column;
        gap: 20px;
        border-radius: 30px;
        margin: -20px 20px 30px;
        padding: 20px;
    }
    .highlight-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    .highlight-item i {
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .highlight-item span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    header h1 {
        font-size: 1.8rem;
    }
    .btn-header {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
