* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}


/* =========================
   NAVIGATION
========================= */

nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    width: 115px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a:hover {
    color: #d99a20;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.62)
        ),
        #303030;

    color: white;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 35px;

    font-size: 20px;
    color: #eeeeee;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;

    padding: 14px 28px;

    background: #d99a20;
    color: #111;

    border-radius: 4px;

    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    transition: 0.2s ease;
}

.button:hover {
    background: #e8ad36;
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.button-outline:hover {
    background: white;
    color: #111;
}


/* =========================
   GENERAL SECTIONS
========================= */

section {
    padding: 90px 20px;
}

section h2 {
    text-align: center;

    font-size: 38px;
    line-height: 1.2;

    margin-bottom: 15px;
}

.section-intro {
    max-width: 650px;
    margin: 0 auto 50px;

    text-align: center;

    color: #777;
    font-size: 17px;
}


/* =========================
   SERVICES
========================= */

.services {
    max-width: 1150px;
    margin: auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 6px;

    padding: 30px 25px;

    text-align: center;

    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #d99a20;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #777;
    font-size: 15px;
}


/* =========================
   PAGE HEADER
========================= */

.page-header {
    background: #171717;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    color: #cccccc;
    font-size: 18px;
    max-width: 650px;
    margin: auto;
}


/* =========================
   WORK / GALLERY
========================= */

.work {
    background: #f7f7f7;
}

.work-page {
    background: #ffffff;
    max-width: 1200px;
    margin: auto;
}

.gallery {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
}

.project {
    width: 100%;
}

.photo-placeholder {
    width: 100%;
    height: 320px;

    background: #dedede;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;

    border-radius: 6px;
}

.project h3 {
    font-size: 21px;
    margin-top: 18px;
    margin-bottom: 5px;
}

.project p {
    color: #777;
}


/* =========================
   WHY CHOOSE US
========================= */

.about {
    max-width: 1100px;
    margin: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;

    max-width: 900px;
    margin: auto;

    text-align: center;
}

.features h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.features p {
    color: #777;
}


/* =========================
   CONTACT
========================= */

.contact {
    background: #171717;
    color: white;

    text-align: center;
}

.contact h2 {
    color: white;
}

.contact > p {
    color: #cccccc;
}

.contact-details {
    margin: 30px 0;
}

.contact-details p {
    margin: 8px 0;
    color: #dddddd;
}

.contact .button {
    margin-top: 10px;
}


/* =========================
   WORK CTA
========================= */

.work-cta {
    background: #f5f5f5;
    text-align: center;
}

.work-cta p {
    color: #777;
    margin-bottom: 25px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0d0d0d;

    color: #777;

    text-align: center;

    padding: 22px 20px;

    font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 44px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .nav-container {
        padding: 12px 20px;

        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 550px;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    section {
        padding: 65px 20px;
    }

    section h2 {
        font-size: 31px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}
/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    background: #f7f7f7;
}

.contact-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    text-align: left;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 35px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.contact-item p {
    color: #666;
}


/* Form */

.contact-form {
    background: white;

    padding: 35px;

    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 6px;
    margin-top: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #d8d8d8;
    border-radius: 4px;

    font-family: inherit;
    font-size: 15px;

    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d99a20;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 25px;

    padding: 14px;

    background: #d99a20;
    color: #111;

    border: none;
    border-radius: 4px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.contact-form button:hover {
    background: #e8ad36;
}


/* Contact mobile */

@media (max-width: 800px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2,
    .contact-form h2 {
        text-align: center;
    }

}
.contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d99a20;
}
/* =========================
   HOMEPAGE INTRO
========================= */

.intro {
    background: #ffffff;
}

.intro-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section-label {
    display: block;

    color: #d99a20;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.intro h2 {
    max-width: 700px;
    margin: 0 auto 20px;

    font-size: 38px;
}

.intro p {
    max-width: 700px;
    margin: auto;

    color: #666;

    font-size: 17px;
}

.text-link {
    display: inline-block;

    margin-top: 25px;

    color: #222;

    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: #d99a20;
}


/* =========================
   HOMEPAGE SERVICES
========================= */

.home-services {
    background: #f7f7f7;

    padding-top: 0;
}

.home-services-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ddd;
}

.home-service {
    padding: 45px 35px;

    border-right: 1px solid #ddd;
}

.home-service:last-child {
    border-right: none;
}

.service-number {
    display: block;

    color: #d99a20;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.home-service h3 {
    font-size: 24px;

    margin-bottom: 12px;
}

.home-service p {
    color: #666;

    font-size: 15px;
}


/* =========================
   WHY US
========================= */

.why-us {
    background: #171717;

    color: white;
}

.why-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.why-heading {
    text-align: left;
}

.why-heading h2 {
    text-align: left;

    font-size: 42px;
}

.why-features {
    display: flex;
    flex-direction: column;

    gap: 30px;
}

.why-feature {
    border-bottom: 1px solid #333;

    padding-bottom: 25px;
}

.why-feature:last-child {
    border-bottom: none;
}

.why-feature h3 {
    font-size: 20px;

    margin-bottom: 7px;
}

.why-feature p {
    color: #aaa;

    font-size: 15px;
}


/* =========================
   FEATURED WORK
========================= */

.featured-work {
    background: #ffffff;
}

.featured-container {
    max-width: 1100px;
    margin: auto;
}

.featured-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    margin-bottom: 40px;
}

