/* Modern Contact Section Styles */
.contact-form-section {
    padding: 60px 0;
    background-color: #f6f5ff;
}

.contact-card {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Left side with form */
.contact-left {
    flex: 60%;
    padding: 40px;
}

.contact-title {
    color: #6c5ce7;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

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

.modern-contact-form label {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f8f8ff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
    border-color: #6c5ce7;
}

.modern-contact-form textarea {
    resize: none;
    min-height: 120px;
}

.send-message-btn {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.send-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

/* Right side with contact info */
.contact-right {
    flex: 40%;
    background-color: #6c5ce7;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Company Name Styling - Added for Let's Talk section */
.company-name-container {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 10px 0;
}

.company-logo {
    font-size: 28px;
    margin-right: 20px;
    padding: 5px;
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Office Hours Styling */
.office-hours {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    margin-bottom: 5px;
}

.office-hours p {
    margin: 3px 0;
    font-size: 14px;
}

.contact-info-item .fas.fa-clock {
    align-self: flex-start;
    margin-top: 5px;
}

/* Social Icons Styling */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.contact-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-social .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.contact-right::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-right::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 5px 0;
}

.contact-info-item i {
    margin-right: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
}

.contact-info-item p {
    color: white;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
}

.contact-social {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    transform: translateY(-3px);
}

.social-icon:hover i {
    color: #6c5ce7;
}

.social-icon i {
    font-size: 14px;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }
    
    .contact-left,
    .contact-right {
        flex: 100%;
    }
    
    .contact-right {
        padding: 30px;
    }
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background-color: var(--primary-color, #00a0d2);
    color: #fff;
    transform: translateY(-3px);
}

/* Form Styling */
.wpcf7-form label {
    font-weight: 500;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: var(--primary-color, #00a0d2);
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 160, 210, 0.1);
    outline: none;
}

.wpcf7-form textarea {
    height: 150px;
}

.wpcf7-form input[type="submit"] {
    background-color: var(--primary-color, #00a0d2);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: var(--primary-hover-color, #0088b9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-wrapper, 
    .contact-form-wrapper {
        flex: 1 1 100%;
    }
    
    .contact-info-box {
        margin-bottom: 30px;
    }
}
