/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* Quick Links Section */
.quick-links-section {
    background: #f7f9fb;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.quick-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #1F3C88;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: #1F3C88;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.quick-link-card svg {
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
}

.quick-link-card:hover svg {
    color: #1F3C88;
    transform: translateX(4px);
}

/* Main Footer */
.site-footer {
    background: #1a2b49;
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-about h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link.whatsapp-social {
    background: rgba(37, 211, 102, 0.2);
}

.social-link.whatsapp-social:hover {
    background: rgba(37, 211, 102, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   FLAG EMOJI STYLES
   ========================================================================== */

.flag-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.country-flag {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fb;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================================================
   INDUSTRIES PAGE STYLES
   ========================================================================== */

.page-hero {
    background: linear-gradient(135deg, #1F3C88 0%, #0f1f3d 100%);
    color: #fff;
    padding: 80px 0 60px;
}

.page-hero .breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.page-hero .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.industries-section {
    padding: 60px 0;
}

.industry-category {
    margin-bottom: 48px;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: #1F3C88;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1F3C88 0%, #2a4fa3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1F3C88;
    font-weight: 500;
    font-size: 0.875rem;
}

.industry-link svg {
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-link svg {
    transform: translateX(4px);
}

.industry-expertise {
    background: #f7f9fb;
    padding: 60px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.expertise-content > p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #1f2937;
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #00B04F;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==========================================================================
   HEADER TOP BAR STYLES
   ========================================================================== */

.header-top {
    background: #1F3C88;
    color: #fff;
    padding: 10px 0;
    font-size: 0.8125rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #fff;
}

.top-link svg {
    opacity: 0.7;
}

/* Main Header */
.site-header {
    background: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F3C88;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.primary-menu .menu-item a {
    display: block;
    padding: 10px 16px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
}

.primary-menu .menu-item a:hover {
    background: #f7f9fb;
    color: #1F3C88;
}

/* Header CTA */
.header-cta .btn {
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s ease;
}

/* ==========================================================================
   RESPONSIVE FOOTER & INDUSTRIES
   ========================================================================== */

@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-about {
        grid-column: span 3;
        margin-bottom: 24px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .header-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 4px;
    }
    
    .primary-menu .menu-item a {
        padding: 12px 16px;
    }
    
    .header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}
