* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0d2a1a 0%, #061218 50%, #000000 100%);
    min-height: 100%;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 10, 0.95) 0%, rgba(6, 18, 24, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: -1;
}

.container {
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
}

/* Left Section - Brand Image */
.left-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 65%;
    height: 100%;
    flex-shrink: 0;
}

.brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.main-brand-image {
    width: 120%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.main-brand-image:hover {
    transform: none;
    box-shadow: none;
}

/* Right Section - Form */
.right-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 40px;
    flex-shrink: 0;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-header p {
    color: #d1d5db;
    font-size: 1rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #ffffff;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.form-footer p {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 15% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.modal-body {
    padding: 20px 30px;
}

.modal-body p {
    color: #d1d5db;
    text-align: center;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.modal-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .left-section {
        align-items: center;
        order: 1;
        width: 100%;
        height: 40vh;
    }
    
    .right-section {
        order: 2;
        width: 100%;
        padding: 40px;
    }
    
    .brand-image {
        max-width: none;
    }
    
    .main-brand-image {
        width: 100%;
        height: 100%;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .left-section {
        order: 1;
        width: 100%;
        height: 35vh;
    }
    
    .right-section {
        order: 2;
        width: 100%;
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 30px 25px;
    }
    
    .brand-image {
        max-width: none;
    }
    
    .main-brand-image {
        width: 100%;
        height: 100%;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .left-section {
        order: 1;
        width: 100%;
        height: 30vh;
    }
    
    .right-section {
        order: 2;
        width: 100%;
        padding: 20px 15px;
    }
    
    .brand-image {
        max-width: none;
    }
    
    .main-brand-image {
        width: 100%;
        height: 100%;
        object-position: center;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-group input {
        padding: 14px 16px;
    }
    
    .submit-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
}
