/* Header & Navigation */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-header {
    background: #000000;
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-info {
    display: flex;
    gap: 20px;
}

.top-header-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-info i {
    color: #1a8eb3;
}

.top-header-social {
    display: flex;
    gap: 15px;
}

.top-header-social a {
    transition: all 0.3s ease;
}

.top-header-social a:hover {
    color: #1a8eb3;
}

@media (max-width: 768px) {
    .top-header-flex {
        flex-direction: row !important;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .top-header-info {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .top-header-info span {
        font-size: 0.7rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    .top-header-info span i {
        margin-right: 4px;
        font-size: 0.8rem;
    }
    
    .top-header-social {
        display: none;
    }
}

.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

#header-placeholder.scrolled .header {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #000000;
    position: relative;
    padding: 5px 0;
}

.nav-list a:hover, .nav-list a.active {
    color: #1a8eb3;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a8eb3;
    transition: all 0.3s ease;
}

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.nav-cta {
    background: #1a8eb3 !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    margin-left: 10px;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
    z-index: 10001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000000;
    margin: 6px 0;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 9999;
        visibility: hidden;
        padding: 80px 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f4f7f9;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 1.05rem;
    }

    .nav-list a::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Footer Styles */
.footer {
    background: #1a8eb3;
    color: #ffffff;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}

.footer-info img {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.footer-info p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffffff;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffffff;
    opacity: 0.8;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.footer-contact i {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 4px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #1a8eb3;
    border-color: #1a8eb3;
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(0,0,0,0.1);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-info, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-info img {
        margin: 0 auto 25px auto;
    }
}
