* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
.main-nav {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 1); 
    padding: 10px 5%;
    z-index: 2000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); 
    transition: background-color 0.3s ease;
    border-bottom: 5px solid #008ac9;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 50px;
}
.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2001;
}
.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
}
.logo span { 
    color: #008ac9; 
}
.brand-tag-sub {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 4px;
    text-align: center;
}
.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
}
.menu-right {
    display: flex;
    list-style: none;
    gap: 20px;
}
.menu-right a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
}
.menu-right a:hover { 
    color: #008ac9; 
}
.burger-menu {
    display: none; 
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
}
.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 3px;
}
.main-footer {
    display: block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 40px; 
    border-top: 5px solid #008ac9; 
    margin-top: 0;      
    position: relative;
    width: 100%;
    clear: both;
    z-index: 100;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
}
.footer-col h4 {
    color: #008ac9;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-description {
    margin-top: 15px;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-links, .footer-info {
    list-style: none;
}
.footer-links li, .footer-info li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ccc;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover { 
    color: #008ac9; 
}
.footer-info li a {
    text-decoration: none; 
    color: #ccc;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.footer-info li a:hover {
    color: #008ac9;
}
.footer-info li a:hover span {
    text-decoration: underline;
}
.footer-info i {
    color: #008ac9;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    text-decoration: none !important; 
    display: inline-block;
}
.footer-top {
    grid-column: 1 / -1; 
    margin-top: 15px;
    font-style: italic;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    width: 100%; 
}
.footer-bottom {
    grid-column: 1 / -1; 
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    width: 100%; 
}
.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo-container .logo {
    margin-bottom: 5px;
    display: block;
}
.footer-description p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #bbb;
}
.safari-bottom-bar { 
    display: none; 
}
@media (max-width: 768px) {
    .safari-bottom-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: max(15px, env(safe-area-inset-bottom)); 
        background-color: #1a1a1a; 
        z-index: 9999;
    }
    .header-center { 
        display: none; 
    }
    .nav-container {
        display: flex;
        height: 60px;
        gap: 15px;
    }
    .burger-menu { 
        display: flex; 
        order: -1; 
    }
    .menu-right {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 75vw;  
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95); 
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        gap: 35px;
        transition: 0.4s ease;
        z-index: 1999;
    }
    .menu-right.active { 
        left: 0; 
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main-footer {
        padding-bottom: 80px; 
    }
    .footer-bottom {
        grid-column: auto; 
    }
}