/* assets/css/pages/index.css - Landing Page Styles */

/* Landing Page Layout */
.landing-page-content {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--theme-light-gray) 0%, #ffffff 100%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--theme-white) 0%, var(--theme-light-gray) 50%, #fff8e1 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::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 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23FFC107" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--theme-dark-gray);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: var(--theme-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    margin-top: 2rem;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--theme-dark-yellow) 0%, var(--theme-dark-yellow-hover) 100%);
    border: none;
    color: var(--theme-dark-gray);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, var(--theme-dark-yellow-hover) 0%, #d39e00 100%);
}

.hero-buttons .btn-outline {
    border: 2px solid var(--theme-dark-yellow);
    color: var(--theme-dark-yellow);
    background: var(--theme-white);
}

.hero-buttons .btn-outline:hover {
    background: var(--theme-dark-yellow);
    color: var(--theme-dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

/* Landing Sections */
.landing-section {
    padding: 4rem 0;
    position: relative;
}

.landing-section:nth-child(even) {
    background: var(--theme-white);
}

.landing-section:nth-child(odd) {
    background: var(--theme-light-gray);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-dark-yellow) 0%, var(--theme-dark-yellow-hover) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--theme-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--theme-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--theme-medium-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-dark-yellow) 0%, var(--theme-dark-yellow-hover) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--theme-dark-yellow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-dark-yellow) 0%, var(--theme-dark-yellow-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--theme-dark-gray);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--theme-dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--theme-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--theme-light-gray) 0%, var(--theme-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--theme-medium-gray);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--theme-dark-yellow);
    font-weight: bold;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--theme-dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-dark-yellow) 0%, var(--theme-dark-yellow-hover) 100%);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--theme-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-dark-gray);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--theme-dark-yellow) 0%, var(--theme-dark-yellow-hover) 100%);
    color: var(--theme-dark-gray);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--theme-dark-gray);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--theme-white);
    color: var(--theme-dark-yellow);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: #f8f9fa;
    color: var(--theme-dark-yellow-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .testimonial-card {
        margin: 0 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .landing-section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 3rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
}