/* Modern Landing Page Styles */

/* Reset and Base */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-modern .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-modern .shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero-modern .shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-modern .shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.hero-modern .shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    color: white !important;
}

.hero-content .subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    color: white !important;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary {
    background: white !important;
    color: #667eea !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea !important;
}

.btn-hero-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.btn-hero-outline:hover {
    background: white !important;
    color: #667eea !important;
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Navbar */
.navbar-modern {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0 !important;
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    padding: 12px 0 !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1) !important;
}

.navbar-brand-modern {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-link-modern {
    color: #1e293b !important;
    font-weight: 500;
    margin: 0 16px;
    transition: color 0.3s;
}

.nav-link-modern:hover {
    color: #667eea !important;
}

/* Features Section */
.features-modern {
    padding: 120px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 20px;
    color: #64748b;
}

.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white !important;
}

.feature-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card-modern p {
    color: #64748b;
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: white;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white !important;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.step-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative;
}

.pricing-modern .section-title h2 {
    color: white !important;
}

.pricing-modern .section-title p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pricing-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.pricing-card-modern.featured {
    border: 3px solid #fbbf24;
    transform: scale(1.05);
}

.pricing-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-card-modern h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 32px;
}

.pricing-price small {
    font-size: 20px;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #10b981;
    font-size: 18px;
}

/* CTA Section */
.cta-modern {
    padding: 120px 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.cta-modern h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-modern p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer-modern {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
}

.footer-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-modern a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}
