/* Modern Logo Styles */
.logo-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

/* Logo Icon */
.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.logo-container:hover .logo-icon {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: rotate(5deg);
}

.logo-icon::before {
    content: "🏠";
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Logo Text */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text .company-name {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #1E3A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.logo-text .company-state {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.logo-text .company-tagline {
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #059669;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.logo-text .company-tagline::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

/* Shimmer animation for company name */
@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon::before {
        font-size: 20px;
    }

    .logo-text .company-name {
        font-size: 16px;
    }

    .logo-text .company-state {
        font-size: 20px;
    }

    .logo-text .company-tagline {
        font-size: 8px;
    }
}

/* Dark background version */
.dark-bg .logo-text .company-name {
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
}

.dark-bg .logo-text .company-state {
    color: #FBBF24;
}

.dark-bg .logo-text .company-tagline {
    color: #D1D5DB;
}
