/**
 * Header V2
 */
.header-v2 {
    position: relative;
    z-index: 1000;
}

/* Top bar */
.header-v2-topbar {
    background: #1a2332;
    padding: 8px 0;
}

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

.header-v2-contact {
    display: flex;
    gap: 25px;
}

.header-v2-contact a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.header-v2-contact a:hover {
    color: #fff;
}

.header-v2-contact a i {
    color: #2695da;
}

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

.header-v2-social a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-v2-social a:hover {
    color: #2695da;
}

/* Main header */
.header-v2-main {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.header-v2-logo img {
    max-height: 50px;
    width: auto;
}

.header-v2-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-v2-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-v2-phone-icon {
    width: 45px;
    height: 45px;
    background: rgba(38, 149, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2695da;
    font-size: 18px;
}

.header-v2-phone-text {
    display: flex;
    flex-direction: column;
}

.header-v2-phone-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-v2-phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
}

.header-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2695da 0%, #1a5a8a 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(38, 149, 218, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .header-v2-topbar {
        display: none;
    }

    .header-v2-phone-text {
        display: none;
    }

    .header-v2-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .header-v2-btn span {
        display: none;
    }
}

@media (max-width: 575px) {
    .header-v2-main {
        padding: 10px 0;
    }

    .header-v2-logo img {
        max-height: 40px;
    }

    .header-v2-phone-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
