:root {
    --brand-red: #e50000;
    --dark-gray: #6d6e70;
    --light-bg: #fdfdfd;
}

body { font-family: 'Poppins', sans-serif; margin: 0; background-color: var(--light-bg); }

.contact-section { padding: 60px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* Info Grid & Red Circle Icons */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; margin-bottom: 50px; }
.icon-box { 
    width: 60px; height: 60px; border: 1.5px solid var(--brand-red); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 15px; color: var(--brand-red); font-size: 22px; 
}
.info-item p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }
.info-item strong { display: block; color: #333; margin-bottom: 2px; }
.info-item a { color: var(--brand-red); text-decoration: none; }

/* Contact Wrapper */
.contact-wrapper { display: flex; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 2px; overflow: hidden; }

/* FORM SIDE - Moving "Contact Us" higher */
.contact-form-side { flex: 1.2; padding: 35px 50px 50px 50px; } /* Reduced top padding */
.contact-form-side h3 { font-size: 24px; margin: 0 0 25px 0; color: #333; font-weight: 600; }

.contact-image-side { flex: 1; }
.contact-image-side img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Form Fields */
.form-row { display: flex; gap: 25px; }
.form-group { margin-bottom: 20px; width: 100%; }
.form-group label { display: block; text-transform: uppercase; font-size: 11px; font-weight: 800; margin-bottom: 8px; color: #000; }
.form-group input, .form-group textarea { width: 100%; border: none; border-bottom: 1px solid #e0e0e0; padding: 10px 0; outline: none; font-size: 14px; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand-red); }

/* Left-to-Right Red Hover Button */
.submit-btn {
    position: relative; background: var(--dark-gray); color: white; 
    border: none; padding: 15px 35px; cursor: pointer; font-weight: bold; 
    text-transform: none; overflow: hidden; z-index: 1; display: inline-block;
}
.submit-btn span { position: relative; z-index: 2; }
.submit-btn::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--brand-red); transform: translateX(-101%); 
    transition: transform 0.4s ease; z-index: 1;
}
.submit-btn:hover::before { transform: translateX(0); }

/* Custom Modal Success Popup */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; z-index: 9999; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; padding: 40px; border-radius: 5px; text-align: center; max-width: 380px; width: 90%; transform: translateY(-20px); transition: 0.3s; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-icon { font-size: 60px; color: #2ecc71; margin-bottom: 15px; }
.modal-close-btn { margin-top: 25px; padding: 10px 25px; background: #333; color: white; border: none; cursor: pointer; border-radius: 3px; }

/* Responsive */
@media (max-width: 992px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { flex-direction: column; }
    .contact-image-side { height: 350px; order: -1; }
}
@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-form-side { padding: 30px 20px; }
}