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

:root {
    --primary-color: #FFA500;
    --secondary-color: #FFD700;
    --dark-bg: #1a2332;
    --darker-bg: #0f1419;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #F44336;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
}

.landing-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

/* Left Side - Company Info */
.landing-info {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    color: var(--text-light);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-section {
    margin-bottom: 50px;
}

.logo-section h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.tagline {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
}

.info-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.feature-text p {
    font-size: 14px;
    color: #aaa;
}

.services-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.services-highlight h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-highlight ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.services-highlight ul li {
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-highlight ul li i {
    color: var(--primary-color);
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 25px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Right Side - Form */
.landing-form-section {
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    font-size: 16px;
}

.error-alert {
    background: #fee;
    color: var(--error-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--error-color);
    animation: slideIn 0.3s ease;
}

.landing-form .form-group {
    margin-bottom: 25px;
}

.landing-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.landing-form input,
.landing-form textarea,
.landing-form select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.landing-form input:focus,
.landing-form textarea:focus,
.landing-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--dark-bg);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--darker-bg);
}

.privacy-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: var(--success-color);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: white;
    animation: scaleIn 0.5s ease;
}

.success-message h2 {
    font-size: 36px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .landing-container {
        grid-template-columns: 1fr;
    }
    
    .landing-info {
        padding: 40px 30px;
    }
    
    .landing-form-section {
        padding: 40px 30px;
    }
    
    .services-highlight ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-info {
        padding: 30px 20px;
    }
    
    .landing-form-section {
        padding: 30px 20px;
    }
    
    .logo-section h1 {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .info-content h2 {
        font-size: 24px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .feature-text h3 {
        font-size: 16px;
    }
    
    .success-message {
        padding: 40px 20px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .success-message h2 {
        font-size: 28px;
    }
    
    .success-message p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .landing-info {
        padding: 20px 15px;
    }
    
    .landing-form-section {
        padding: 20px 15px;
    }
    
    .logo-section h1 {
        font-size: 28px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .landing-form input,
    .landing-form textarea,
    .landing-form select {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 14px;
        font-size: 14px;
    }
}
