*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fc 100%);
    min-height: 100vh;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5aa0;
}

.logo-sub {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5aa0;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    background: white;
    cursor: pointer;
}

.contact-btn {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
   
}

.contact-btn:hover {
    font-weight: 550;
}

/* Main Content */
.main-container {
    display: flex;
    min-height: calc(100vh - 100px);
    align-items: center;
    justify-content: space-around;
    padding: 2rem 3rem;
    gap: 4rem;
}

.content-section {
    flex: 1;
    max-width: 600px;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(44, 90, 160, 0.15);
    color: #2c5aa0;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.main-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Form Section */
.form-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.phone-input-container {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0;
    font-size: 1rem;
    width: 100px;
    text-align: center;
}

.phone-input {
    flex: 1;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Message Styles */
.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Background Decoration */
.bg-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23e8f4f8;stop-opacity:0.6" /><stop offset="100%" style="stop-color:%23d6eaf8;stop-opacity:0.3" /></linearGradient></defs><path d="M0,300 Q300,200 600,250 T1200,200 L1200,400 L0,400 Z" fill="url(%23grad1)"/></svg>') no-repeat center bottom;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        padding: 2rem;
        gap: 3rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .header {
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .header-controls {
        gap: 0.5rem;
    }

    .contact-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .main-container {
        padding: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .form-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .phone-input-container {
        flex-direction: column;
    }

    .country-code {
        width: 100%;
    }
}