@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e3a5f;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */

header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 190px;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 600;
}

nav a:hover {
    color: #2563eb;
}

nav a.active {
    color: #2563eb;
}

.cta-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
}

.cta-button:hover {
    background-color: #1d4ed8;
    color: white;
}

/* HERO */

.hero {
    padding: 80px 0;
}

.eyebrow {
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    color: #64748b;
}

.primary-button {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.primary-button:hover {
    background-color: #1d4ed8;
}

.services {
    background-color: #f8fafc;
    padding: 100px 0;
}

.section-label {
    color: #2563eb !important;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}


.section-link:hover {
    text-decoration: underline;
}

.services h2 {
    font-size: 42px;
    max-width: 700px;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

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

.about-preview {
    padding: 100px 0;
    background-color: white;
}

.about-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: start;
}

.about-preview h2 {
    font-size: 42px;
    line-height: 1.2;
}

.about-preview p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 18px;
}

.text-link {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.team-preview {
    padding: 100px 0;
    background-color: white;
}

.team-preview h2 {
    font-size: 42px;
    margin-bottom: 60px;
    line-height: 1.2;
    max-width: 700px;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-preview-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    filter: grayscale(100%);
}

.team-preview-card h3 {
    margin-bottom: 6px;
}

.team-preview-card p {
    color: #64748b;
}

.clients {
    background-color: white;
    padding: 100px 0;
}

.clients h2 {
    font-size: 42px;
    margin-bottom: 60px;
    line-height: 1.2;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.client-item {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.client-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.page-header {
    padding: 100px 0 60px;
}

.page-header h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-intro {
    max-width: 700px;
    font-size: 20px;
    color: #64748b;
}

/* SERVICE DETAIL PAGE */

.service-detail-section {
    padding-bottom: 100px;
}

.service-category {
    margin-bottom: 100px;
}

.service-category h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.team-section {
    padding-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.team-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.team-card p {
    color: #64748b;
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    filter: grayscale(100%);
}

.contact-section {
    padding-bottom: 100px;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 24px;
}

.contact-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 700;
    margin-bottom: 8px;
}

input,
textarea {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 16px;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

button.primary-button {
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

/* FOOTER */

footer {
    background-color: white;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}

footer p {
    color: #64748b;
}

@media (max-width: 768px) {

    .container {
        width: 88%;
    }

    header {
        padding: 24px 0;
    }

    header .container {
        flex-direction: column;
        gap: 22px;
    }

    .logo img {
        width: 220px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 22px;
    }

    nav a {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 22px;
    }

    .hero,
    .services,
    .about-preview,
    .clients,
    .team-preview,
    .page-header {
        padding: 56px 0;
    }

    .hero h1,
    .page-header h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .services h2,
    .about-preview h2,
    .clients h2,
    .team-preview h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 36px;
    }

    .hero-text,
    .page-intro,
    .about-preview p {
        font-size: 17px;
    }

    .section-label,
    .section-link {
        font-size: 13px !important;
    }

    .services-grid,
    .client-grid,
    .team-grid,
    .about-layout,
    .contact-layout,
    .team-preview-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .team-card,
    .contact-card {
        padding: 28px;
    }

    .team-preview-card img {
        max-width: 260px;
    }

}

@media (max-width: 480px) {

    .team-preview-grid {
        grid-template-columns: 1fr;
    }

    .team-preview-card img {
        max-width: 260px;
    }

}