﻿/* ================== BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: #171717;
    background: #ffffff;
}

.main-wrapper {
    width: 100%;
    min-height: 100vh;
}

/* ================== TOP UI ================== */
.top-ui {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo-img {
    width: 150px;
    display: block;
}
/* ================== HERO ================== */
.hero {
    min-height: auto;
    padding: 40px 24px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 820px;
}

.hero h1 {
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -3px;
    color: #111;
}

.hero h2 {
    margin-top: 10px;
    font-size: clamp(16px, 2.4vw, 30px);
    line-height: 1.1;
    font-weight: 400;
    color: #333;
}

.hero p {
    max-width: 620px;
    margin: 18px auto 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ================== CONTACT ================== */
.contact {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 0px 24px 90px;
}

.icons {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    display: none;
}

.services-title {
    font-size: 28px;
    margin-bottom: 22px;
    color: #111;
    text-align: center;
}

.contact-box {
    margin-top: 20px;
    padding: 34px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    background: #fafafa;
}

    .contact-box p {
        color: #555;
        line-height: 1.7;
        font-size: 15px;
    }

.contact-form {
    width: 100%;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.16);
        color: #111;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 14px;
        outline: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #888;
        }

    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }

.cta {
    width: 100%;
    padding: 15px 24px;
    border-radius: 999px;
    border: 1px solid #111;
    color: #fff;
    background: #111;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s ease;
}

    .cta:hover {
        background: #333;
        border-color: #333;
        transform: translateY(-2px);
    }

.contact-note {
    margin-top: 18px;
    font-size: 13px !important;
    color: #777 !important;
}

/* ================== FOOTER ================== */
.footer {
    width: 100%;
    text-align: center;
    padding: 28px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

    .footer p {
        font-size: 11px;
        color: #777;
        margin: 4px 0;
    }

/* ================== MOBILE ================== */
@media (max-width: 760px) {
    .top-ui {
        padding: 14px 16px;
    }

    .logo-img {
        width: 120px;
    }

    .hero {
        min-height: auto;
        padding: 130px 18px 55px;
    }

        .hero h1 {
            letter-spacing: -1.5px;
        }

    .contact-box {
        padding: 24px 18px;
    }
}


/* ================== BACK TO WEBSITE ================== */

.back-link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

    .back-link:hover {
        color: #333;
        text-decoration: underline;
    }