.contact-hero-section {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Contact Section New Styles */
.contact-section-new {
    padding: 60px 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}
    
.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a3e;
    margin: 0;
    display: inline-block;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: #D11E2D;
    margin: 8px auto 0;
    position: relative;
}
.title-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #D11E2D;
}

/* Content Wrapper */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 60px;
}

/* Form Styles */
.contact-form-left {
    width: 100%;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-new {
    width: 100%;
}

.form-input-new,
.form-textarea-new {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: #D11E2D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
    color: #999;
}

.form-textarea-new {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.btn-submit-new {
    display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
    
    /* FIX: Removed margin-right: 500px; and added flex alignment */
    align-self: flex-start; 
    cursor: pointer;
}

.btn-submit-new:hover {
    background: transparent;
    color: #D11E2D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

.btn-submit-new:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Info Box */
.contact-info-right {
    width: 100%;
}

.info-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 23px;
    height: 100%;
}

.info-box-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a1a3e;
}

.info-text {
    font-size: 15px;
    color: #252525;
    line-height: 1.6;
}

.info-text strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}

.info-text a {
    color: #252525;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #D11E2D;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a3e;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #D11E2D;
    border-color: #D11E2D;
    color: white;
    transform: translateY(-3px);
}

/* Map Container - Full Width */
.map-container-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-container-full iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Alert Messages */
.alert-success-new {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.alert-error-new {
    background: #f8d7da;
    color: #D11E2D;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.alert-error-new p {
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-right {
        /* max-width: 500px; */
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 26px;
    }
    
    .info-box {
        padding: 25px;
    }
    
    .map-container-full iframe {
        height: 400px;
    }
}