/* Contact Page Styles */

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #ff9900;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
}

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.page-title {
    color: #ff9900;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.page-title i {
    margin-left: 10px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.contact-info-section,
.contact-form-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #ff9900;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-method i {
    font-size: 24px;
    color: #ff9900;
    margin-top: 5px;
}

.contact-method h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.social-links h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    display: block;
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.telegram { background: #0088cc; }
.social-icon.instagram { background: #E1306C; }
.social-icon.rubika { background: #e91e63; }
.social-icon.bale { background: #2196f3; }

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form .required {
    color: #dc3545;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Estedad, sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9900;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #ff9900;
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background: #ffb347;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 20px;
    }
}
