@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.75);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 100px);
    min-height: 100vh;
    padding: 120px clamp(40px, 6vw, 120px) 60px;
    width: 100%;
    box-sizing: border-box;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    flex: 1;
    min-width: 0;
}

.hero-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: clamp(48px, 4.5vw, 65px);
    line-height: 1.18;
    color: #ffffff;
}

.hero-subtitle {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
    color: #ffffff;
    max-width: 547px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 28px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(52px);
    border-radius: 1000000px;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 28px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(52px);
    border-radius: 1000000px;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-right {
    width: clamp(400px, 38vw, 680px);
    flex-shrink: 0;
    align-self: center;
    margin-top: 60px;
}

.hero-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
    min-height: 530px;
    background: rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(87px);
    border-radius: 20px;
    padding: clamp(28px, 3vw, 44px);
    box-sizing: border-box;
    justify-content: center;
}

.form-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.form-subtitle {
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.full {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    height: 48px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffffff;
}

.btn-send {
    width: 100%;
    height: 54px;
    background: #004882;
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    color: #ffffff;
    border: none;
    border-radius: 1000000px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0px 4px 24px rgba(0, 72, 130, 0.5);
}

.btn-send:hover {
    background: #003366;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1600px) {
    .hero-right {
        width: 560px;
    }

    .hero-form-wrap {
        height: 580px;
    }
}

@media (max-width: 1280px) {
    .hero-inner {
        padding: 0 40px;
    }

    .hero-left {
        max-width: 460px;
    }

    .hero-right {
        width: 440px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-inner {
        flex-direction: column;
        justify-content: center;
        padding: 120px 30px 60px 30px;
        height: auto;
        min-height: 100vh;
        gap: 40px;
        margin-top: 0;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 44px;
        line-height: 54px;
    }

    .hero-right {
        width: 100%;
    }

    .hero-form-wrap {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 100px 20px 40px 20px;
        gap: 32px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        text-align: center;
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 90px 16px 32px 16px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .form-title {
        font-size: 20px;
    }
}