/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px 40px;
}

.hero-section h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #f1c40f;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #d4a800;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 2px solid #fff;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Services Summary */
.services-summary {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
}

.services-summary h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Statistics */
.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
    color: #f1c40f;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f1c40f;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: bold;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Home Blog */
.home-blog {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    transition: 0.3s;
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.blog-card h3 {
    margin-bottom: 5px;
}

.blog-card h3 a {
    color: #fff;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #f1c40f;
}

.blog-date {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.read-more {
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.no-posts {
    font-size: 1.2rem;
    opacity: 0.7;
}

.view-all {
    margin-top: 30px;
}

/* Call to Action */
.cta-section {
    width: 100%;
    max-width: 900px;
    padding: 60px 30px;
    text-align: center;
    background: rgba(241, 196, 15, 0.15);
    border-radius: 15px;
    margin: 20px auto;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .services-summary h2 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}