:root {
    --primary: #FEEF06;
    --primary-hover: #e6d805;
    --secondary: #1E293B;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border-radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif; /* Fallback/Base */
    color: var(--text-dark);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

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

.bg-primary {
    background-color: var(--primary) !important;
    color: var(--text-dark) !important;
}

.bg-light-alt {
    background-color: var(--bg-light);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar-landing {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #dcb300 !important; /* Darker yellow */
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Navbar Centering */
@media (min-width: 992px) {
    .navbar-landing .navbar-collapse {
        position: relative;
    }
    .navbar-landing .navbar-nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    overflow: hidden;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 8px solid rgba(255, 255, 255, 0.5);
}

/* Stats Section */
.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary); /* Yellow numbers? might be hard to read on white. Maybe dark with yellow accent */
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.stats-number::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(254, 239, 6, 0.3); /* Yellow highlight */
    z-index: -1;
}

.stats-label {
    font-weight: 600;
    color: var(--text-gray);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-light);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(254, 239, 6, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #b7950b; /* Darker yellow text */
    margin-bottom: 1.5rem;
}

/* Steps */
.step-item {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Partner Cards */
.partner-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    color: var(--white);
    min-height: 400px; /* Taller */
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    background-size: cover;
    background-position: center;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.partner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: var(--text-dark);
    border-radius: 24px;
    margin: 2rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

/* Footer */
.footer-modern {
    background-color: var(--white);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--bg-light);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    .hero-img {
        margin-top: 2rem;
    }
    .partner-card {
        margin-bottom: 2rem;
    }
}
