/* Uniform Header CSS Override for All Pages */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    padding: 0 !important;
}

.header-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 80px !important;
}

.logo-image {
    height: 50px !important;
    width: auto !important;
    max-width: 250px !important;
}

/* Navigation */
.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 30px !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu > li {
    position: relative !important;
}

.nav-menu a {
    color: #334155 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: color 0.3s ease !important;
    padding: 10px 15px !important;
    display: block !important;
}

.nav-menu a:hover {
    color: #3B82F6 !important;
}

/* Dropdown Menu */
.dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    min-width: 200px !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    display: block !important;
}

.nav-menu li:hover .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown li {
    list-style: none !important;
}

.dropdown a {
    padding: 12px 20px !important;
    border-bottom: 1px solid #f1f1f1 !important;
    font-size: 14px !important;
    color: #334155 !important;
}

.dropdown a:last-child {
    border-bottom: none !important;
}

.dropdown a:hover {
    background: #f8f9fa !important;
    color: #3B82F6 !important;
}

/* CTA Button - Global Styling (Icon A + Style 3: Soft Neutral Pill) */
.cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 11px 22px !important;
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border: 2px solid transparent !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.cta-button:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.button-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
}

/* Footer Styles */
footer {
    background: #2d3748 !important;
    color: white !important;
    padding: 60px 0 20px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 50px !important;
    margin-bottom: 40px !important;
}

.footer-section h3 {
    color: #3B82F6 !important;
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Company Info Section */
.footer-logo {
    margin-bottom: 20px !important;
}

.footer-logo-image {
    height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
}

.company-tagline {
    color: #a0aec0 !important;
    font-style: italic !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
}

.social-links {
    display: flex !important;
    gap: 15px !important;
}

.social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #4a5568 !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.social-link:hover {
    background: #3B82F6 !important;
    transform: translateY(-2px) !important;
}

.social-link svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
}

/* Footer Links */
.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.footer-links a {
    color: #a0aec0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-links a:hover {
    color: #3B82F6 !important;
}

/* Contact Info */
.contact-details p {
    color: #a0aec0 !important;
    margin-bottom: 10px !important;
    line-height: 1.6 !important;
}


/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #4a5568 !important;
    padding-top: 25px !important;
}

.footer-bottom-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.footer-bottom p {
    color: #a0aec0 !important;
    margin: 0 !important;
}

.footer-bottom-links {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.footer-bottom-links a {
    color: #3B82F6 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-bottom-links a:hover {
    color: white !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* Hide original footer content that will be replaced */
footer.footer {
    display: none !important;
}
