* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    color: #1f2937;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 80px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #fac35b;
}

.hero h2 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    text-align: left;
}

.hero p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.hero-jasa {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
}

.hero-jasa h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-jasa p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.hero-button {
    display: block;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 40px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.service-features,
.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li,
.package-features li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-outline:hover {
    background-color: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
}

.pricing-grid {
    gap: 30px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.package-subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 25px;
}

.price-tag {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.price {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.price-period {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.pricing-card .btn-outline,
.pricing-card .btn-primary {
    margin-top: auto;
}

.solution-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.solution-card {
    text-align: center;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-jasa {
        padding: 80px 20px 60px;
    }

    .hero-jasa h1 {
        font-size: 32px;
    }

    .hero-jasa p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.gray {
    background: #f3f4f6;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.problem-list li {
    background: #fee2e2;
    border-left: 5px solid #dc2626;
    padding: 18px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.problem-list li:before {
    content: "⚠️";
    margin-right: 15px;
    font-size: 1.3rem;
}

.problem-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.highlight {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.solution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 35px 25px;
    border-top: 4px solid #2563eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.solution-card p {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 10px 0 0 0;
    color: #1f2937;
}

.highlight-card {
    border: 2px solid #2563eb;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #22c55e;
    color: #fff;
}

.btn-center {
    display: block;
    margin: 30px auto 0 auto;
}

.btn-secondary {
    background: #2563eb;
    color: #fff;
}

.hero-kontak {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
}

.hero-kontak h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-kontak p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* FORM STYLES */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* CONTACT INFO STYLES */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-info-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.info-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.info-content p {
    margin: 5px 0;
    color: #666;
}

.info-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #764ba2;
}

.info-desc {
    font-size: 14px;
    color: #999 !important;
    margin-top: 8px;
}

/* QUICK CONTACT BUTTONS */
.quick-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-whatsapp,
.btn-email {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

.btn-email {
    background-color: #667eea;
    color: #ffffff;
}

.btn-email:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

/* FAQ STYLES */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f0f0f0;
}

.faq-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.faq-icon {
    font-size: 24px;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    padding: 20px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-content {
    display: block;
}

@media (max-width: 768px) {
    .hero-kontak {
        padding: 80px 20px 60px;
    }

    .hero-kontak h1 {
        font-size: 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quick-contact {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-email {
        min-width: unset;
    }
}

.cta {
    background: #1e40af;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111827;
    color: #9ca3af;
}
footer a {
    color: #9ca3af;
    text-decoration: none;
}
.text-center {
    text-align: center;
}