/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Color: Trustworthy Green */
    --primary-color: #10B981;
    --primary-dark: #047857;
    --primary-light: #D1FAE5;

    /* Secondary Color: Warm Gold/Orange */
    --secondary-color: #F59E0B;
    --secondary-dark: #B45309;

    /* Neutrals */
    --dark-color: #111827;
    --text-body: #374151;
    --text-muted: #6B7280;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;

    /* Shadows */
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}

.bg-warning {
    background-color: var(--secondary-color) !important;
}

/* Navbar */
.navbar {
    background-color: var(--white) !important;
    padding: 1rem 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: var(--primary-dark) !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-body) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-login {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #ECFDF5 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero h1 {
    color: var(--dark-color);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p.lead {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
    background-color: var(--primary-dark);
    color: white;
}

.btn-hero-secondary {
    background-color: white;
    color: var(--text-body);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
    color: var(--dark-color);
}

/* Stats Cards (Now in Hero) */
.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    border: 1px solid #F3F4F6;
    height: 100%;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sections General */
section {
    position: relative;
    padding: 80px 0;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Styles */
.card-custom {
    background: white;
    border: 1px solid #F3F4F6;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-custom:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.progress-custom {
    height: 8px;
    background-color: #F3F4F6;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar-custom {
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* About Section Styles */
.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-check {
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background-color: #F8F9FA;
    color: var(--text-body);
    padding-top: 5rem;
    border-top: 1px solid #E5E7EB;
}

footer h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #E5E7EB;
    padding: 2rem 0;
    margin-top: 4rem;
}
/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper {
    padding-bottom: 3rem !important;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}
