/* Home page specific styles */

/* Hero section */

.hero {
    padding: 0;
}

.accent {
    color: #fbbf24;
}

.number {
    font-weight: 700;
}

.hero-content {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    width: 100%;
}

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    justify-content: center;
}

.hero-button-1 {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.hero-button-1:hover {
    border: 2px solid #ffffff;
}

.hero-button-2 {
    background-color: #ffffff;
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.hero-button-2:hover {
    border: 2px solid #3b82f6;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
}

/* Services section */

.services {
    text-align: center;
    padding-top: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 30px;
    margin: 40px auto 0;
    justify-content: center;
}

.card {
    border-radius: 10px;
    border: solid 1px #e5e7eb;
    padding: 30px 40px;
    text-align: center;
    width: 280px;
    background-color: #f9fafb;
}

.card-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.testimonial-card {
    width: 320px;
}

/* Stats section */

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-around;
    background-color: #f3f4f6;
}

.stat {
    text-align: center;
    color: #3b82f6;
}

.stat h3 {
    font-size: 2.5rem;
}

.stat p {
    font-size: 1.1rem;
}

/* Testimonials */

.stars {
    color: #fbbf24;
    font-size: 20px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.client-name {
    display: grid;
    grid-template-columns: 1fr auto;
}

/* Mobile (375px) */
@media (max-width: 767px) {
    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-image {
        max-width: 100%;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .card,
    .testimonial-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Tablet (768px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .service-cards {
        grid-template-columns: repeat(2, auto);
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .card {
        width: 260px;
    }

    .testimonial-card {
        width: 300px;
    }
}
