.contact-page {
    background-color: #f4f4f4;
    padding: 120px 5% 60px;
    min-height: 100vh;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.header-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}
.header-text h1 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    flex: 1; 
}
.header-text p { 
    flex: 1; 
    color: #666; 
    font-size: 0.95rem; 
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #008ac9;
    display: flex;
    flex-direction: column;
}
.card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
}
.separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 25px;
}
.form-row { 
    display: flex; 
    gap: 20px; 
}
.input-group { 
    margin-bottom: 20px; 
    display: flex; 
    flex-direction: column; 
}
.input-group label { 
    font-size: 0.7rem; 
    font-weight: 800; 
    margin-bottom: 8px; 
    color: #333; 
}
.input-group input,
.input-group textarea,
.input-group select {
    padding: 12px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100%;
}
.file-input-wrapper {
    position: relative;
    width: 100%;
    height: 45px;
    cursor: pointer;
}
.file-input-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.file-custom-design {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: #fafafa;
    border: 1px dashed #008ac9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #666;
    font-size: 0.85rem;
    transition: 0.3s;
}
.file-custom-design i {
    margin-right: 10px;
    color: #008ac9;
}
.file-input-wrapper:hover .file-custom-design {
    background: #f0faff;
    border-color: #005f8a;
}
.btn-send {
    background-color: #008ac9;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    align-self: flex-start;
}
.btn-send:hover { 
    background-color: #005f8a; 
}
.info-side {
    display: flex;
    height: 100%;
}
.right-card {
    width: 100%;
    flex: 1;
}
.info-wrapper {
    flex-grow: 1;
}
.info-section { 
    margin-bottom: 25px; 
}
.info-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.full-width { 
    grid-column: 1 / -1; 
    margin-bottom: 0; 
}
.hours-horizontal { 
    display: flex; 
    justify-content: space-between; 
}
.info-item strong, .hour-item strong {
    display: block;
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 3px;
    text-transform: uppercase;
}
.info-item p, .hour-item p { 
    font-size: 0.85rem; 
    color: #444; 
    font-weight: 600; 
}
.map-container {
    margin-top: auto;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 250px;
}
.info-item i, .hour-item i {
    margin-right: 8px;
    color: #008ac9;
    font-size: 0.9rem;
    width: 15px;
    text-align: center;
}
.contact-link { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}
.contact-link:hover { 
    color: #008ac9; 
    text-decoration: underline; 
}
.contact-social-flex {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}
.facebook-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.facebook-contact i {
    color: #1877F2 !important;
    font-size: 1.2rem !important;
}
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px); 
    align-items: center; 
    justify-content: center;
}
.modal-content {
    position: relative; 
    width: 90vw; 
    height: 85vh; 
    background-color: #fff;
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}
.file-return {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 8px 12px;
    background: #eef9ff;
    border: 1px solid #008ac9;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
}
.file-return.active { 
    display: flex; 
}
.remove-file {
    cursor: pointer;
    color: #e74c3c;
    font-size: 1.1rem;
    transition: 0.2s;
}
.remove-file:hover { 
    transform: scale(1.2); 
}
.file-name-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}
@keyframes zoomIn { 
    from { transform: scale(0.9); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}
.close-modal {
    position: absolute; 
    top: 15px; 
    right: 15px; 
    z-index: 10001; 
    background: #fff;
    color: #333; 
    padding: 8px 15px; 
    border-radius: 8px; 
    font-size: 0.9rem;
    font-weight: bold; 
    cursor: pointer; 
    border: none;
}
.close-modal:hover { 
    background: #008ac9; 
    color: #fff; 
}
@media (max-width: 900px) {
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
    .header-text { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    .form-row { 
        flex-direction: column; 
    }
    .hours-horizontal { 
        flex-direction: column; 
        gap: 15px; 
    }
}
@media (max-width: 600px) {
    .contact-social-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}