/* Landing Page Custom Styling */
:root {
    --primary-color: #0D9488;
    --primary-soft: #f0eeff;
    --secondary-color: #10b981;
    --dark-bg: #0f0c29;
    --text-main: #2d3748;
    --text-muted: #718096;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    overflow-x: hidden;
}

.font-outfit { font-family: var(--font-heading); }

/* Navbar */
.landing-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
}
.brand-text span { color: var(--primary-color); }

.logo-box {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
}
.nav-link:hover { color: var(--primary-color) !important; }

.btn-login {
    color: var(--primary-color);
    font-weight: 600;
}
.btn-register {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-weight: 600;
}
.btn-register:hover {
    background: #5b4dbd;
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.2;
}
.hero-title span { color: var(--primary-color); }

.badge-new {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(13, 148, 136, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.btn-primary-premium {
    background: var(--primary-color);
    color: white;
    border-radius: 14px;
    padding: 14px 30px;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

.btn-outline-premium {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 14px;
    padding: 12px 30px;
    font-weight: 700;
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    animation: floating 3s ease-in-out infinite;
}

.c1 { top: 20%; left: -10%; animation-delay: 0s; }
.c2 { bottom: 20%; right: -5%; animation-delay: 1.5s; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features */
.section-padding { padding: 100px 0; }
.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
    margin-top: 15px;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 20px;
    margin: 0 auto;
}
.ib-1 { background: #eef2ff; color: #4f46e5; }
.ib-2 { background: #ecfdf5; color: #10b981; }
.ib-3 { background: #fff7ed; color: #f97316; }

.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}

/* Stats */
.stats-bg {
    background: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color) 0%, #4a3eb3 100%);
}

/* Footer */
.footer-section {
    background: #f8f9fa;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
