/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #1f2933;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
}

/* HEADER */
header {
    background: #ffffff;
    padding: 22px 0;
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #1f2933;
}

nav a {
    color: #1f2933;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
}

nav a:hover {
    color: #f97316;
}

/* HERO */
.hero {
    padding: 40px 0 80px;
}

.hero-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.hero-wrapper img {
    width: 100%;
    display: block;
}

.hero-text {
    position: absolute;
    top: 18%;
    left: 7%;
    max-width: 520px;
    color: white;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.55);
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 28px;
}

/* BUTTONS */
.button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8a00, #f97316);
    color: #111827;
    padding: 15px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.button:hover {
    transform: translateY(-3px);
}

/* PROJECTS */
.projects-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card,
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.project-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.project-card h3,
.project-card p,
.service-card h3,
.service-card p {
    padding-left: 25px;
    padding-right: 25px;
}

.project-card h3,
.service-card h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 22px;
}

.project-card p,
.service-card p {
    padding-bottom: 28px;
    color: #4b5563;
}

/* SERVICES */
#services {
    background: #ffffff;
}

.service-card {
    padding: 10px 0;
    border-top: 5px solid #f97316;
}

/* STATS */
#stats {
    background: #1f2933;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stats-grid h3 {
    color: #f97316;
    font-size: 48px;
    margin-bottom: 10px;
}

.stats-grid p {
    color: #d1d5db;
}

/* CONTACT */
#contact {
    background: #f5f7fa;
    text-align: center;
}

#contact > .container > p {
    color: #4b5563;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

/* FOOTER */
footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 45px 20px;
}

footer h3 {
    color: #f97316;
    font-size: 26px;
    margin-bottom: 15px;
}

footer p {
    color: #d1d5db;
    margin: 7px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero-text {
        position: static;
        background: #1f2933;
        padding: 30px;
        text-shadow: none;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .projects-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}