/* Contact Page Styles */
.contact-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.contact-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000048 0%, #F7B32F 100%);
}

.contact-section {
    padding: 2.5rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-section:last-child {
    border-bottom: none;
}

.contact-header {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000048;
    position: relative;
    text-align: center;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #000048 0%, #F7B32F 100%);
    border-radius: 2px;
}

/* Contact Info Table */
.contact-info-table {
    border: none;
    margin: 0;
}

.contact-info-table tr {
    border: none;
    transition: all 0.3s ease;
}

.contact-info-table tr:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.contact-info-table td {
    border: none;
    padding: 1rem 0.5rem;
    vertical-align: middle;
}

.contact-info-table td:first-child {
    width: 50px;
    text-align: center;
    color: #000048;
    font-size: 1.2rem;
}

.contact-info-table td:nth-child(2) {
    font-weight: 600;
    color: #495057;
    width: 120px;
}

.contact-info-table td:last-child {
    color: #6c757d;
}

.contact-info-table a {
    color: #000048;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-table a:hover {
    color: #F7B32F;
    text-decoration: underline;
}

/* Contact Form */
.form-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.x-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.x-lbl-sm {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.login-form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #495057;
}

.login-form-input:focus {
    outline: none;
    border-color: #000048;
    box-shadow: 0 0 0 3px rgba(0, 0, 72, 0.1);
    transform: translateY(-2px);
}

.login-form-input::placeholder {
    color: #adb5bd;
}

textarea.login-form-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.login-form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #000048 0%, #1a1a6b 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form-submit:hover {
    background: linear-gradient(135deg, #F7B32F 0%, #f0a800 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 179, 47, 0.3);
}

.login-form-submit:active {
    transform: translateY(-1px);
}

/* Social Media Section */
.contact-social {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: #0077b5;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-instagram:hover {
    background: #0077b5;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.3);
    text-decoration: none;
}

.contact-instagram i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Map Container */
.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        margin: 1rem 0;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .contact-header {
        font-size: 1.5rem;
    }
    
    .contact-info-table td {
        padding: 0.75rem 0.25rem;
        font-size: 0.9rem;
    }
    
    .contact-info-table td:first-child {
        width: 40px;
        font-size: 1rem;
    }
    
    .contact-info-table td:nth-child(2) {
        width: 80px;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .login-form-input {
        padding: 0.875rem 1rem;
    }
    
    .login-form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 1rem 0;
    }
    
    .contact-section {
        padding: 1rem;
    }
    
    .contact-header {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-table {
        font-size: 0.85rem;
    }
    
    .contact-info-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .x-group {
        margin-bottom: 1rem;
    }
}

/* Animation Effects */
.contact-container {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading States */
.login-form-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.login-form-submit:disabled:hover {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

/* Error States */
.text-danger {
    color: #dc3545 !important;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.login-form-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Success States */
.login-form-input.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

/* Breadcrumb Styling */
.page-breadcrumb {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.page-breadcrumb li {
    list-style: none;
    margin: 0 0.5rem;
}

.page-breadcrumb a {
    color: #000048;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #F7B32F;
}

.page-breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
} 