/* Modern Contact Page Styles */

.contact-section {
    padding: 120px 0 80px;
    background: #fbfdff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Contact Info Side */
.contact-info-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-info-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-card p {
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: var(--secondary-color);
}

.info-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-text p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Contact Form Side */
.contact-form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.required-star {
    color: #ef4444;
    margin-left: 2px;
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 120px;
    padding: 10px 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.country-code:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Success Message */
.success-banner {
    background: #dcfce7;
    color: #166534;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: none;
    align-items: center;
    gap: 12px;
    border: 1px solid #bbf7d0;
}

.success-banner.visible {
    display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 60px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}