/* =====================================================
   GLOBAL HARD RESET
===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
}

/* =====================================================
   HTML / BODY
===================================================== */
html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #a8ddf0, #e0f7fa, #f7fafc);
    min-height: 100vh;
}

/* =====================================================
   ELEMENTOR – ABSOLUTE NEUTRALIZATION (CRITICAL)
===================================================== */
.elementor *,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget,
.elementor-column-wrap,
.elementor-widget-wrap {
    background: transparent !important;
    border: none !important;
}

/* REMOVE FLEX / GRID GAPS THAT CAUSE THE LINE */
.elementor-container {
    gap: 0 !important;
}

.elementor-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* REMOVE ALL PSEUDO LINES */
.elementor-section::before,
.elementor-section::after,
.elementor-container::before,
.elementor-container::after,
.elementor-column::before,
.elementor-column::after {
    content: none !important;
    display: none !important;
}

/* =====================================================
   MAIN CONTAINER (SOLID PAINT – NO SEAMS)
===================================================== */
.container {
    width: 95%;
    max-width: 900px;
    margin: 20px auto;

    background-color: #ffffff;

    border-radius: 32px;
    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}

/* =====================================================
   FORCE SAME BACKGROUND ON ALL DIRECT CHILDREN
===================================================== */
.container > * {
    background-color: #ffffff;
}

/* =====================================================
   HEADER
===================================================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 40px;
    background-color: #f0f7ff;
}

/* =====================================================
   LOGOS
===================================================== */
.logo-main {
    max-height: 60px;
    width: auto;
    display: block;
}

/* =====================================================
   SCREEN SECTIONS
===================================================== */
.screen {
    padding: 70px 60px;
    min-height: 600px;
    display: none;
    text-align: center;
    background-color: #ffffff;
}

.screen.active {
    display: block;
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   FORM
===================================================== */
.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.form-wrapper p {
    color: #718096;
    font-size: 1.15rem;
    margin-bottom: 45px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* =====================================================
   INPUTS
===================================================== */
label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
    display: block;
}

input,
select {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 22px;
    font-size: 16px;
}

input:focus,
select:focus {
    outline: none;
    border-color: #63b3ed;
}

/* =====================================================
   BUTTON
===================================================== */
.submit-btn {
    padding: 24px 60px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
    .header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .screen {
        padding: 50px 35px;
    }
}
