:root {
    --primary-color: #4A90D9;
    --secondary-color: #87CEEB;
    --accent-color: #FFC546;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --background-light: #fdfdff;
    --border-color: #e9ecef;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}
.navbar-brand img {
    height: 45px;
    margin-right: 10px;
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}
.navbar-brand span {
    color: var(--accent-color);
}
.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}
.btn-nav-contact {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-nav-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

.top-banner {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.hero {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 80px 80px;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-weight: 700;
    font-size: 3.2rem;
}
.hero .brand-name {
    color: var(--accent-color);
}
.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 1rem 0 0;
    opacity: 0.9;
}
.btn-order {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 40px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-order:hover {
    background-color: #ffd966;
    transform: translateY(-3px);
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 5px;
}

.steps-section {
    padding: 40px 0;
    position: relative;
}

.steps-section .row {
    flex-wrap: nowrap;
    overflow-x: hidden;
    padding-bottom: 1.5rem;
    scroll-behavior: smooth;
}
.steps-section .row::-webkit-scrollbar {
    display: none;
}
.steps-section .row {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.steps-section .col-lg-4, .steps-section .col-md-6 {
    flex: 0 0 auto;
    width: 80%;
}
@media (min-width: 768px) {
    .steps-section .col-md-6 {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .steps-section .col-lg-4 {
        width: 33.333333%;
    }
}

.card.feature-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.card.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.card-header.icon-header {
    background-color: transparent;
    border-bottom: none;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}
.card-header.icon-header .icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}
.icon-bg.bg-step1 { background-color: #4A90D9; }
.icon-bg.bg-step2 { background-color: #87CEEB; }
.icon-bg.bg-step3 { background-color: #6BB5FF; }
.icon-bg.bg-step4 { background-color: #4A90D9; } 
.icon-bg.bg-step5 { background-color: #87CEEB; }
.icon-bg.bg-step6 { background-color: #6BB5FF; }

.card-body {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
}
.card-title {
    font-weight: 600;
    color: var(--primary-color);
}
.card-text {
    color: #6c757d;
}

/* Why Choose Us - Mengapa Harus Memilih Kami */
.why-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-10px);
}
.why-card .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.why-card .icon-circle i {
    font-size: 2.5rem;
    color: white;
}
.why-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.why-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* About Section Styling - Enhanced */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.about-text .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
    font-size: 0.95rem;
}

.feature-list {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 18px 22px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Gambar tidak terlalu besar */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 90%;
    margin: 0 auto;
}

.about-image-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 471px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
    }
    
    .feature-list {
        margin-bottom: 25px;
    }
    
    .about-image-wrapper {
        max-width: 90%;
        margin-bottom: 20px;
    }
    
    .about-image-wrapper img {
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .about-text .lead {
        font-size: 0.95rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .feature-list {
        padding: 12px 18px;
    }
    
    .about-image-wrapper {
        max-width: 80%;
    }
    
    .about-image-wrapper img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper {
        max-width: 80%;
    }
}      
/* Contact Section Styling */
.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 30px;
    color: white;
    height: 100%;
}
.contact-info h3 {
    font-weight: 700;
    margin-bottom: 20px;
}
.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-info-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-item div h5 {
    font-size: 1rem;
    margin: 0 0 5px;
    font-weight: 600;
}
.contact-info-item div p, .contact-info-item div a {
    margin: 0;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
}
.contact-info-item div a:hover {
    color: var(--accent-color);
}
.contact-form-wrapper {
    padding: 40px 30px;
}
.contact-form-wrapper h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    margin-bottom: 15px;
    width: 100%;
    transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
}
.btn-send {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}
.btn-send:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.support-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}
.support-item {
    text-align: center;
}
.support-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.support-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.support-item p, .support-item a {
    color: #6c757d;
    text-decoration: none;
}
 .support-item a:hover {
    color: var(--primary-color);
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.scroll-button:hover {
    background-color: rgba(255, 255, 255, 1);
}
.scroll-button.left {
    left: 10px;
}
.scroll-button.right {
    right: 10px;
}

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}
footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-text-content {
        text-align: center !important;
    }
     .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info {
        border-radius: 20px 20px 0 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}

/* WhatsApp Widget */
.whatsapp-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 320px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.chat-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
}

.chat-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.chat-header h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.chat-body {
    padding: 1rem;
    text-align: center;
}

.chat-body p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.chat-body .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.chat-body .cta-button:hover {
    background-color: #128c7e;
}

.whatsapp-toggle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-toggle-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-toggle-button i {
    font-size: 32px;
    color: white;
}