/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    background: #0a0a0a;
}

/* ========== Layout ========== */
.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.left,
.right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

/* ========== LEFT SIDE ========== */
.left {
    background:
        linear-gradient(rgba(8, 18, 35, 0.78), rgba(8, 18, 35, 0.82)),
        url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: #fff;
}

.left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 520px;
}

.brand {
    margin-bottom: 50px;
    display: inline-block;
}

.brand-logo {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
    background: #fff;
    padding: 18px 26px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.launch-text h2 {
    font-size: 2.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1.4;
}

.launch-text h2.bold {
    font-weight: 700;
    letter-spacing: 5px;
}

.subtitle {
    margin-top: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d4d4d4;
    font-weight: 300;
}

.contact-info {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.contact-info li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info span {
    color: #1a9bd8;
    font-size: 1rem;
}

.contact-info a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover,
.contact-info a:focus {
    color: #1a9bd8;
    text-decoration: underline;
}

/* ========== RIGHT SIDE ========== */
.right {
    background: #1a64c4;
}

.form-wrapper {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.title-divider {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 22px;
}

.title-divider span {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #fff;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #e5edf7;
    margin-bottom: 30px;
    font-weight: 300;
}

/* ========== FORM ========== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input {
    flex: 1;
    min-width: 0;
}

.contact-form input,
.contact-form textarea {
    background: #2f7ad1;
    border: none;
    outline: none;
    padding: 16px 18px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #d8e5f5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #3a86dc;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.send-btn {
    margin-top: 8px;
    background: #fff;
    color: #d9354e;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    padding: 16px 30px;
    font-size: 0.9rem;
    cursor: pointer;
    align-self: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    border-radius: 2px;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .brand-logo { width: 230px; padding: 14px 20px; }
    .launch-text h2 { font-size: 1.6rem; letter-spacing: 2px; }
    .launch-text h2.bold { letter-spacing: 3px; }
    .form-title { font-size: 1.8rem; letter-spacing: 3px; }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left,
    .right {
        flex: none;
        width: 100%;
        padding: 60px 25px;
    }

    .brand { margin-bottom: 30px; }
    .brand-logo { width: 200px; padding: 12px 18px; }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .left, .right { padding: 50px 20px; }
    .brand-logo { width: 170px; padding: 10px 14px; }
    .launch-text h2 { font-size: 1.3rem; letter-spacing: 2px; }
    .form-title { font-size: 1.5rem; }
    .send-btn { width: 100%; padding: 14px; }
}
