/* Header Minimal V2 */
.header-minimal-v2 {
    position: relative;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-minimal-v2-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.header-minimal-v2-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-minimal-v2-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-size: 13px;
    font-weight: 500;
}

.header-minimal-v2-secure i {
    font-size: 16px;
    line-height: 1;
}

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

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

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

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

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

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

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

@media (max-width: 575px) {
    .header-minimal-v2-inner {
        padding: 12px 0;
    }

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