/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #34006c;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Logo Styling */
.logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

/* Consultation Section */
.consultation-section {
    text-align: center;
}

.consultation-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    height: 3px;
    width: 80px;
    background-color: #fff;
    margin: 0 auto 15px;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Form Container */
.form-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

/* Contact Info */
.contact-info {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #ff9800;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff9800;
    transform: translateY(-3px);
}

/* Form Section */
.form-section {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #ff9800;
    outline: none;
}

.phone-group {
    display: flex;
    align-items: center;
}

.country-code {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ddd;
    border-right: none;
    color: #333;
}

.phone-group input {
    border-radius: 0 5px 5px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #ff9800;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-submit {
    background-color: #ff9800;
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3);
}

.form-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.form-footer a {
    color: #673ab7;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Error Message */
.error-message {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: left;
}

/* Success Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popupAnimation 0.4s ease-out;
}

@keyframes popupAnimation {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.popup-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }
    
    .consultation-section h1 {
        font-size: 2rem;
    }
    
    .popup-content {
        padding: 30px;
        width: 95%;
    }
}