/* Landing Page Specific Styles - Isolated from main project */
/* This file only affects the landing page and won't interfere with your existing project */

/* Reset and Base Styles */
.landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    overflow-x: hidden;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Header */
.landing-page .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing-page .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

        .landing-page .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .landing-page .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .landing-page .logo i {
            font-size: 1.8rem;
            color: #fbbf24;
        }

        .landing-page .logo:hover {
            color: #1d4ed8;
        }

.landing-page .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

        .landing-page .nav-menu a {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .landing-page .nav-menu a:hover {
            color: #2563eb;
        }

.landing-page .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.landing-page .nav-menu a:hover::after {
    width: 100%;
}

.landing-page .nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

        .landing-page .btn {
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }

.landing-page .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.landing-page .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.landing-page .btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.landing-page .btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
        .landing-page .hero {
            background: linear-gradient(-45deg, #111827, #3B82F6, hwb(267 0% 2% / 0.911), #B8860B);
            background-size: 400% 400%;
            color: white;
            padding: 120px 0 80px;
            text-align: center; 
            position: relative;
            overflow: hidden;
            animation: gradient 8s ease infinite;
            z-index: 1;
        }

        .landing-page .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        .landing-page .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
            z-index: 1;
        }

        .landing-page .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

.landing-page .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.7s both;
}

        .landing-page .hero h1 .highlight {
            color: #fbbf24;
            font-weight: 900;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
        }

.landing-page .hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.landing-page .hero-disclaimer {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    text-align: center;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.landing-page .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.landing-page .btn-hero {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}


.landing-page .btn-hero-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.landing-page .btn-hero-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

.landing-page .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.landing-page .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Trust Section */
        .landing-page .trust-section {
            background: #f8fafc;
            padding: 80px 0;
            text-align: center;
            position: relative;
            z-index: 2;
        }

.landing-page .trust-section h3 {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.landing-page .trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.9;
    max-width: 100%;
    overflow: hidden;
}

.landing-page .trust-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    max-width: 200px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.landing-page .trust-logo i {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 5px;
}

.landing-page .trust-logo span {
    font-weight: 700;
    font-size: 1rem;
}

.landing-page .trust-details {
    display: none;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 10;
    max-width: calc(100vw - 40px);
}

.landing-page .trust-details p {
    font-size: 0.9rem;
    color: #1f2937;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.landing-page .trust-logo:hover {
    background: #f8fafc;
    color: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.landing-page .trust-logo.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.landing-page .trust-logo.active i {
    color: #ffffff;
}

.landing-page .trust-logo.active .trust-details {
    display: block;
}

/* Features Section */
        .landing-page .features {
            padding: 100px 0;
            background: #f8fafc;
            position: relative;
            z-index: 2;
        }

.landing-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-page .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.landing-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.landing-page .section-subtitle {
    font-size: 1.2rem;
    color: #1f2937;
    max-width: 600px;
    margin: 0 auto;
}

.landing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.landing-page .feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.landing-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.landing-page .feature-card:hover::before {
    transform: scaleX(1);
}

.landing-page .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.landing-page .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.landing-page .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    animation: none;
}

.landing-page .feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.landing-page .feature-description {
    color: #1f2937;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-page .nav-menu {
        display: none;
    }

    .landing-page .hero h1 {
        font-size: 2.5rem;
    }

    .landing-page .hero p {
        font-size: 1.1rem;
    }

    .landing-page .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .landing-page .btn-hero {
        width: 100%;
        max-width: 300px;
    }

    .landing-page .features-grid {
        grid-template-columns: 1fr;
    }

    /* Fix trust-logos mobile layout */
    .landing-page .trust-logos {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 10px;
    }

    .landing-page .trust-logo {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 15px 20px;
        margin: 0;
    }

    .landing-page .trust-details {
        position: static;
        transform: none;
        margin-top: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid #e5e7eb;
    }

    /* Additional mobile improvements */
    .landing-page .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .landing-page .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .landing-page .container {
        padding: 0 15px;
    }

    .landing-page .hero {
        padding: 60px 0;
    }

    .landing-page .features,
    .landing-page .services,
    .landing-page .pricing,
    .landing-page .testimonials,
    .landing-page .why,
    .landing-page .who,
    .landing-page .cta-section {
        padding: 60px 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .landing-page .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .landing-page .hero p {
        font-size: 1rem;
    }

    .landing-page .section-title {
        font-size: 1.6rem;
    }

    .landing-page .trust-logo {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .landing-page .trust-logo i {
        font-size: 1.2rem;
    }

    .landing-page .container {
        padding: 0 10px;
    }
}

        /* CTA Section */
         .landing-page .cta-section {
             padding: 100px 0;
             background: linear-gradient(-45deg, #111827, #3B82F6, hwb(267 0% 2% / 0.911), #B8860B);
             background-size: 400% 400%;
             animation: gradient 8s ease infinite;
             color: white;
             text-align: center;
             position: relative;
             z-index: 2;
         }
        
        .landing-page .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .landing-page .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .landing-page .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .landing-page .footer {
            background: #1f2937;
            color: white;
            padding: 60px 0 40px;
            position: relative;
            z-index: 2;
        }

        .landing-page .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .landing-page .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .landing-page .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }

        .landing-page .footer-logo i {
            font-size: 1.8rem;
            color: #fbbf24;
        }

        .landing-page .social-links {
            display: flex;
            gap: 15px;
        }

        .landing-page .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .landing-page .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .landing-page .copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0;
        }

        .landing-page .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .landing-page .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .landing-page .footer-section ul li {
            margin-bottom: 12px;
        }

        .landing-page .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .landing-page .footer-section ul li a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .landing-page .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* Testimonials Section */
        .landing-page .testimonials {
            padding: 100px 0;
            background: #f8fafc;
            position: relative;
            z-index: 2;
        }

        .landing-page .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .landing-page .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .landing-page .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .landing-page .testimonial-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #374151;
            margin-bottom: 20px;
            font-style: italic;
        }

        .landing-page .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .landing-page .author-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
            margin: 0 0 5px 0;
        }

        .landing-page .author-info p {
            font-size: 0.9rem;
            color: #6b7280;
            margin: 0;
        }

        @media (max-width: 480px) {
            .landing-page .hero h1 {
                font-size: 2rem;
            }

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

            .landing-page .feature-card {
                padding: 30px 20px;
            }
            
            .landing-page .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .landing-page .btn-hero {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Services Section */
        .landing-page .services {
            padding: 80px 0;
            background: #f8fafc;
        }

        .landing-page .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .landing-page .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .landing-page .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .landing-page .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .landing-page .service-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .landing-page .service-description {
            color: #1f2937;
            line-height: 1.6;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .landing-page .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .landing-page .service-card {
                padding: 30px 20px;
            }
        }
