/* Social Media Icons and Professional Branding */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 20px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.email {
    background-color: var(--primary-color, #007a5e);
}

.social-icon.phone {
    background-color: var(--secondary-color, #003366);
}

/* Header social integration */
.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

/* Footer social integration */
.footer-social {
    margin-top: 20px;
}

.footer-social h4 {
    color: var(--primary-color, #007a5e);
    margin-bottom: 15px;
    font-size: 18px;
}

/* Legal links */
.legal-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color, #007a5e);
}

/* Authority indicators */
.authority-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.authority-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #007a5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.authority-text {
    flex: 1;
}

.authority-text strong {
    display: block;
    color: var(--secondary-color, #003366);
    font-size: 18px;
}

.authority-text span {
    color: #666;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .header-social {
        display: none; /* Hide in mobile header to save space */
    }
    
    .authority-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .authority-item {
        min-width: auto;
    }
    
    .legal-links a {
        display: block;
        margin: 5px 0;
    }
}

/* Professional badges */
.professional-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color, #007a5e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 16px;
}

/* Contact integration with social */
.contact-with-social {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-method:hover {
    background-color: #f8f9fa;
}

.contact-method .social-icon {
    position: static;
    margin: 0;
}