/* Custom Styles for Smart Accounting */
:root {
    --primary-color: #137fec;
    --background-light: #f6f7f8;
    --background-dark: #101922;
    --border-light: #e7edf3;
    --border-dark: #2a3642;
    --nav-height: 72px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-light);
}

.has-fixed-nav {
    padding-top: var(--nav-height);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Hero Section with Gradient Transition */
.hero-section-gradient {
    background: white;
    position: relative;
    padding-bottom: 4rem;
}


/* Ensure content is above the gradient overlay */
.hero-section-gradient .container {
    position: relative;
    z-index: 2;
}

.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.bg-primary-custom:hover {
    background-color: #0f6bc4;
}

.navbar-custom {
    background-color: white;
    border-bottom: 1px solid var(--border-light);
}



.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card {
    transition: transform 0.3s ease;
    border: 2px solid #e7edf3;
}

.pricing-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(19, 127, 236, 0.2);
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.team-member-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
}

.footer-custom {
    background-color: #0d141b;
    color: white;
    border-top: 1px solid #2a3642;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #0f6bc4;
    border-color: #0f6bc4;
    color: white;
}

/* --- Button Animation Utilities --- */

.btn-animate {
    /* Transisi halus untuk semua properti yang berubah */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease, 
                background-color 0.3s ease, 
                color 0.3s ease;
}

.btn-animate:hover {
    /* Translation: Menggeser tombol ke atas 3px */
    transform: translateY(-3px);
    
    /* Shadow: Menambahkan bayangan lembut di bawahnya */
    box-shadow: 0 10px 20px -10px rgba(13, 110, 253, 0.4); /* Nuansa biru */
}

/* Khusus untuk tombol sekunder (abu-abu/dark), sesuaikan warna shadownya */
.btn-custom-secondary.btn-animate:hover {
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

/* Dark Mode Adjustment */
[data-bs-theme="dark"] .btn-animate:hover {
    box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.1);
}

.btn-secondary-custom {
    background-color: #e7edf3;
    border-color: #e7edf3;
    color: #0d141b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #dbe4ed;
    border-color: #dbe4ed;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .has-fixed-nav {
        padding-top: 64px;
    }

    .section-padding {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .hero-section-gradient {
        padding-bottom: 2.5rem;
    }

    .hero-section-gradient .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-section-gradient .display-4 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-section-gradient .lead {
        font-size: 1rem;
    }

    .hero-section-gradient .btn {
        padding: 0.75rem 1.25rem;
    }

    .custom-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-section-gradient .display-4 {
        font-size: 1.85rem;
    }

    .hero-section-gradient .lead {
        font-size: 0.95rem;
    }

    .custom-image-wrapper {
        height: 100%;
        padding: 0.25rem;
    }
}

.custom-image-wrapper {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    object-fit: cover;
}


.custom-image-wrapper:hover {
    transform: translateY(-5px);
}


.image-zoomable {
    transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    object-fit: cover;
    height: 100%; 
    width: 100%;

}


.custom-image-wrapper:hover .image-zoomable {
    transform: scale(1.03);
}


[data-bs-theme="dark"] .custom-image-wrapper:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5) !important; /* Shadow lebih gelap */
}

.card-hover {
    /* Transisi halus untuk semua properti */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Border transparan agar layout tidak bergeser saat border berubah (opsional) */
    border: 1px solid transparent; 
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(13, 110, 253, 0.3) !important; 
}


[data-bs-theme="dark"] .card-hover:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    background-color: #1a2632; /* Sedikit lebih terang dari bg utama */
}

.card-hover:hover .material-symbols-outlined {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    color: var(--primary-color); 
}
.teamSwiper {
    padding: 40px 50px 60px;
}

.teamSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.teamSwiper .swiper-button-next,
.teamSwiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.teamSwiper .swiper-button-next:after,
.teamSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.teamSwiper .swiper-button-next:hover,
.teamSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.teamSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
}

.teamSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .teamSwiper {
        padding: 20px 10px 50px;
    }
    
    .teamSwiper .swiper-button-next,
    .teamSwiper .swiper-button-prev {
        display: none;
    }
}
