/* Premium Light Theme for Home Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #a855f7;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --border-light: #e2e8f0;
}

body.home-page {
    font-family: 'Inter', sans-serif !important;
    background-color: var(--bg-light) !important;
    color: var(--text-dark) !important;
    margin: 0;
    padding: 0;
    padding-top: 70px !important;
    overflow-x: hidden;
}

/* Full Width Containers */
.full-width-section {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Hero Section */
.hero-section-light {
    padding: 140px 0 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(-15deg) rotateX(8deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.hero-title-light {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
    letter-spacing: -0.04em;
}

.hero-subtitle-light {
    font-size: 1.35rem;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 550px;
    font-weight: 400;
}

/* Buttons */
.btn-premium-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    margin: 0 8px;
}

.btn-white {
    background: white;
    color: var(--primary) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary) !important;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card-light {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

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

.feature-icon-light {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    margin-right: 20px;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-light {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Navbar Override for Light Theme - FIXED */
.navbar-light-theme {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
}

.navbar-light-theme.scrolled {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}

.navbar-light-theme .navbar-brand {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-light-theme .navbar-nav>li>a {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.navbar-light-theme .navbar-nav>li>a:hover {
    color: var(--primary) !important;
}

.navbar-light-theme .navbar-toggle .icon-bar {
    background-color: var(--text-dark) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-light {
        font-size: 2.5rem;
    }

    .hero-subtitle-light {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}