.featured-heading h2 {
    text-align: left;

    margin: 0;
}

.featured-heading .text-link {
    margin: 0;
}

.featured-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.featured-placeholder {
    height: 280px;

    background: #dedede;

    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
}

.featured-project h3 {
    margin-top: 15px;

    font-size: 19px;
}

.featured-project p {
    color: #888;

    font-size: 14px;
}


/* =========================
   HOMEPAGE CTA
========================= */

.home-cta {
    background: #d99a20;

    text-align: center;

    color: #111;
}

.home-cta .section-label {
    color: #111;
}

.home-cta h2 {
    font-size: 42px;

    margin-bottom: 10px;
}

.home-cta p {
    margin-bottom: 25px;

    font-size: 17px;
}

.home-cta .button {
    background: #111;

    color: white;
}

.home-cta .button:hover {
    background: #222;
}


/* =========================
   HOMEPAGE MOBILE
========================= */

@media (max-width: 800px) {

    .home-services-container {
        grid-template-columns: 1fr;
    }

    .home-service {
        border-right: none;

        border-bottom: 1px solid #ddd;
    }

    .why-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-heading h2 {
        font-size: 34px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-heading {
        align-items: start;

        flex-direction: column;

        gap: 10px;
    }

}


@media (max-width: 600px) {

    .intro h2 {
        font-size: 30px;
    }

    .home-cta h2 {
        font-size: 32px;
    }

}
/* =========================
   SERVICES PAGE
========================= */

.service-list {
    max-width: 1000px;
    margin: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

.service-detail {
    display: grid;
    grid-template-columns: 100px 1fr;

    gap: 40px;

    padding: 55px 0;

    border-bottom: 1px solid #ddd;
}

.service-detail:first-child {
    padding-top: 0;
}

.service-detail-number {
    color: #d99a20;

    font-size: 16px;
    font-weight: 700;

    padding-top: 5px;
}

.service-detail-content h2 {
    text-align: left;

    font-size: 30px;

    margin-bottom: 15px;
}

.service-detail-content p {
    max-width: 700px;

    color: #666;

    font-size: 16px;

    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 8px 30px;

    max-width: 650px;
}

.service-detail-content li {
    font-size: 14px;
    font-weight: 600;
}

.service-detail-content li::before {
    content: "✓";

    color: #d99a20;

    margin-right: 9px;
}


/* Services CTA */

.service-cta {
    background: #f5f5f5;

    text-align: center;
}

.service-cta h2 {
    margin-bottom: 10px;
}

.service-cta p {
    color: #666;

    margin-bottom: 25px;
}


/* Services mobile */

@media (max-width: 700px) {

    .service-detail {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .service-detail-content h2 {
        font-size: 26px;
    }

    .service-detail-content ul {
        grid-template-columns: 1fr;
    }

}
/* =========================
   PROJECTS PAGE
========================= */

.projects-page {
    background: #f7f7f7;

    padding-top: 70px;
    padding-bottom: 90px;
}

.projects-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px 25px;
}

.project-card {
    background: white;

    border: 1px solid #e5e5e5;

    border-radius: 6px;

    overflow: hidden;

    transition: 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Project image */

.project-image {
    height: 330px;

    background: #dedede;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #888;

    font-size: 14px;
}

.project-content {
    padding: 25px 28px 30px;
}

.project-category {
    color: #d99a20;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-content h2 {
    text-align: left;

    font-size: 25px;

    margin-top: 7px;
    margin-bottom: 8px;
}

.project-content p {
    color: #666;

    font-size: 15px;
}


/* Projects mobile */

@media (max-width: 700px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 260px;
    }

}