:root {
    --kredinet-blue: #1A43BF;
    --cloud-white: #F8F9FA;
    --text-gray: #333333;
    --success-green: #28A745;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-gray);
    -webkit-font-smoothing: antialiased;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: -0.5px;
}

.text-primary-kredinet {
    color: var(--kredinet-blue) !important;
}

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

/* Navbar */
.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--kredinet-blue);
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--kredinet-blue);
}

/* Buttons */
.btn-pill {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-kredinet-primary {
    background-color: var(--kredinet-blue);
    border: 1px solid var(--kredinet-blue);
    color: #ffffff;
}

.btn-kredinet-primary:hover {
    background-color: #15369b;
    border-color: #15369b;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-kredinet-outline {
    background-color: transparent;
    border: 1px solid #d1d1d1;
    color: var(--text-gray);
}

.btn-kredinet-outline:hover {
    border-color: var(--kredinet-blue);
    color: var(--kredinet-blue);
    background-color: white;
}

.btn-kredinet-outline-banner {
    background-color: white;
    border: 1px solid #d1d1d1;
    color: var(--kredinet-blue);
}

.btn-kredinet-outline-banner:hover {
    border-color: var(--kredinet-blue);
    color: white;
    background-color: var(--kredinet-blue);
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-banner-header {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: 0% 40%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-banner-header {
        height: 60vh; /* Slightly taller on mobile for content */
    }
}

.hero-banner-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Dark overlay for contrast */
    backdrop-filter: blur(1px); /* Subtle blur to reduce noise */
    z-index: 1;
}

.hero-banner-header .container {
    position: relative;
    z-index: 2;
}

/* Hero Typography */
.hero-banner-header h1 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 800;
}

.hero-banner-header p {
    color: #e0e7ff; /* Light blue-white for subtitle */
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    margin-bottom: 2.5rem; /* Increased spacing before buttons */
}

.hero-buttons {
    margin-top: 1rem;
}

/* Glassmorphism Buttons */
.hero-banner-header .btn {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-banner-header .btn-kredinet-primary {
    background: rgba(26, 67, 191, 0.5); /* Semi-transparent Brand Blue */
}

.hero-banner-header .btn-kredinet-primary:hover {
    background: rgba(26, 67, 191, 0.8);
    border-color: rgba(26, 67, 191, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-banner-header .btn-kredinet-outline-banner {
    background: rgba(255, 255, 255, 0.1);
}

.hero-banner-header .btn-kredinet-outline-banner:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: white;
    transform: translateY(-2px);
}

/* Cards (How It Works) */
.card-custom {
    border: none;
    border-radius: 20px;
    padding: 40px 20px;
    background-color: var(--cloud-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-box {
    width: 120px;
    height: 120px;
    background-color: rgba(26, 67, 191, 0.1);
    color: var(--kredinet-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
}

/* Stats */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--kredinet-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid #eaeaea;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer ul li a:hover {
    color: var(--kredinet-blue);
}

/* Product Categories Section */
.category-item {
    text-align: center;
    padding: 30px 10px;
}

.category-icon-small {
    font-size: 3.5rem;
    color: #ADB5BD; /* Soft Gray */
    margin-bottom: 15px;
    display: block;
}

.category-text {
    color: var(--text-gray);
    font-weight: 700;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form .form-control, 
.contact-form .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--kredinet-blue);
    box-shadow: 0 0 0 0.25rem rgba(26, 67, 191, 0.1);
}

.iti{width: 100% !important;}