/* Contact Section */
.contact {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.contact-redesign .section-header {
    text-align: left;
    max-width: 900px;
}

.contact-redesign .section-header h2 {
    font-size: 3rem;
}

.contact-redesign .section-header p {
    max-width: 720px;
}

.contact-redesign-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-form-redesign .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form-redesign .form-group {
    margin-bottom: 24px;
}

.contact-form-redesign .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.contact-form-redesign input,
.contact-form-redesign textarea {
    width: 100%;
    border-radius: 24px;
    border: 1.8px solid #e1e5e9;
    padding: 14px 18px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form-redesign input:focus,
.contact-form-redesign textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form-redesign textarea {
    border-radius: 16px;
    resize: vertical;
}

.contact-form-redesign .input-group {
    display: flex;
    align-items: center;
    border: 1.8px solid #e1e5e9;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s ease;
}

.contact-form-redesign .input-group:focus-within {
    border-color: #ff6b35;
}

.contact-form-redesign .input-group input {
    border: none;
    border-radius: 0;
    color: #333;
}

.contact-form-redesign .input-group input::placeholder,
.contact-form-redesign input::placeholder,
.contact-form-redesign textarea::placeholder {
    color: #9aa3ad;
}

.contact-form-redesign .input-prefix {
    padding: 12px 14px;
    background: #f2f4f7;
    color: #333;
    font-weight: 600;
    border-right: 1px solid #e1e5e9;
}

.contact-form-redesign .input-group input {
    border: 0;
    outline: none;
    padding: 12px 16px;
    width: 100%;
}

.submit-btn.large {
    display: inline-block;
    margin-top: 10px;
    border-radius: 28px;
    padding: 16px 28px;
    font-size: 1.1rem;
    background: #ff7a3f;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.submit-btn.large:hover {
    background: #f06b32;
    transform: translateY(-2px);
}

/* Right Side Contact Card */
.contact-side-card {
    background: #1f6aa2;
    color: #fff;
    border-radius: 24px;
    padding: 32px 26px;
    box-shadow: 0 15px 35px rgba(31,106,162,0.25);
}

.contact-side-card h3 {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-side-card .info-block {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.contact-side-card .info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-side-card .info-text {
    flex: 1;
}

.contact-side-card .info-title {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.contact-side-card .info-value {
    font-weight: 600;
    line-height: 1.4;
}

.contact-side-card .divider {
    height: 2px;
    background: rgba(255,255,255,0.35);
    margin: 18px 0 12px;
}

.contact-side-card .connect-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.social-row {
    display: flex;
    gap: 10px;
}

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

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .contact-redesign-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-redesign .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-redesign .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-redesign .section-header {
        text-align: center;
    }
    
    .contact-redesign .section-header h2 {
        font-size: 2rem;
    }
}
