/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #191919;
    --gray-medium: #6d6767;
    --gray-light: #e5e3e3;
    --orange: #dd7a00;
    --orange-light: #bd6900;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 27px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
}

.logo-img {
    height: 78px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 55px;
    margin-left: auto;
    margin-right: 60px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.btn-contact {
    border: 1px solid var(--gray-light);
    border-radius: 18.5px;
    padding: 7px 21px;
    text-decoration: none;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    background: var(--white);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 125px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffd9a8 50%, #a8e6cf 100%);
    border-radius: 29px;
    padding: 89px 0 26px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-welcome {
    font-family: 'Roboto', sans-serif;
    font-size: 24.04px;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-welcome strong {
    font-weight: 700;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 55.701px;
    line-height: 71px;
    color: var(--black);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 66px;
    line-height: 1.4;
}

.hero-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid #e9e9e9;
    border-radius: 28.5px;
    padding: 9px;
    max-width: 458px;
}

.hero-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #919191;
}

.btn-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 19.5px;
    padding: 12px 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-submit:hover {
    background: #333;
    transform: scale(1.05);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 667px;
    object-fit: contain;
}

/* ===== THREE STEPS SECTION ===== */
.three-steps {
    padding: 80px 0;
}

.section-label {
    font-family: 'Roboto', sans-serif;
    font-size: 24.04px;
    color: #514f4f;
    text-align: center;
    margin-bottom: 10px;
}

.section-label strong {
    font-weight: 700;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    line-height: 71px;
    text-align: center;
    margin-bottom: 60px;
}

.section-title strong {
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.step-card {
    text-align: left;
}

.step-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 38px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 71px;
    margin-bottom: 6px;
}

.step-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #5f5f5f;
    line-height: 1.5;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    margin-top: 50px;
}

.project-card {
    background: var(--white);
    border-radius: 26.905px;
    box-shadow: 2.69px 8.968px 18.833px 0.897px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 217.928px;
    overflow: hidden;
    border-radius: 26.905px 26.905px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 23.317px;
    margin-bottom: 8px;
}

.project-info > p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 12.556px;
    color: var(--gray-medium);
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-price {
    font-family: 'Roboto', sans-serif;
    font-size: 17.937px;
}

.project-price strong {
    font-size: 43.048px;
    font-weight: 700;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 10.762px;
    text-decoration: none;
    color: var(--black);
    padding: 8px 16px;
    border-radius: 13.004px;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #f5f5f5;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.services-content {
    padding-right: 40px;
}

.services-content .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 23.692px;
}

.services-list .icon {
    font-size: 31.984px;
    flex-shrink: 0;
}

.services-image {
    border-radius: 46px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 80px 0;
}

.team-wrapper {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 80px;
    margin-top: 50px;
}

.team-image {
    border-radius: 46px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-member {
    padding: 24px 0;
    border-bottom: 2px solid #e5e5e5;
}

.team-member.featured {
    color: var(--orange);
}

.team-member h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 55.701px;
    line-height: 71px;
    margin-bottom: 4px;
}

.team-member.featured h3 {
    font-weight: 600;
}

.team-member p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 38.56px;
}

.team-member.featured p {
    color: var(--orange-light);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 683px 1fr;
    gap: 80px;
    margin-top: 50px;
}

.testimonial-image {
    border-radius: 46px;
    overflow: hidden;
    height: 521px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px 0;
}

.rating-box {
    text-align: left;
    margin-bottom: 40px;
}

.rating-score {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 71px;
    display: inline-block;
    margin-right: 20px;
}

.stars {
    display: inline-block;
    color: #ffa500;
    font-size: 28px;
    letter-spacing: 4px;
}

.rating-count {
    font-family: 'Poppins', sans-serif;
    font-size: 34.255px;
    line-height: 43.431px;
    margin-top: 8px;
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text .quote {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-text.active .quote {
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 34.255px;
    line-height: 43.431px;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-family: 'Poppins', sans-serif;
    font-size: 18.431px;
    line-height: 23.368px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 62px 0 0;
    position: relative;
}

.footer-content {
    padding-bottom: 60px;
}

.footer-logo {
    height: 129.75px;
    width: auto;
    margin-bottom: 30px;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 80px;
    max-width: 600px;
}

.footer-contact {
    margin-bottom: 48px;
}

.footer-contact .phone {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 12px;
}

.footer-contact .email {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-bottom: 52px;
}

.social-links a {
    width: 73.278px;
    height: 73.278px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 32px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 2vw;
}

.footer-bottom strong {
    font-weight: 700;
}

.footer-brand {
    text-align: center;
    overflow: hidden;
    padding-top: 0px;
    max-height: 106px;
    color: gray;
}

.footer-brand h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 145.803px;
    letter-spacing: 8px;
}

.footer-brand span {
    font-weight: 400;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-wrapper,
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-brand h2 {
        font-size: 80px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 105px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-contact {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .steps-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }

    .section-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .steps-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .team-member h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .footer-brand h2 {
        font-size: 40px;
    }

    .footer-tagline,
    .footer-contact .phone,
    .footer-contact .email {
        font-size: 24px;
    }
}
