/* Custom CSS untuk Senderaja.com */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
}

.instart {
    background-image: url("/loader.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh;
    /* Contoh agar body mengisi seluruh tinggi viewport */
    margin: 0;
}

/* Tambahkan style ini ke file CSS Anda */
.actionproduct {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.navbar-brand .brand-image {
    height: 30px;
    width: auto;
    opacity: .8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #020a2b 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.marchan-icon{
    border-radius: 50%; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    
}

/* .marchan-icon.text-warning {
    background: linear-gradient(45deg, var(--accent-color), #f97316);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    color: white;
} */

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-icon.text-warning {
    background: linear-gradient(45deg, var(--accent-color), #f97316);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.service-icon.text-success {
    background: linear-gradient(45deg, var(--success-color), #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Contact Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
} */
@media (max-width: 768px) {
    .mobile-fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1030;
        /* Pastikan footer melayang di atas konten lain */
        background-color: #fff;
        /* Warna latar belakang */
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        /* Tambahkan sedikit bayangan */
        padding: 0;
        margin: 0;
        display: flex;
        /* Menggunakan flexbox untuk tata letak tombol */
        justify-content: space-around;
        /* Menyebar tombol secara merata */
        align-items: center;
    }

    .mobile-fixed-footer .nav-link {
        flex-grow: 1;
        /* Biarkan tombol memenuhi ruang yang tersedia */
        text-align: center;
        border-radius: 0;
        /* Hapus border-radius dari tombol */
    }
}

@media (max-width: 576px) {
    /* .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    } */
    
    /* section {
        padding: 3rem 0;
    } */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.spinner-lg {
    width: 5rem;  
    height: 5rem; /* Contoh: 5 kali ukuran default */
}





@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 