/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.top-bar {
    background-color: #000 !important;
    font-size: 0.875rem;
    color: #fff;
}

.top-bar-item {
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.top-bar-item i {
    color: #e74c3c;
}

.top-bar a {
    color: #fff;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #e74c3c;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #e74c3c;
    border-radius: 50%;
    margin-left: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    font-size: 0.875rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar-brand img {
    height: 60px;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #2c3e50 !important;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e74c3c !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 5px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 25px;
}

/* ==========================================================================
   CTA Box
   ========================================================================== */

.cta-box {
    padding: 12px 20px;
    border-left: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-box i {
    color: #e74c3c;
}

.cta-phone {
    color: #7A7A7A !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: #e74c3c !important;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .cta-box {
        border-left: none;
        border-top: 1px solid #ccc;
        margin-top: 15px;
        padding-top: 15px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        margin-left: 5px;
    }
    
    .social-icon i {
        font-size: 0.75rem;
    }
}
