/* ===== CONTACTS PAGE STYLES ===== */

.contacts-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.contacts-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.contacts-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contacts-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contacts-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.contacts-hero .stat-item {
    text-align: center;
}

.contacts-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f39c12;
    display: block;
    margin-bottom: 10px;
}

.contacts-hero .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Contact Main Section */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form .input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form .input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea.input {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.contact-submit:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-category {
    margin-bottom: 35px;
}

.contact-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: #3498db;
    font-size: 1.2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3498db;
}

.contact-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
}

/* Social Media */
.contact-social {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.contact-social .tooltip-container {
    transform: scale(0.8);
}

/* Map Section */
.contact-map {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacts-hero .hero-stats {
        gap: 40px;
    }
    
    .contacts-hero .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contacts-hero {
        padding: 60px 0 40px;
    }
    
    .contacts-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contacts-hero .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 30px 20px;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contacts-hero .hero-title {
        font-size: 2rem;
    }
    
    .contacts-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 20px 15px;
    }
    
    .contact-form-section .section-title,
    .contact-info-section .section-title,
    .contact-map .section-title {
        font-size: 1.5rem;
    }
}

/* Form Validation Styles */
.contact-form .input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form .input.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Loading State */
.contact-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-submit.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
