/* Contact Page Styles */

/* Let's Connect Section */
.lets-connect-section {
    padding: 40px 0 20px;
    text-align: center;
}

.lets-connect-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.lets-connect-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Column */
.contact-info-column {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-header {
    background: linear-gradient(135deg, #4a6cf7, #2651e9);
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info-content {
    padding: 20px;
}

.info-group {
    margin-bottom: 25px;
}

.info-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-detail {
    display: flex;
    align-items: center;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #e7f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #4a6cf7;
}

.social-connect {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon.twitter {
    background-color: #1DA1F2;
}

.social-icon.facebook {
    background-color: #4267B2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.discord {
    background-color: #7289DA;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Column */
.contact-form-column {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    background: linear-gradient(135deg, #4a6cf7, #2651e9);
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form-content {
    padding: 20px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.input-field i {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6cf7;
    background-color: #f8f9fa;
    height: 100%;
    border-right: 1px solid #ddd;
}

.input-field input,
.input-field textarea {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.textarea-field {
    align-items: flex-start;
}

.textarea-field i {
    height: 40px;
}

.recaptcha-container {
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4a6cf7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2651e9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 60px 0;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.faq-preview-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6cf7, #2651e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.faq-preview-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-preview-card p {
    color: #666;
    margin-bottom: 20px;
}

.success-message p {
    margin: 0;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-info-content,
    .contact-form-content {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}
