/* Base Styles */
:root {
    --primary: #0066cc;
    --primary-dark: #004080;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 72px; /* Untuk fixed navbar */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    position: relative;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Cards */
.feature-card, .service-card, .testimonial-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: var(--white);
}

.feature-card:hover, .service-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary);
}

.service-img {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

/* Testimonial */
.testimonial-card {
    border-left: 4px solid var(--primary);
}

.testimonial-text {
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}
.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #0066cc;
        padding: 15px;
        margin-top: 10px;
        border-radius: 5px;
    }
}
/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-shrink {
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #0066cc;
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        padding-top: 10px;
    }
    
    .nav-item {
        margin-bottom: 8px;
    }
    
    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        margin-left: 15px;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-text {
    display: none;
    margin-left: 10px;
    font-weight: 500;
}

.whatsapp-link i {
    font-size: 32px;
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .whatsapp-link {
        width: auto;
        height: auto;
        padding: 12px 20px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: inline;
    }
}
/*faq*/

.accordion-button {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-button:hover {
    background-color: #f8f9fa;
}

.transition-all {
    transition: transform 0.3s ease;
}

