/* Contact Redesign */
.contact-redesign {
    background: #fff;
    padding: 100px 0;
}

.contact-inner-card {
    background: #fff;
    border: 1px solid #eee; /* Subtle border */
    border-radius: 40px; /* Rounded corners */
    padding: 60px; /* Inner spacing */
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Soft shadow */
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.contact-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-new {
    margin-bottom: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-new input, 
.contact-form-new textarea {
    width: 100%;
    padding: 18px 30px; /* Slightly larger padding */
    background: #f3f3f3; /* Darker gray for visibility */
    border: 1px solid transparent; /* Placeholder for focus state */
    border-radius: 50px; /* Pill shape for inputs */
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form-new textarea {
    border-radius: 30px; /* Different radius for textarea */
    resize: none;
}

.contact-form-new input:focus, 
.contact-form-new textarea:focus {
    background: #fff;
    border-color: #4e54c8;
    box-shadow: 0 0 0 4px rgba(78, 84, 200, 0.1);
}

.form-group-full {
    margin-bottom: 40px;
}

.form-btn-center {
    text-align: center;
}

.btn-submit-new {
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 18px 60px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(78, 84, 200, 0.3);
}

/* Contact Info Bottom */
.contact-info-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 30px;
}

.info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item.text-only h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

.info-item.text-only p {
    color: #666;
    font-size: 0.9rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #4e54c8;
    color: #4e54c8;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.3s ease; */
    margin-bottom: 15px;
    background: rgba(78, 84, 200, 0.05);
}

.icon-circle i {
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive for Contact */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-bottom {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}
