/* services.css */

/* =========================================
   PAGE CONTAINER
========================================= */

.page-container {
    width: 90%;
    max-width: 1200px;

    margin: 30px auto;

    background: #f8fafc;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);
}

/* =========================================
   GLOBAL
========================================= */

body {
    font-family: 'Inter', sans-serif;

    background: #dbe7f5;

    color: #0f172a;

    line-height: 1.6;

    overflow-x: hidden;
}

/* =========================================
   HERO
========================================= */

.hero {
    min-height: 65vh;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('../images/image.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px 20px;
}

.hero-overlay {
    max-width: 850px;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* =========================================
   BUTTONS
========================================= */

.primary-btn,
.secondary-btn,
.service-button {
    display: inline-block;

    padding: 15px 30px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}

.primary-btn,
.service-button {
    background: #2563eb;
    color: white;
}

.primary-btn:hover,
.service-button:hover {
    background: #1d4ed8;

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(37,99,235,0.25);
}

.secondary-btn {
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

.secondary-btn:hover {
    background: white;
    color: #0f172a;
}

/* =========================================
   INTRO
========================================= */

.intro-section {
    padding: 90px 20px 40px;
    text-align: center;
}

.intro-content {
    max-width: 850px;
    margin: auto;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.intro-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================================
   SERVICES
========================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(340px, 1fr));

    gap: 35px;

    padding: 60px 8%;
}

.service-card {
    background: white;

    border-radius: 28px;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

.service-content {
    padding: 40px;
}

.service-card h2 {
    font-size: 2rem;
    line-height: 1.2;

    margin-bottom: 20px;

    color: #0f172a;
}

.service-card p {
    color: #64748b;

    margin-bottom: 25px;

    line-height: 1.8;
}

.service-card ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 12px;
    color: #334155;
}

/* =========================================
   WHY US
========================================= */

.why-us-section {
    padding: 100px 8%;
}

.why-us-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.why-card {
    background: white;

    padding: 40px;

    border-radius: 24px;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card h3 {
    margin-bottom: 15px;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section {
    padding: 100px 8%;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.testimonial-card {
    background: white;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card p {
    color: #64748b;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #2563eb;
}

/* =========================================
   CTA
========================================= */

.final-cta {
    padding: 120px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* =========================================
   FLOATING BUTTON
========================================= */

.floating-whatsapp {
    position: fixed;

    bottom: 25px;
    right: 25px;

    background: #2563eb;
    color: white;

    padding: 15px 22px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    z-index: 1000;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}

.floating-whatsapp:hover {
    background: #1d4ed8;
    transform: translateY(-4px);
}

/* =========================================
   FOOTER
========================================= */

.footer {
    margin-top: 0;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .page-container {
        width: 95%;
        margin: 15px auto;
    }

    .hero {
        min-height: auto;
        padding: 120px 20px 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .secondary-btn {
        margin-left: 0;
    }

    .services-grid,
    .why-us-section,
    .testimonials-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-content,
    .why-card,
    .testimonial-card {
        padding: 30px;
    }

    .intro-content h2,
    .why-us-container h2,
    .testimonials-section h2,
    .final-cta h2 {
        font-size: 2.2rem;
    }

    .service-card h2 {
        font-size: 1.6rem;
    }

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }

}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .intro-content h2,
    .why-us-container h2,
    .testimonials-section h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }

}